:root {
--navy: #17233D;
--navy-dark: #141c30;
--navy-mid: #1c2a45;
--gold: #991919;
--gold-text: #7d1414; --gold-m: rgba(153,25,25,0.10);
--grey: #2d2d2d;
--bg: #FAFAFA;
--ecru: #F5F5F2;
--cream: #F0F0EC;
--white: #FFFFFF;
--border: rgba(140,140,140,0.18);
--dark: #1A1A1A;
--success: #2a7a4a;
--error: #c0392b;
--fh: 'Outfit', system-ui, sans-serif;
--fb: 'Montserrat', system-ui, sans-serif;
--c-charcoal: #2e2d2c;
--c-steel: #3b4e72;
--c-ice: #dfecf7;
--ice: #dfecf7;
--ice-border: rgba(23,35,61,0.10);
--c-umber: #57473a;
--c-taupe: #afa093;
--c-sand: #efe9e1;
--navy-light: #18233e; --gradient-1: linear-gradient(135deg, #17233D, #1c2a45);
--gradient-2: linear-gradient(135deg, #991919, #b01e1e);
--gradient-3: linear-gradient(135deg, #141c30, #17233D);
--gradient-4: linear-gradient(135deg, #1c2a45, #991919);
--gradient-5: linear-gradient(135deg, #444444, #17233D);
--gradient-6: linear-gradient(135deg, #991919, #141c30);
} .sr-only {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
white-space: nowrap;
border: 0;
} *, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
font-family: var(--fb);
background: var(--bg);
color: var(--dark);
font-size: 16px;
line-height: 1.75;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
body::after {
content: '';
position: fixed;
inset: 0;
pointer-events: none;
z-index: 9999;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
opacity: 0.025;
}
button { cursor: pointer; border: none; background: none; font-family: var(--fb); }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5, h6 { font-family: var(--fh); } .container {
max-width: 1360px;
margin: 0 auto;
padding: 0 48px;
}
.wrap {
max-width: 1360px;
margin: 0 auto;
padding: 0 48px;
}
.wrap-sm {
max-width: 860px;
margin: 0 auto;
padding: 0 48px;
} .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 1024px) {
.blog-grid { grid-template-columns: repeat(2, 1fr); }
.steps-grid { grid-template-columns: repeat(2, 1fr); }
.benefits-grid { grid-template-columns: repeat(2, 1fr); }
.contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
.blog-grid, .steps-grid, .benefits-grid { grid-template-columns: 1fr; }
.wrap, .wrap-sm, .container { padding: 0 24px; }
} .btn-navy {
background: var(--navy);
color: var(--white);
font-size: 10px;
letter-spacing: .2em;
text-transform: uppercase;
font-weight: 700;
font-family: var(--fb);
padding: 0 28px;
height: 44px;
display: inline-flex;
align-items: center;
transition: background .25s, transform .2s, box-shadow .25s;
border: none;
cursor: pointer;
position: relative;
overflow: hidden;
}
.btn-navy::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.1),
transparent
);
transition: left 0.5s ease;
pointer-events: none;
}
.btn-navy:hover {
background: var(--navy-mid);
transform: translateY(-1px);
box-shadow: 0 4px 16px rgba(23,35,61,0.20);
}
.btn-navy:hover::after {
left: 100%;
}
.btn-gold {
background: var(--gold);
color: var(--white);
font-size: 10px;
letter-spacing: .2em;
text-transform: uppercase;
font-weight: 700;
font-family: var(--fb);
padding: 0 28px;
height: 44px;
display: inline-flex;
align-items: center;
transition: background .25s, transform .2s, box-shadow .25s;
border: none;
cursor: pointer;
position: relative;
overflow: hidden;
}
.btn-gold::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.18),
transparent
);
transition: left 0.5s ease;
pointer-events: none;
}
.btn-gold:hover {
background: #b01e1e;
transform: translateY(-1px);
box-shadow: 0 4px 16px rgba(153,25,25,0.3);
}
.btn-gold:hover::after {
left: 100%;
}
.btn-outline {
border: 1.5px solid var(--navy);
color: var(--navy);
font-size: 10px;
letter-spacing: .2em;
text-transform: uppercase;
font-weight: 700;
font-family: var(--fb);
padding: 0 28px;
height: 44px;
display: inline-flex;
align-items: center;
background: none;
transition: background .25s, color .25s, transform .2s, box-shadow .25s;
cursor: pointer;
}
.btn-outline:hover {
background: var(--navy);
color: var(--white);
transform: translateY(-1px);
box-shadow: 0 4px 16px rgba(23,35,61,0.15);
} .cta-sec .btn-outline {
border-color: rgba(255,255,255,0.6);
color: var(--white);
}
.cta-sec .btn-outline:hover {
background: rgba(255,255,255,0.12);
border-color: var(--white);
box-shadow: none;
}
.btn-ghost {
border: 1.5px solid rgba(255,255,255,0.45);
color: var(--white);
font-size: 10px;
letter-spacing: .2em;
text-transform: uppercase;
font-weight: 700;
font-family: var(--fb);
padding: 0 28px;
height: 40px;
display: inline-flex;
align-items: center;
background: none;
transition: background .2s;
cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-link {
font-size: 10px;
letter-spacing: .25em;
text-transform: uppercase;
font-weight: 700;
font-family: var(--fb);
color: var(--navy);
display: inline-flex;
align-items: center;
gap: 10px;
cursor: pointer;
background: none;
border: none;
border-bottom: 0.5px solid var(--gold);
padding: 0 0 6px 0;
transition: gap .2s, color .2s;
}
.btn-link:hover { gap: 14px; color: var(--gold); }
.btn-link::after { content: '\2192'; font-size: 14px; } .sec { padding: 72px 0; }
.sec h2 {
font-family: var(--fh);
font-size: clamp(28px, 3vw, 40px);
font-weight: 500;
color: var(--navy);
line-height: 1.25;
margin-bottom: 20px;
}
@media (max-width: 768px) {
.sec { padding: 64px 0; }
.sec h2 { font-size: clamp(24px, 6vw, 32px); }
}
.sec-navy {
padding: 80px 0;
background: var(--navy);
color: #fff;
position: relative;
}
.sec-navy::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent 15%, rgba(153,25,25,0.15) 50%, transparent 85%);
}
.sec-white,
.sec-ecru,
.sec-cream,
.sec-ice {
position: relative;
}
.sec-white { padding: 88px 0; background: var(--white); }
.sec-ecru { padding: 88px 0; background: #f8f5f0; }
.sec-cream {
padding: 88px 0;
background: #f6f2eb;
}
.sec-cream::after {
content: '';
position: absolute;
inset: 0;
background-image: radial-gradient(circle at 1px 1px, rgba(153,25,25,0.025) 1px, transparent 0);
background-size: 32px 32px;
pointer-events: none;
}
.sec-ice { padding: 88px 0; background: var(--ice); }
.sec-white::before,
.sec-ecru::before,
.sec-cream::before,
.sec-ice::before {
content: '';
position: absolute;
top: 0;
left: 48px;
right: 48px;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(23,35,61,0.08), transparent);
}
.sec-eyebrow {
font-size: 11px;
text-transform: uppercase;
letter-spacing: .25em;
color: var(--gold-text);
font-weight: 700;
font-family: var(--fb);
margin-bottom: 20px;
}
.sec-navy .sec-eyebrow { color: var(--gold); } .sec-lead {
font-size: 17px;
color: var(--grey);
max-width: 680px;
margin-bottom: 32px;
line-height: 1.75;
}
.sec-navy .sec-lead { color: rgba(255,255,255,0.7); } .nav {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 1000;
background: transparent;
transition: background .3s, transform .3s, box-shadow .3s, border-color .3s;
padding: 0;
border-bottom: 1px solid transparent;
}
.nav.scrolled {
background: rgba(255,255,255,0.985);
box-shadow: 0 12px 36px rgba(23,35,61,0.06);
backdrop-filter: blur(16px);
border-bottom-color: rgba(23,35,61,0.08);
}
.nav.hidden {
transform: translateY(-100%);
}
.nav-inner {
max-width: 1360px;
margin: 0 auto;
padding: 0 48px;
height: 78px;
display: flex;
align-items: center;
justify-content: space-between;
} main#main-content { padding-top: 78px; }
body.home main#main-content { padding-top: 0; }
.nav-logo {
font-family: var(--fh);
font-size: 22px;
font-weight: 400;
color: var(--navy);
display: flex;
align-items: center;
gap: 0;
}
.nav-logo .l-base { color: var(--navy); }
.nav-logo .l-v { color: var(--gold); }
.footer-brand .l-base { color: var(--navy); }
.footer-brand .l-v { color: var(--gold); }
.e8-logo-wrap {
font-family: var(--fh);
font-size: 22px;
letter-spacing: .20em;
font-weight: 400;
display: inline;
}
.e8-logo-wrap sup {
font-size: 9px;
opacity: 0.6;
font-weight: 400;
margin-left: 2px;
vertical-align: super;
}
.nav-links {
display: flex;
list-style: none;
gap: 18px;
align-items: center;
}
.nav-item {
position: relative;
}
.nav-link {
font-size: 11px;
letter-spacing: .18em;
text-transform: uppercase;
font-weight: 600;
font-family: var(--fb);
color: var(--navy);
padding: 10px 2px;
display: flex;
align-items: center;
gap: 6px;
transition: color .2s, opacity .2s;
background: none;
border: none;
cursor: pointer;
position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link.active { font-weight: 700; }
.nav-link::after {
content: '';
position: absolute;
left: 0;
right: 0;
bottom: -6px;
height: 1px;
background: linear-gradient(90deg, transparent, var(--gold), transparent);
opacity: 0;
transform: scaleX(0.75);
transition: opacity .2s ease, transform .2s ease;
}
.nav-link:hover::after,
.nav-link.active::after,
.nav-item-has-children:hover > .nav-link::after,
.nav-item-has-children:focus-within > .nav-link::after {
opacity: 1;
transform: scaleX(1);
} .nav-item-has-children.is-open .nav-megamenu {
opacity: 1;
visibility: visible;
transform: translateY(0);
pointer-events: auto;
} .nav-item-has-children:hover .nav-submenu,
.nav-item-has-children:focus-within .nav-submenu {
opacity: 1;
visibility: visible;
transform: translateY(0);
pointer-events: auto;
} .nav-megamenu {
position: absolute;
top: 100%;
left: -28px;
width: 820px;
background: rgba(255,255,255,0.99);
border: 1px solid rgba(23,35,61,0.08);
box-shadow: 0 24px 60px rgba(23,35,61,0.10);
backdrop-filter: blur(12px);
opacity: 0;
visibility: hidden;
transform: translateY(8px);
transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
pointer-events: none;
display: grid;
grid-template-columns: 300px 1fr;
} .nav-mega-areas {
background: linear-gradient(180deg, #fcfaf7 0%, #f6f1ea 100%);
border-right: 1px solid rgba(23,35,61,0.08);
padding: 12px 0;
display: flex;
flex-direction: column;
}
.nav-mega-area-item {
display: flex;
align-items: center;
gap: 12px;
padding: 14px 20px;
border: none;
background: transparent;
cursor: pointer;
text-align: left;
transition: background .15s;
font-family: var(--fb);
font-size: 13px;
color: var(--navy);
border-left: 3px solid transparent;
}
.nav-mega-area-item:hover {
background: rgba(23,35,61,0.04);
}
.nav-mega-area-item.active {
background: rgba(153,25,25,0.04);
border-left-color: var(--gold);
font-weight: 600;
}
.nav-dd-n {
display: inline-flex;
align-items: center;
justify-content: center;
width: 26px;
height: 26px;
border-radius: 50%;
background: var(--navy);
color: #fff;
font-size: 11px;
font-weight: 700;
flex-shrink: 0;
}
.nav-mega-area-item.active .nav-dd-n {
background: var(--gold);
}
.nav-dd-label {
line-height: 1.3;
}
.nav-mega-all-wrap {
margin-top: auto;
padding: 16px 20px 8px;
border-top: 1px solid rgba(23,35,61,0.08);
}
.nav-mega-all-btn {
font-size: 12px;
font-weight: 700;
letter-spacing: .08em;
text-transform: uppercase;
color: var(--gold-text);
text-decoration: none;
}
.nav-mega-all-btn:hover {
color: var(--navy);
}
.nav-mega-panels {
padding: 20px 24px;
}
.nav-mega-panel {
display: none;
}
.nav-mega-panel.active {
display: block;
}
.nav-mega-panel-label {
font-size: 11px;
letter-spacing: .15em;
text-transform: uppercase;
color: var(--grey);
font-weight: 600;
margin-bottom: 16px;
padding-bottom: 12px;
border-bottom: 1px solid rgba(23,35,61,0.06);
}
.nav-mega-svc-item {
display: grid;
grid-template-columns: 36px 1fr;
gap: 12px;
padding: 12px 8px;
border-bottom: 1px solid rgba(23,35,61,0.05);
text-decoration: none;
color: var(--navy);
transition: background .15s, transform .15s;
}
.nav-mega-svc-item:hover {
background: rgba(23,35,61,0.03);
transform: translateX(2px);
}
.nav-mega-svc-code {
font-size: 11px;
font-weight: 700;
color: var(--gold-text);
padding-top: 3px;
}
.nav-mega-svc-title {
font-family: var(--fh);
font-size: 14px;
font-weight: 600;
color: var(--navy);
line-height: 1.3;
}
.nav-mega-svc-sub {
font-size: 12px;
color: var(--grey);
line-height: 1.5;
margin-top: 2px;
}
.nav-mega-more {
display: block;
padding: 12px 8px;
font-size: 12px;
font-weight: 600;
color: var(--gold-text);
text-decoration: none;
}
.nav-mega-more:hover {
color: var(--navy);
} .nav-submenu {
position: absolute;
top: calc(100% + 18px);
left: 0;
min-width: 760px;
background: rgba(255,255,255,0.99);
border: 1px solid rgba(23,35,61,0.08);
box-shadow: 0 24px 60px rgba(23,35,61,0.10);
padding: 18px;
opacity: 0;
visibility: hidden;
transform: translateY(8px);
transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
pointer-events: none;
backdrop-filter: blur(12px);
}
.nav-submenu::before {
content: '';
position: absolute;
top: -8px;
left: 32px;
width: 14px;
height: 14px;
background: rgba(255,255,255,0.98);
border-left: 1px solid rgba(23,35,61,0.08);
border-top: 1px solid rgba(23,35,61,0.08);
transform: rotate(45deg);
}
.nav-submenu--offer {
left: -28px;
}
.nav-submenu-panel {
display: grid;
grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
gap: 18px;
}
.nav-submenu-intro {
background: linear-gradient(180deg, #fcfaf7 0%, #f6f1ea 100%);
border-right: 1px solid rgba(23,35,61,0.08);
padding: 18px 18px 18px 14px;
}
.nav-submenu-label {
display: inline-block;
font-size: 10px;
letter-spacing: .18em;
text-transform: uppercase;
font-weight: 700;
color: var(--gold-text);
margin-bottom: 14px;
}
.nav-submenu-intro h3 {
font-size: 23px;
line-height: 1.2;
color: var(--navy);
margin-bottom: 14px;
}
.nav-submenu-intro p {
font-size: 13px;
line-height: 1.7;
color: var(--grey);
}
.nav-submenu-feature {
display: block;
margin-top: 24px;
padding-top: 18px;
border-top: 1px solid rgba(23,35,61,0.08);
}
.nav-submenu-feature strong {
display: block;
font-size: 14px;
font-family: var(--fh);
font-weight: 600;
color: var(--navy);
}
.nav-submenu-feature small {
display: block;
margin-top: 4px;
font-size: 12px;
line-height: 1.6;
color: var(--grey);
}
.nav-submenu-columns {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 6px;
align-content: start;
}
.nav-submenu-link {
position: relative;
z-index: 1;
display: grid;
grid-template-columns: 34px 1fr;
gap: 14px;
align-items: start;
padding: 16px 16px;
color: var(--navy);
border-radius: 0;
transition: background .2s ease, transform .2s ease, border-color .2s ease;
border-bottom: 1px solid rgba(23,35,61,0.06);
}
.nav-submenu-link:hover,
.nav-submenu-link:focus-visible {
background: rgba(23,35,61,0.035);
transform: translateX(2px);
}
.nav-submenu-kicker {
font-size: 11px;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--gold-text);
font-weight: 800;
padding-top: 2px;
}
.nav-submenu-link strong {
display: block;
font-family: var(--fh);
font-size: 15px;
font-weight: 600;
line-height: 1.35;
}
.nav-submenu-link small {
display: block;
margin-top: 4px;
font-size: 12px;
color: var(--grey);
line-height: 1.55;
}
.nav-submenu-link-all {
margin-top: 4px;
border-top: 1px solid var(--border);
padding-top: 18px;
}
.nav-cta {
display: flex;
align-items: center;
gap: 16px;
}
.nav-hamburger {
display: none;
flex-direction: column;
gap: 5px;
padding: 8px;
background: none;
border: none;
cursor: pointer;
}
.nav-hamburger span {
display: block;
width: 24px;
height: 2px;
background: var(--navy);
transition: transform .3s, opacity .3s;
}
.nav-dd-wrap { position: relative; } .mobile-menu {
position: fixed;
top: 78px;
left: 0;
right: 0;
background: rgba(255,255,255,0.99);
padding: 24px 28px 32px;
transform: translateY(-100%);
opacity: 0;
visibility: hidden;
transition: transform .3s, opacity .3s, visibility .3s;
z-index: 999;
box-shadow: 0 16px 44px rgba(23,35,61,0.10);
display: flex;
flex-direction: column;
gap: 0;
}
.mobile-menu[hidden] {
display: none !important;
}
.mobile-menu.open {
transform: translateY(0);
opacity: 1;
visibility: visible;
}
.mobile-menu-link {
font-size: 15px;
font-weight: 600;
color: var(--navy);
padding: 16px 0;
text-align: left;
border: none;
background: none;
cursor: pointer;
font-family: var(--fb);
display: flex;
align-items: center;
justify-content: space-between;
gap: 8px;
width: 100%;
transition: color .2s;
}
.mobile-menu-link:hover { color: var(--gold); }
.mobile-menu-divider {
height: 1px;
background: var(--border);
margin: 4px 0;
}
.mobile-submenu-toggle svg {
transition: transform .3s;
flex-shrink: 0;
}
.mobile-oferta-items {
display: flex;
flex-direction: column;
padding: 6px 0 10px 18px;
} .mobile-oferta-items[hidden] {
display: none;
}
.mobile-oferta-items .mobile-menu-link {
font-size: 14px;
padding: 10px 0;
color: var(--navy-mid);
justify-content: flex-start;
}
.mobile-oferta-items .mobile-menu-link:hover {
color: var(--gold);
}
@media (max-width: 1024px) {
.nav-links, .nav-cta { display: none; }
.nav-hamburger { display: flex; }
.mobile-menu { display: flex; }
}
@media (max-width: 1240px) {
.nav-submenu {
min-width: 680px;
}
.nav-submenu-panel {
grid-template-columns: minmax(200px, 0.72fr) minmax(0, 1.28fr);
}
} .hero {
min-height: 100vh;
display: grid;
grid-template-columns: 2fr 1fr;
background: var(--ecru);
color: var(--navy);
position: relative;
overflow: hidden;
}
.hero::before {
content: '';
position: absolute;
top: 0; right: 0; bottom: 0; left: 0;
background-image: radial-gradient(circle at 1px 1px, rgba(153,25,25,0.03) 1px, transparent 0);
background-size: 40px 40px;
pointer-events: none;
z-index: 0;
}
.hero-left {
display: flex;
align-items: center;
padding: 120px 48px 80px 48px;
position: relative;
z-index: 1;
}
@media (max-width: 768px) {
.hero {
grid-template-columns: 1fr;
}
.hero-right {
display: none;
}
.hero-left {
padding: 100px 24px 60px;
}
.hero-h1 {
font-size: clamp(26px, 7vw, 36px);
}
.hero-lead {
font-size: 15px;
}
.hero-actions {
flex-direction: column;
gap: 12px;
}
.hero-actions .btn-gold,
.hero-actions .btn-navy,
.hero-actions .btn-outline {
width: 100%;
justify-content: center;
}
}
.hero-content { max-width: 720px; margin: 0 auto; }
.hero-eyebrow {
font-size: 11px;
text-transform: uppercase;
letter-spacing: .25em;
color: var(--gold-text);
font-weight: 700;
font-family: var(--fb);
margin-bottom: 28px;
}
.hero-h1 {
font-family: var(--fh);
font-size: clamp(28px, 3vw, 40px);
font-weight: 500;
color: var(--navy);
line-height: 1.25;
margin-bottom: 28px;
}
.hero-lead {
font-size: 17px;
color: var(--grey);
line-height: 1.85;
margin-bottom: 40px;
max-width: 520px;
}
.hero-actions {
display: flex;
gap: 16px;
flex-wrap: wrap;
margin-bottom: 24px;
}
.hero-note {
font-size: 13px;
color: var(--grey);
opacity: 0.7;
}
.hero-right {
position: relative;
background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 50%, var(--navy-mid) 100%);
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
}
.hero-image {
position: relative;
width: 100%;
max-width: 340px;
aspect-ratio: 3/4;
overflow: hidden;
border-radius: 6px;
box-shadow: 0 16px 48px rgba(23,35,61,0.18);
}
.hero-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-right:hover .hero-image img {
transform: scale(1.04);
}
.hero-image-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
padding: 20px 22px;
background: linear-gradient(to top, rgba(23,35,61,0.78) 0%, transparent 100%);
}
.hero-image-name {
color: #fff;
font-family: var(--fh);
font-size: 15px;
font-weight: 500;
}
.hero-image-role {
color: rgba(255,255,255,0.72);
font-size: 11px;
letter-spacing: .08em;
text-transform: uppercase;
margin-top: 2px;
}
.ghost-v {
position: absolute;
right: -20px;
top: 50%;
transform: translateY(-50%);
font-family: var(--fh);
font-size: 400px;
font-weight: 900;
color: rgba(255,255,255,0.03);
pointer-events: none;
user-select: none;
line-height: 1;
}
@media (max-width: 1024px) {
.hero {
grid-template-columns: 1fr;
min-height: auto;
}
.hero-right { display: none; }
.hero-left { padding: 100px 24px 80px; }
} .motto-sec {
background: var(--white);
padding: 80px 0;
text-align: center;
}
.motto-main {
font-family: var(--fh);
font-size: clamp(20px, 3vw, 28px);
font-weight: 500;
color: var(--navy);
line-height: 1.5;
margin-bottom: 20px;
}
.motto-line {
font-family: var(--fh);
font-size: clamp(16px, 2vw, 20px);
color: var(--grey);
line-height: 1.6;
margin-bottom: 12px;
opacity: 0.6;
}
.motto-line.active { opacity: 1; color: var(--navy); }
.tw-cursor {
display: inline-block;
width: 2px;
height: 1.2em;
background: var(--gold);
margin-left: 4px;
vertical-align: text-bottom;
animation: blink .8s infinite;
}
@keyframes blink { 0%, 50% { opacity: 1; } 51%, 100% { opacity: 0; } } .stats-strip {
display: grid;
grid-template-columns: repeat(3, 1fr);
background: var(--navy);
padding: 56px 0;
}
.stat-col {
padding: 44px 32px;
text-align: center;
border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-col:last-child { border-right: none; }
.stat-col:hover { background: rgba(255,255,255,0.05); box-shadow: inset 0 -3px 0 var(--gold); }
.stat-n {
display: block;
font-family: var(--fh);
font-size: 52px;
font-weight: 700;
color: var(--white);
margin-bottom: 10px;
}
.stat-l {
display: block;
font-size: 13px;
color: rgba(255,255,255,0.75);
letter-spacing: .08em;
line-height: 1.5;
text-transform: uppercase;
font-weight: 600;
font-family: var(--fb);
margin-top: 4px;
}
@media (max-width: 768px) {
.stats-strip { grid-template-columns: repeat(2, 1fr); }
.stat-col:nth-child(2) { border-right: none; }
.stat-col { border-bottom: 1px solid rgba(255,255,255,0.08); }
} .facts-strip {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
background: var(--navy);
border-radius: 10px 10px 0 0;
overflow: hidden;
}
.fact-col {
padding: 40px 32px;
text-align: center;
border-right: 1px solid rgba(255,255,255,0.08);
}
.fact-col:last-child { border-right: none; }
.fact-value {
font-family: var(--fh);
font-size: 18px;
font-weight: 700;
color: var(--white);
margin-bottom: 6px;
}
.fact-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: .12em;
color: rgba(255,255,255,0.5);
margin-bottom: 4px;
}
@media (max-width: 768px) {
.facts-strip { grid-template-columns: 1fr; }
.fact-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
.fact-col:last-child { border-bottom: none; }
} .pricing-tiers {
margin-top: 32px;
}
.pricing-tier-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 24px;
background: var(--white);
border: 1px solid var(--border);
border-radius: 4px;
margin-bottom: 12px;
}
.pricing-tier-label {
font-size: 15px;
color: var(--navy);
font-weight: 500;
}
.pricing-tier-price {
font-family: var(--fh);
font-size: 16px;
font-weight: 700;
color: var(--gold);
white-space: nowrap;
}
@media (max-width: 640px) {
.pricing-tier-row {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
} .onas-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
.section-rule {
width: 48px;
height: 3px;
background: var(--gold);
margin-bottom: 24px;
}
.onas-heading {
font-family: var(--fh);
font-size: clamp(28px, 3vw, 40px);
font-weight: 500;
color: var(--navy);
line-height: 1.25;
margin-bottom: 24px;
}
.onas-text {
font-size: 16px;
color: var(--grey);
line-height: 1.85;
}
.onas-features {
display: flex;
flex-direction: column;
gap: 28px;
}
.onas-feature {
display: flex;
gap: 20px;
}
.onas-bullet {
width: 8px;
height: 8px;
background: var(--gold);
border-radius: 50%;
margin-top: 8px;
flex-shrink: 0;
}
.onas-feature-title {
font-family: var(--fh);
font-size: 16px;
font-weight: 600;
color: var(--navy);
margin-bottom: 6px;
}
.onas-feature-text {
font-size: 14px;
color: var(--grey);
line-height: 1.7;
}
@media (max-width: 1024px) {
.onas-grid { grid-template-columns: 1fr; gap: 48px; }
} .pain-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}
.pain-card {
background: var(--c-steel);
padding: 32px 28px;
border-radius: 6px;
transition: transform .25s, box-shadow .25s, background .25s;
}
.pain-card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 48px rgba(23,35,61,0.22);
background: var(--navy);
}
.pain-card h3 {
font-family: var(--fh);
font-size: 16px;
font-weight: 500;
color: #fff;
line-height: 1.4;
margin-bottom: 10px;
}
.pain-card p {
font-size: 14px;
color: rgba(255,255,255,0.82);
line-height: 1.75;
}
@media (max-width: 1024px) {
.pain-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
.pain-grid { grid-template-columns: 1fr; }
} .firm-types-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-top: 48px;
}
.firm-type-card {
background: var(--white);
padding: 32px;
border-radius: 4px;
border: 1px solid var(--border);
transition: box-shadow .25s;
}
.firm-type-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.firm-type-label {
font-size: 10px;
text-transform: uppercase;
letter-spacing: .2em;
color: var(--gold-text);
font-weight: 700;
font-family: var(--fb);
margin-bottom: 12px;
}
.firm-type-title {
font-family: var(--fh);
font-size: 20px;
font-weight: 600;
color: var(--navy);
margin-bottom: 12px;
line-height: 1.3;
}
.firm-type-desc {
font-size: 14px;
color: var(--grey);
line-height: 1.75;
}
.industry-tags {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 48px;
}
.industry-tag {
background: var(--white);
border: 1px solid var(--border);
padding: 8px 16px;
font-size: 12px;
font-weight: 500;
color: var(--grey);
border-radius: 2px;
}
@media (max-width: 1024px) {
.firm-types-grid { grid-template-columns: 1fr; }
} .not-for-list, .for-list {
list-style: none;
margin-top: 32px;
}
.not-for-list li, .for-list li {
display: flex;
gap: 16px;
margin-bottom: 20px;
font-size: 16px;
color: var(--grey);
line-height: 1.7;
}
.not-for-list li::before {
content: '\2715';
color: var(--gold-text);
font-weight: 700;
flex-shrink: 0;
}
.for-list li::before {
content: '\2713';
color: var(--success);
font-weight: 700;
flex-shrink: 0;
} .how-we-work-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
margin-top: 48px;
}
@media (max-width: 768px) {
.how-we-work-grid > .sidebar-list {
margin-top: 0;
}
.step-item {
grid-template-columns: 48px 1fr;
gap: 16px;
padding: 20px;
text-align: left;
}
.step-item:not(:last-child)::after {
left: 36px;
bottom: -10px;
height: 10px;
}
.step-content h4 { font-size: 16px; text-align: left; }
.step-content p { text-align: left; }
}
.steps-list {
display: flex;
flex-direction: column;
gap: 0;
}
.step-item {
display: grid;
grid-template-columns: 56px 1fr;
gap: 24px;
padding: 24px;
border: 1px solid var(--border);
border-radius: 12px;
position: relative;
text-align: center;
}
.step-item:not(:last-child)::after {
content: '';
position: absolute;
left: 42px;
bottom: -12px;
width: 1px;
height: 12px;
background: var(--border);
}
.step-n {
width: 48px;
height: 48px;
background: var(--navy);
color: var(--white);
font-family: var(--fh);
font-size: 18px;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
flex-shrink: 0;
}
.step-content h4 {
font-family: var(--fh);
font-size: 18px;
font-weight: 600;
color: var(--navy);
margin-bottom: 8px;
text-align: center;
}
.step-content p {
font-size: 14px;
color: var(--grey);
line-height: 1.7;
text-align: center;
}
.sidebar-list {
background: var(--ecru);
padding: 40px;
border-radius: 4px;
align-self: start;
}
.sidebar-list h4 {
font-family: var(--fh);
font-size: 14px;
text-transform: uppercase;
letter-spacing: .15em;
color: var(--gold-text);
font-weight: 700;
margin-bottom: 20px;
}
.sidebar-list ul {
list-style: none;
}
.sidebar-list li {
font-size: 15px;
color: var(--navy);
margin-bottom: 16px;
padding-left: 20px;
position: relative;
line-height: 1.6;
}
.sidebar-list li::before {
content: '';
position: absolute;
left: 0;
top: 10px;
width: 8px;
height: 2px;
background: var(--gold);
}
@media (max-width: 1024px) {
.how-we-work-grid { grid-template-columns: 1fr; }
} .services-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-top: 48px;
}
.service-card {
background: var(--white);
border: 1px solid var(--border);
padding: 40px 32px;
border-radius: 4px;
transition: box-shadow .25s, transform .25s;
display: flex;
flex-direction: column;
text-decoration: none;
color: inherit;
cursor: pointer;
}
.service-card:hover {
box-shadow: 0 12px 32px rgba(0,0,0,0.08);
transform: translateY(-4px);
}
.service-card.featured {
border-color: rgba(23,35,61,0.2);
}
.service-card.featured:hover {
border-color: var(--navy);
box-shadow: 0 12px 32px rgba(23,35,61,0.12);
}
.service-type {
font-size: 10px;
text-transform: uppercase;
letter-spacing: .2em;
color: var(--gold-text);
font-weight: 700;
font-family: var(--fb);
margin-bottom: 12px;
}
.service-name {
font-family: var(--fh);
font-size: 22px;
font-weight: 600;
color: var(--navy);
margin-bottom: 16px;
line-height: 1.3;
}
.service-desc {
font-size: 14px;
color: var(--grey);
line-height: 1.8;
flex-grow: 1;
margin-bottom: 24px;
}
.service-price {
font-family: var(--fh);
font-size: 20px;
font-weight: 700;
color: var(--navy);
margin-bottom: 4px;
}
.service-note {
font-size: 12px;
color: var(--grey);
margin-bottom: 24px;
}
.service-link {
font-size: 10px;
letter-spacing: .2em;
text-transform: uppercase;
font-weight: 700;
font-family: var(--fb);
color: var(--navy);
display: inline-flex;
align-items: center;
gap: 8px;
border: 1.5px solid var(--navy);
padding: 10px 18px;
border-radius: 2px;
transition: background .2s, color .2s, border-color .2s;
width: fit-content;
}
.service-link:hover {
background: var(--navy);
color: var(--white);
border-color: var(--navy);
}
.service-link::after { content: '\2192'; font-size: 13px; }
@media (max-width: 1024px) {
.services-grid { grid-template-columns: 1fr; }
} .cases-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 28px;
margin-top: 48px;
} .cases-carousel {
position: relative;
margin-top: 48px;
}
.cases-viewport {
overflow: hidden;
}
.cases-track {
display: flex;
transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cases-slide {
width: 100%;
min-width: 0;
display: grid;
grid-template-columns: 1fr 1fr;
gap: 28px;
flex: 0 0 100%;
}
.cases-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
z-index: 2;
width: 48px;
height: 48px;
border-radius: 50%;
border: 2px solid rgba(23,35,61,0.15);
background: rgba(255,255,255,0.9);
color: var(--navy);
font-size: 20px;
cursor: pointer;
transition: background .25s, border-color .25s;
display: flex;
align-items: center;
justify-content: center;
}
.cases-arrow:hover {
background: var(--navy);
color: #fff;
border-color: var(--navy);
}
.cases-arrow-left { left: -24px; }
.cases-arrow-right { right: -24px; }
@media (max-width: 768px) {
.cases-slide { grid-template-columns: 1fr; }
.cases-arrow-left { left: 4px; }
.cases-arrow-right { right: 4px; }
}
.case-card {
background: var(--white);
padding: 36px 40px;
border-radius: 10px;
border-left: 4px solid var(--gold);
box-shadow: 0 2px 16px rgba(23,35,61,0.07);
display: flex;
flex-direction: column;
}
.case-label {
font-size: 11px;
text-transform: uppercase;
letter-spacing: .15em;
color: var(--gold-text);
font-weight: 700;
font-family: var(--fb);
margin-bottom: 10px;
}
.case-title {
font-family: var(--fh);
font-size: 21px;
font-weight: 700;
color: var(--navy);
margin-bottom: 14px;
line-height: 1.3;
}
.case-badge {
display: inline-block;
background: var(--ecru);
color: var(--navy);
font-size: 11px;
letter-spacing: .08em;
text-transform: uppercase;
font-weight: 700;
font-family: var(--fb);
padding: 5px 12px;
border-radius: 4px;
margin-bottom: 18px;
border: 1px solid var(--border);
width: fit-content;
}
.case-result {
font-size: 15px;
color: var(--navy);
opacity: 0.75;
line-height: 1.75;
margin-top: auto;
}
@media (max-width: 768px) {
.cases-grid { grid-template-columns: 1fr; }
} .page-hero-case {
background: var(--navy);
padding: 88px 0 80px;
border-bottom: none;
}
.page-hero.page-hero-case h1 {
font-family: var(--fh);
font-size: clamp(32px, 3.8vw, 52px);
font-weight: 600;
color: var(--white);
line-height: 1.2;
margin-bottom: 20px;
letter-spacing: -0.02em;
}
.page-hero.page-hero-case p {
font-size: 18px;
color: rgba(255,255,255,0.65);
max-width: 560px;
line-height: 1.75;
margin: 0 0 32px;
}
.page-hero-eyebrow {
font-family: var(--fb);
font-size: 11px;
font-weight: 700;
letter-spacing: .2em;
text-transform: uppercase;
color: rgba(255,255,255,0.55);
margin-bottom: 24px;
}
.case-nda-box {
display: inline-block;
max-width: 600px;
text-align: left;
padding: 20px 28px;
border: 1px solid rgba(255,255,255,0.15);
border-radius: 4px;
}
.case-nda-box p {
font-size: 14px;
color: rgba(255,255,255,0.55);
line-height: 1.7;
margin: 0;
} .cs-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 24px;
}
.cs-item {
padding: 40px 44px;
border: 1px solid var(--border);
border-radius: 8px;
background: var(--white);
transition: border-color .2s, box-shadow .2s;
}
.cs-item:hover {
border-color: rgba(23,35,61,0.18);
box-shadow: 0 4px 24px rgba(23,35,61,0.06);
}
.cs-label {
font-family: var(--fb);
font-size: 11px;
font-weight: 700;
letter-spacing: .15em;
text-transform: uppercase;
color: var(--gold-text);
margin-bottom: 10px;
}
.cs-title {
font-family: var(--fh);
font-size: clamp(20px, 2.2vw, 26px);
font-weight: 700;
color: var(--navy);
margin-bottom: 28px;
line-height: 1.3;
}
.cs-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 32px;
margin-bottom: 28px;
}
.cs-grid > div > strong {
display: block;
font-family: var(--fh);
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .1em;
color: var(--navy);
margin-bottom: 10px;
}
.cs-grid > div > p {
font-size: 15px;
color: var(--grey);
line-height: 1.75;
}
.cs-result {
display: inline-flex;
align-items: center;
gap: 10px;
font-family: var(--fb);
font-size: 12px;
font-weight: 700;
letter-spacing: .06em;
text-transform: uppercase;
color: var(--navy);
padding: 10px 16px 10px 14px;
background: var(--ecru);
border-left: 3px solid var(--gold);
border-radius: 0 3px 3px 0;
line-height: 1.4;
}
.cs-result::before {
content: '→';
color: var(--gold);
font-size: 14px;
flex-shrink: 0;
} .clients-strip {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 0;
margin-top: 28px;
}
.client-name {
font-family: var(--fh);
font-size: 15px;
font-weight: 600;
color: var(--navy);
letter-spacing: .04em;
padding: 0 28px;
}
.client-sep {
color: var(--border);
font-size: 14px;
font-weight: 300;
} .sec-clients { padding: 64px 0; }
.wrap-center { text-align: center; }
@media (max-width: 1024px) {
.cs-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
.page-hero-case { padding: 64px 0 56px; }
.page-hero.page-hero-case h1 { font-size: clamp(26px, 7vw, 36px); }
.cs-grid { grid-template-columns: 1fr; gap: 24px; }
.cs-item { padding: 28px 24px; }
.client-name { padding: 0 14px; }
.client-sep { display: none; }
.clients-strip { gap: 12px; }
} .jak-pracujemy-tabs {
display: flex;
gap: 0;
margin-bottom: 32px;
border-bottom: 2px solid var(--border);
}
.jp-tab {
padding: 14px 28px;
font-family: var(--fh);
font-size: 14px;
font-weight: 600;
letter-spacing: 0.02em;
text-transform: uppercase;
color: var(--grey);
background: none;
border: none;
border-bottom: 2px solid transparent;
margin-bottom: -2px;
cursor: pointer;
transition: color 0.2s, border-color 0.2s;
}
.jp-tab:hover {
color: var(--dark);
}
.jp-tab.jp-tab-active {
color: var(--gold-text);
border-bottom-color: var(--gold);
}
.jp-tab-content {
display: none;
}
.jp-tab-content.jp-tab-active {
display: block;
}
.jp-tab-intro,
.jp-intro {
font-size: 16px;
color: var(--grey);
line-height: 1.8;
margin-bottom: 32px;
max-width: 720px;
} .jp-tabs {
display: flex;
gap: 0;
margin-bottom: 32px;
border-bottom: 2px solid var(--border);
} .jp-layout {
display: grid;
grid-template-columns: 1fr 320px;
gap: 48px;
align-items: start;
}
.jp-steps {
min-width: 0;
}
.jp-sidebar {
position: sticky;
top: 100px;
}
.jp-efekt {
background: var(--white);
border: 1px solid var(--border);
border-top: 3px solid var(--gold);
padding: 52px 56px;
border-radius: 14px;
}
.jp-efekt-title {
font-size: 12px;
text-transform: uppercase;
letter-spacing: .25em;
color: var(--gold);
font-weight: 700;
font-family: var(--fb);
margin-bottom: 28px;
}
.jp-efekt-col {
display: flex;
flex-direction: column;
gap: 28px;
}
.jp-efekt-item {
border-left: 2px solid var(--gold);
padding-left: 20px;
transition: transform 0.25s ease, border-left-width 0.25s ease;
}
.jp-efekt-item:hover {
transform: translateX(4px);
border-left-width: 3px;
}
.jp-efekt-text {
font-family: var(--fh);
font-size: 18px;
font-weight: 500;
color: var(--navy);
line-height: 1.5;
}
@media (max-width: 768px) {
.jp-layout {
grid-template-columns: 1fr;
gap: 32px;
}
.jp-sidebar {
position: static;
}
}  .why-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: start;
margin-bottom: 48px;
}
.why-quote {
padding: 40px;
border-left: 4px solid var(--gold);
margin-bottom: 20px;
}
.why-quote p {
font-family: var(--fh);
font-size: 20px;
font-style: italic;
color: var(--navy);
line-height: 1.6;
}
.why-quote cite {
display: block;
font-style: normal;
font-size: 13px;
color: var(--grey);
margin-top: 16px;
letter-spacing: 0.04em;
}
.why-quote-highlight {
background: var(--navy);
}
.why-quote-highlight p {
color: rgba(255,255,255,0.9);
}
.why-quote-highlight cite {
color: rgba(255,255,255,0.5);
}
.why-comp-label {
font-size: 13px;
text-transform: uppercase;
letter-spacing: .25em;
font-weight: 700;
font-family: var(--fb);
color: var(--gold);
margin-bottom: 24px;
}
.why-comp-item {
display: flex;
flex-direction: column;
gap: 6px;
padding: 20px 0;
border-bottom: 1px solid var(--border);
}
.why-comp-role {
font-size: 10px;
text-transform: uppercase;
letter-spacing: .18em;
font-weight: 700;
font-family: var(--fb);
color: var(--gold);
}
.why-comp-desc {
font-size: 13px;
color: var(--grey);
line-height: 1.55;
}
@media (max-width: 768px) {
.why-grid { grid-template-columns: 1fr; }
}
.dlaczego-benefits {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}
.dlaczego-benefit {
padding: 24px;
border-top: 2px solid var(--gold);
}
.dlaczego-benefit h4 {
font-family: var(--fh);
font-size: 16px;
font-weight: 600;
margin-bottom: 8px;
color: var(--dark);
}
.dlaczego-benefit p {
font-size: 14px;
color: var(--grey);
line-height: 1.7;
} .fc-note {
margin-top: 32px;
padding: 20px 24px;
background: var(--ecru);
border-radius: 4px;
font-size: 14px;
color: var(--grey);
line-height: 1.7;
border-left: 3px solid var(--gold);
} .cta-note {
font-size: 13px !important;
color: rgba(255,255,255,0.5) !important;
margin-top: 24px;
} .cta-sec {
background: var(--navy);
padding: 80px 0;
text-align: center;
}
.cta-sec h2 {
font-family: var(--fh);
font-size: clamp(28px, 3vw, 40px);
font-weight: 500;
color: var(--white);
margin-bottom: 20px;
line-height: 1.3;
}
.cta-sec p {
font-size: 17px;
color: rgba(255,255,255,0.7);
margin-bottom: 40px;
} .cta-sec .btn-gold + .btn-outline,
.cta-sec .btn-outline + .btn-gold,
.cta-sec .btn-gold + .btn-gold {
margin-left: 28px;
} @media (max-width: 640px) {
.cta-sec .btn-gold + .btn-outline,
.cta-sec .btn-outline + .btn-gold,
.cta-sec .btn-gold + .btn-gold {
margin-left: 0;
margin-top: 16px;
display: block;
}
} .footer {
background: var(--white);
color: var(--grey);
padding: 64px 0 40px;
border-top: 1px solid var(--border);
}
.footer-grid {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1fr;
gap: 48px;
margin-bottom: 48px;
}
.footer-brand-col {
grid-column: span 1;
}
.footer-brand {
font-family: var(--fh);
font-size: 20px;
font-weight: 400;
color: var(--white);
margin-bottom: 16px;
letter-spacing: 0;
}
.footer-desc {
font-size: 14px;
line-height: 1.8;
margin-bottom: 20px;
max-width: 320px;
}
.footer-col h4 {
font-family: var(--fh);
font-size: 13px;
text-transform: uppercase;
letter-spacing: .2em;
color: var(--navy);
font-weight: 700;
margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
font-size: 14px;
color: var(--grey);
transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
border-top: 1px solid var(--border);
padding-top: 32px;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 12px;
color: var(--grey);
}
.footer-legal {
display: flex;
gap: 24px;
}
.footer-legal a {
color: var(--grey);
transition: color .2s;
}
.footer-legal a:hover { color: var(--navy); }
@media (max-width: 1024px) {
.footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
.footer-grid { grid-template-columns: 1fr; }
.footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
} .contact-info-item {
display: flex;
gap: 16px;
margin-bottom: 28px;
}
.contact-info-icon {
width: 48px;
height: 48px;
background: var(--gold);
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; stroke: white; }
.contact-info-label {
font-size: 12px;
text-transform: uppercase;
letter-spacing: .15em;
color: var(--gold-text);
font-weight: 700;
margin-bottom: 4px;
}
.contact-info-value {
font-size: 16px;
color: var(--navy);
font-weight: 500;
}
.contact-info-value a { transition: color .2s; }
.contact-info-value a:hover { color: var(--gold); }
.form-group { margin-bottom: 24px; }
.form-2col {
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 20px;
}
.form-label {
display: block;
font-size: 12px;
text-transform: uppercase;
letter-spacing: .15em;
color: var(--grey);
font-weight: 700;
margin-bottom: 8px;
}
.form-input,
.form-textarea,
.form-select {
width: 100%;
padding: 14px 18px;
font-size: 15px;
font-family: var(--fb);
border: 1.5px solid var(--border);
background: var(--white);
color: var(--dark);
transition: border-color .2s, box-shadow .2s;
border-radius: 0;
appearance: none;
}
.form-select {
padding-right: 44px;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%2317233d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 14px center;
cursor: pointer;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
outline: none;
border-color: var(--navy);
box-shadow: 0 0 0 3px rgba(23,35,61,0.1);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-error {
display: none;
margin-top: 8px;
color: #b12727;
font-size: 13px;
line-height: 1.5;
}
.form-checkbox {
display: flex;
align-items: flex-start;
gap: 12px;
margin-top: 8px;
}
.form-checkbox input {
margin-top: 4px;
accent-color: var(--gold);
}
.form-checkbox label {
font-size: 13px;
color: var(--grey);
line-height: 1.7;
}
.form-checkbox a {
color: var(--gold-text);
}
.page-hero-editorial {
padding: 156px 0 92px;
background: linear-gradient(180deg, #f2eee7 0%, #ebe5dc 100%);
}
.page-hero-editorial .wrap {
display: grid;
grid-template-columns: 1.2fr 0.8fr;
gap: 64px;
align-items: center;
}
.page-hero-editorial__content {
max-width: 920px;
}
.page-hero-editorial__photo {
position: relative;
}
.page-hero-editorial__photo img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.page-hero-editorial h1 {
font-family: var(--fh);
font-size: clamp(36px, 4vw, 56px);
font-weight: 500;
line-height: 1.2;
margin-bottom: 20px;
}
.page-hero-editorial p {
max-width: 620px;
font-size: 20px;
line-height: 1.7;
color: var(--grey);
}
.page-hero-about {
background:
linear-gradient(155deg, rgba(244,239,232,0.92) 0%, rgba(236,231,222,0.88) 40%, rgba(229,223,213,0.7) 100%),
url(//elev8.pl/wp-content/themes/elev8-b2b-theme/assets/images/elev8-warm-beige_001.jpg) right center / auto 100% no-repeat;
position: relative;
overflow: hidden;
}
@media (max-width: 768px) {
.page-hero-about {
background: linear-gradient(155deg, #f4efe8 0%, #ece7de 60%, #e5dfd5 100%);
}
}
.page-hero-about::after {
content: 'E';
position: absolute;
right: -40px;
top: 50%;
transform: translateY(-50%);
font-family: var(--fh);
font-size: clamp(280px, 28vw, 420px);
font-weight: 900;
color: var(--navy);
opacity: 0.04;
line-height: 1;
pointer-events: none;
user-select: none;
letter-spacing: -0.06em;
}
.onas-hero-stats {
display: flex;
gap: 48px;
margin-top: 48px;
padding-top: 40px;
border-top: 1px solid rgba(23,35,61,0.12);
}
.onas-hero-stat {
display: flex;
flex-direction: column;
gap: 6px;
}
.onas-hero-stat-num {
font-family: var(--fh);
font-size: 36px;
font-weight: 800;
color: var(--navy);
line-height: 1;
letter-spacing: -0.02em;
}
.onas-hero-stat-label {
font-size: 12px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: .12em;
color: var(--grey);
}
@media (max-width: 480px) {
.onas-hero-stats { gap: 28px; flex-wrap: wrap; }
.onas-hero-stat-num { font-size: 28px; }
}
.page-hero-contact {
background: linear-gradient(180deg, #f5f0e8 0%, #ece6de 100%);
padding: 48px 0 40px;
}
.page-hero-contact h1 {
font-size: clamp(28px, 3vw, 40px);
margin-bottom: 0;
}
.about-lead {
max-width: 780px;
margin-top: 20px;
}
.values-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
margin-top: 48px;
}
.value-card {
padding: 32px;
border: 1px solid var(--border);
background: var(--white);
}
.value-n {
font-family: var(--fh);
font-size: 30px;
font-weight: 500;
color: rgba(153,25,25,0.38);
margin-bottom: 18px;
}
.value-title {
font-size: 20px;
line-height: 1.25;
color: var(--navy);
margin-bottom: 12px;
}
.value-desc {
font-size: 14px;
color: var(--grey);
line-height: 1.75;
}
.comp-grid-6 {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 24px;
margin-top: 48px;
}
.comp-cell {
padding: 32px;
border: 1px solid rgba(23,35,61,0.1);
background: rgba(255,255,255,0.6);
}
.comp-cell h3 {
font-size: 20px;
line-height: 1.25;
color: var(--navy);
margin-bottom: 12px;
}
.comp-cell p {
font-size: 14px;
color: var(--grey);
line-height: 1.75;
}
.cert-badges {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 32px;
}
.cert-badge {
display: inline-flex;
align-items: center;
min-height: 34px;
padding: 0 14px;
border: 1px solid rgba(23,35,61,0.12);
background: rgba(255,255,255,0.7);
color: var(--navy);
font-size: 11px;
letter-spacing: .12em;
text-transform: uppercase;
font-weight: 700;
}
.team-grid-about {
margin-top: 48px;
}
.contact-layout {
display: grid;
grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
gap: 64px;
align-items: start;
}
.contact-form-panel {
max-width: 760px;
}
.contact-intro {
font-size: 17px;
color: var(--grey);
line-height: 1.85;
margin-top: 18px;
margin-bottom: 32px;
}
.contact-alert {
padding: 18px 20px;
border: 1px solid var(--border);
margin-bottom: 24px;
font-size: 14px;
line-height: 1.6;
}
.contact-alert-success {
background: #eef8ef;
border-color: #c9e4cb;
color: #215c2a;
}
.contact-alert-error {
background: #fbefef;
border-color: #e6c7c7;
color: #8e2525;
}
.contact-alert-warn {
background: #fff8e7;
border-color: #edd9a7;
color: #7b6320;
}
.contact-submit {
margin-top: 24px;
}
.contact-sidebar {
position: sticky;
top: 96px;
}
.contact-card {
padding: 36px;
border: 1px solid var(--border);
background: linear-gradient(180deg, rgba(248,246,242,0.96) 0%, rgba(244,241,235,0.96) 100%);
}
.contact-card-title {
font-family: var(--fh);
font-size: 28px;
color: var(--navy);
margin-bottom: 24px;
}
.contact-row {
display: flex;
justify-content: space-between;
gap: 20px;
padding: 14px 0;
border-bottom: 1px solid rgba(23,35,61,0.08);
}
.contact-row-label {
font-size: 11px;
letter-spacing: .16em;
text-transform: uppercase;
color: var(--gold-text);
font-weight: 700;
}
.contact-row-val {
font-size: 15px;
line-height: 1.6;
color: var(--navy);
text-align: right;
}
.contact-row-val a:hover {
color: var(--gold-text);
}
.contact-card-block {
margin-top: 28px;
padding-top: 24px;
border-top: 1px solid rgba(23,35,61,0.08);
}
.contact-card-subtitle {
font-family: var(--fh);
font-size: 20px;
color: var(--navy);
margin-bottom: 14px;
}
.contact-checklist {
list-style: none;
display: flex;
flex-direction: column;
gap: 12px;
}
.contact-checklist li {
display: flex;
align-items: flex-start;
gap: 12px;
color: var(--grey);
font-size: 14px;
line-height: 1.7;
}
.contact-check {
color: var(--gold-text);
font-weight: 700;
line-height: 1.4;
}
.contact-location {
display: grid;
grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
gap: 48px;
align-items: center;
}
.contact-location-meta {
margin-top: 28px;
color: var(--navy);
font-size: 15px;
line-height: 1.75;
}
.contact-map {
overflow: hidden;
min-height: 320px;
border: 1px solid rgba(23,35,61,0.08);
} .blog-card-image-link {
display: block;
overflow: hidden;
}
.blog-card-image {
aspect-ratio: 16/9;
overflow: hidden;
background: var(--ecru);
}
.blog-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .3s;
}
.blog-card:hover .blog-card-image img {
transform: scale(1.05);
}
.blog-pagination .page-numbers {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 44px;
height: 44px;
padding: 0 16px;
font-size: 13px;
font-weight: 600;
font-family: var(--fb);
color: var(--navy);
background: var(--white);
border: 1px solid var(--border);
transition: background .2s, color .2s, border-color .2s;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
background: var(--navy);
color: var(--white);
border-color: var(--navy);
}
.blog-pagination .page-numbers.dots {
background: none;
border: none;
cursor: default;
}
.blog-pagination .page-numbers.dots:hover {
background: none;
color: var(--navy);
} .entry-content-wrap {
background: var(--white);
}
.post-navigation {
background: var(--ecru);
padding: 48px 0;
}
.post-navigation .wrap {
display: flex;
justify-content: space-between;
gap: 24px;
}
.hero-placeholder,
.team-placeholder {
border-radius: inherit;
}
.single-post .entry-header {
background: var(--navy);
padding: 160px 0 80px;
text-align: center;
}
.single-post .entry-category {
font-size: 11px;
text-transform: uppercase;
letter-spacing: .25em;
color: var(--gold);
font-weight: 700;
margin-bottom: 16px;
}
.single-post .entry-title {
font-family: var(--fh);
font-size: clamp(28px, 4vw, 48px);
font-weight: 500;
color: var(--white);
line-height: 1.2;
max-width: 800px;
margin: 0 auto 24px;
}
.single-post .entry-meta {
font-size: 13px;
color: rgba(255,255,255,0.6);
}
.single-post .entry-content {
max-width: 720px;
margin: 0 auto;
padding: 64px 24px;
}
.single-post .entry-content h2 {
font-family: var(--fh);
font-size: 28px;
font-weight: 600;
color: var(--navy);
margin: 48px 0 24px;
}
.single-post .entry-content h3 {
font-family: var(--fh);
font-size: 22px;
font-weight: 600;
color: var(--navy);
margin: 36px 0 16px;
}
.single-post .entry-content p {
font-size: 17px;
line-height: 1.85;
color: var(--grey);
margin-bottom: 24px;
}
.single-post .entry-content ul,
.single-post .entry-content ol {
margin: 0 0 24px 24px;
}
.single-post .entry-content li {
font-size: 17px;
line-height: 1.75;
color: var(--grey);
margin-bottom: 8px;
}
.single-post .entry-content blockquote {
border-left: 4px solid var(--gold);
padding-left: 24px;
margin: 32px 0;
font-style: italic;
color: var(--navy);
}
.single-post .entry-content img {
max-width: 100%;
height: auto;
border-radius: 4px;
margin: 32px 0;
}
@media (max-width: 768px) {
.single-post .entry-header {
padding: 120px 0 60px;
}
.single-post .entry-content {
padding: 48px 0;
}
.single-post .entry-content h2 { font-size: 24px; }
.single-post .entry-content h3 { font-size: 20px; }
.single-post .entry-content p,
.single-post .entry-content li { font-size: 16px; }
}
.blog-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 4px;
overflow: hidden;
transition: box-shadow .25s, transform .25s;
}
.blog-card:hover {
box-shadow: 0 8px 24px rgba(0,0,0,0.08);
transform: translateY(-4px);
}
.blog-card-image {
aspect-ratio: 16/9;
overflow: hidden;
}
.blog-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform .3s;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 28px; }
.blog-card-meta {
font-size: 11px;
text-transform: uppercase;
letter-spacing: .15em;
color: var(--gold-text);
font-weight: 700;
margin-bottom: 12px;
}
.blog-card-title {
font-family: var(--fh);
font-size: 20px;
font-weight: 600;
color: var(--navy);
margin-bottom: 12px;
line-height: 1.4;
}
.blog-card-excerpt {
font-size: 14px;
color: var(--grey);
line-height: 1.75;
} .blog-grid-editorial { grid-template-columns: repeat(3, 1fr); gap: 2px; }
.blog-card-editorial {
display: flex;
flex-direction: column;
gap: 14px;
padding: 32px;
background: var(--white);
border: 1px solid var(--border);
border-left: 3px solid transparent;
border-radius: 4px;
text-decoration: none;
color: inherit;
transition: box-shadow .25s, transform .25s, border-left-color .25s;
}
.blog-card-editorial:hover {
box-shadow: 0 8px 24px rgba(23,35,61,0.08);
transform: translateY(-3px);
border-left-color: var(--gold);
}
.blog-tag {
display: inline-block;
font-size: 9px;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--gold-text);
border: none;
border-radius: 0;
padding: 3px 8px;
align-self: flex-start;
}
.blog-card-editorial .blog-title {
font-family: var(--fh);
font-size: 17px;
font-weight: 400;
color: var(--navy);
line-height: 1.4;
margin: 0;
flex: 1;
}
.blog-lead {
font-size: 14px;
color: var(--grey);
line-height: 1.7;
margin: 0;
}
.blog-author {
display: flex;
align-items: center;
gap: 12px;
margin-top: auto;
padding-top: 16px;
border-top: 1px solid var(--border);
}
.blog-author-dot {
flex-shrink: 0;
width: 32px;
height: 32px;
border-radius: 50%;
background: var(--c-steel);
color: var(--white);
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
font-weight: 700;
letter-spacing: .03em;
}
.blog-author-name {
font-size: 13px;
font-weight: 600;
color: var(--navy);
line-height: 1.3;
}
.blog-author-role {
font-size: 12px;
color: var(--grey);
line-height: 1.3;
}  .page-hero h1 {
font-family: var(--fh);
font-size: clamp(36px, 4vw, 56px);
font-weight: 500;
color: var(--navy);
margin-bottom: 20px;
line-height: 1.2;
}
.page-hero p {
font-size: 18px;
color: var(--grey);
max-width: 640px;
margin: 0 auto;
line-height: 1.8;
}
@media (max-width: 768px) {
.page-hero { padding: 32px 0 60px; }
.page-hero h1 { font-size: clamp(28px, 8vw, 40px); }
.page-hero p { font-size: 16px; }
}  .page-hero-offer {
background: linear-gradient(180deg, var(--ecru) 0%, #e8e3db 100%);
padding: 80px 0 72px;
border-bottom: 1px solid var(--border);
}
.offer-hero-wrap {
display: flex;
align-items: center;
gap: 72px;
}
.offer-hero-left {
flex: 1;
min-width: 0;
}
.offer-hero-right {
flex: 0 0 320px;
min-width: 0;
}
.page-hero-offer .page-eyebrow {
font-family: var(--fh);
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .18em;
color: var(--gold-text);
margin-bottom: 16px;
}
.page-hero-offer h1 {
font-family: var(--fh);
font-size: clamp(28px, 3.2vw, 44px);
font-weight: 700;
color: var(--navy);
line-height: 1.15;
margin: 0 0 20px;
}
.page-hero-offer .page-lead {
font-size: 16px;
color: var(--grey);
line-height: 1.8;
margin-bottom: 32px;
} .offer-area-anim {
display: flex;
flex-direction: column;
gap: 4px;
}
.offer-area-item {
display: flex;
align-items: center;
gap: 16px;
padding: 13px 18px;
padding-right: 36px;
border-radius: 6px;
opacity: 0.5;
transform: translateX(10px);
transition: opacity .35s ease, background .35s ease, transform .35s ease, box-shadow .35s ease;
text-decoration: none;
cursor: pointer;
position: relative;
}
.offer-area-item::after {
content: '→';
position: absolute;
right: 14px;
font-size: 14px;
color: var(--gold);
opacity: 0;
transform: translateX(-6px);
transition: opacity .25s ease, transform .25s ease;
}
.offer-area-item:hover {
opacity: 1;
transform: translateX(0);
background: rgba(255,255,255,0.85);
box-shadow: 0 1px 10px rgba(23,35,61,0.06);
}
.offer-area-item:hover::after {
opacity: 1;
transform: translateX(0);
}
.offer-area-item.active {
background: var(--white);
opacity: 1;
transform: translateX(0);
box-shadow: 0 2px 18px rgba(23,35,61,0.08);
}
.offer-area-item.active::after {
opacity: 1;
transform: translateX(0);
}
.offer-area-n {
font-family: var(--fh);
font-size: 20px;
font-weight: 700;
color: var(--gold);
min-width: 24px;
line-height: 1;
}
.offer-area-title {
font-size: 13px;
font-weight: 600;
color: var(--navy);
line-height: 1.35;
} .offer-svc-price-individual {
display: inline-block;
font-size: 9px;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--gold-text);
border: 1.5px solid var(--gold-text);
border-radius: 3px;
padding: 4px 8px;
white-space: nowrap;
opacity: 0.8;
} .offer-intro {
margin-bottom: 40px;
max-width: 640px;
}
.offer-intro-heading {
font-family: var(--fh);
font-size: 26px;
font-weight: 700;
color: var(--navy);
margin: 8px 0 14px;
line-height: 1.3;
} .offer-pillars {
display: flex;
flex-direction: column;
gap: 28px;
margin-top: 40px;
}
.offer-pillar {
border: 1px solid var(--border);
border-radius: 6px;
background: var(--white);
overflow: hidden;
transition: box-shadow .25s;
}
.offer-pillar:hover {
box-shadow: 0 6px 24px rgba(23,35,61,0.08);
}
.offer-pillar-header {
display: grid;
grid-template-columns: 72px 1fr auto;
gap: 20px;
align-items: center;
padding: 24px 28px;
background: var(--ecru);
border-bottom: 1px solid var(--border);
}
.offer-pillar-num {
font-family: var(--fh);
font-size: 52px;
font-weight: 900;
color: var(--gold-text);
opacity: 0.18;
line-height: 1;
align-self: flex-start;
margin-top: -2px;
}
.offer-pillar-titles {
flex: 1;
}
.offer-pillar-title {
font-family: var(--fh);
font-size: 18px;
font-weight: 700;
color: var(--navy);
margin-bottom: 4px;
line-height: 1.3;
}
.offer-pillar-tagline {
font-size: 12px;
color: var(--gold-text);
font-style: italic;
line-height: 1.5;
margin: 0;
}
.offer-pillar-link {
font-size: 11px;
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--gold-text);
font-family: var(--fb);
text-decoration: none;
white-space: nowrap;
transition: color .2s;
display: inline-flex;
align-items: center;
gap: 5px;
}
.offer-pillar-link:hover { color: var(--gold); }
.offer-pillar-link span {
font-size: 10px;
opacity: 0.5;
margin-left: 2px;
} .offer-pillar-services {
display: flex;
flex-direction: column;
}
.offer-svc-row {
display: grid;
grid-template-columns: 1fr auto;
gap: 20px;
align-items: center;
padding: 16px 28px;
border-bottom: 1px solid var(--border);
transition: background .15s;
}
.offer-svc-row:last-child { border-bottom: none; }
.offer-svc-row:hover { background: rgba(250,250,248,0.7); }
.offer-svc-left {
display: flex;
align-items: baseline;
gap: 14px;
}
.offer-svc-num {
font-family: var(--fh);
font-size: 12px;
font-weight: 700;
color: var(--gold-text);
opacity: 0.45;
min-width: 28px;
flex-shrink: 0;
}
.offer-svc-info {
display: flex;
flex-direction: column;
gap: 2px;
}
.offer-svc-name {
font-size: 14px;
font-weight: 600;
color: var(--navy);
text-decoration: none;
line-height: 1.4;
transition: color .15s;
}
.offer-svc-name:hover { color: var(--gold); }
.offer-svc-type {
font-size: 12px;
color: var(--grey);
line-height: 1.5;
}
.offer-svc-right {
display: flex;
flex-direction: column;
align-items: flex-end;
gap: 2px;
flex-shrink: 0;
}
.offer-svc-price {
font-size: 13px;
font-weight: 700;
color: var(--navy);
white-space: nowrap;
}
.offer-svc-price-note {
font-size: 11px;
color: var(--grey);
white-space: nowrap;
} .flagship-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 20px;
margin-top: 40px;
}
.flagship-card {
background: var(--white);
border: 1px solid var(--border);
border-radius: 6px;
padding: 28px 24px;
display: flex;
flex-direction: column;
gap: 12px;
transition: box-shadow .2s, transform .2s;
}
.flagship-card:hover {
box-shadow: 0 6px 24px rgba(23,35,61,0.08);
transform: translateY(-2px);
}
.flagship-card-type {
font-size: 10px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .18em;
color: var(--gold-text);
}
.flagship-card-name {
font-family: var(--fh);
font-size: 17px;
font-weight: 700;
color: var(--navy);
line-height: 1.3;
margin: 0;
}
.flagship-card-desc {
font-size: 13px;
color: var(--grey);
line-height: 1.7;
margin: 0;
flex: 1;
}
.flagship-card-pricing {
display: flex;
flex-direction: column;
gap: 2px;
margin-top: auto;
padding-top: 14px;
border-top: 1px solid var(--border);
}
.flagship-card-price {
font-family: var(--fh);
font-size: 14px;
font-weight: 700;
color: var(--navy);
}
.flagship-card-note {
font-size: 11px;
color: var(--grey);
}
.flagship-card-link {
font-size: 11px;
font-weight: 700;
letter-spacing: .12em;
text-transform: uppercase;
color: var(--gold-text);
font-family: var(--fb);
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 5px;
transition: gap .2s, color .2s;
}
.flagship-card-link:hover { gap: 9px; color: var(--gold); }
.flagship-note {
text-align: center;
margin-top: 32px;
font-size: 13px;
color: var(--grey);
} .offer-start-guide {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 48px;
padding: 28px 32px;
background: var(--white);
border-left: 3px solid var(--gold);
border-radius: 2px;
}
.offer-start-item {
display: flex;
align-items: center;
gap: 14px;
font-size: 15px;
}
.offer-start-icon {
display: flex;
align-items: center;
flex-shrink: 0;
color: var(--gold-text);
opacity: 0.85;
}
.offer-start-if {
color: var(--grey);
flex: 1;
min-width: 0;
}
.offer-start-arrow {
color: var(--gold-text);
font-weight: 600;
flex-shrink: 0;
}
.offer-start-then {
color: var(--navy);
font-weight: 600;
flex: 1;
min-width: 0;
}
@media (max-width: 640px) {
.offer-start-item {
flex-direction: column;
align-items: flex-start;
gap: 4px;
}
.offer-start-arrow { display: none; }
.offer-start-if { font-size: 13px; }
.offer-start-then {
font-size: 14px;
padding-left: 28px; }
.offer-start-then::before {
content: '→ ';
color: var(--gold-text);
font-weight: 700;
}
.offer-start-guide { padding: 20px; gap: 16px; }
.offer-start-item + .offer-start-item {
border-top: 1px solid var(--border);
padding-top: 16px;
}
} .timeline-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 0;
margin-top: 40px;
border: 1px solid var(--border);
border-radius: 6px;
overflow: hidden;
}
.timeline-item {
padding: 32px 24px;
text-align: center;
border-right: 1px solid var(--border);
background: var(--white);
transition: background .15s;
}
.timeline-item:last-child { border-right: none; }
.timeline-item:hover { background: var(--ecru); }
.timeline-num {
font-family: var(--fh);
font-size: 48px;
font-weight: 900;
color: var(--gold-text);
line-height: 1;
margin-bottom: 10px;
}
.timeline-unit {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .12em;
color: var(--navy);
margin-bottom: 12px;
padding-bottom: 12px;
border-bottom: 1px solid var(--border);
}
.timeline-desc {
font-size: 13px;
color: var(--grey);
line-height: 1.65;
margin: 0;
}
.timeline-footnote {
margin-top: 36px;
font-size: 14px;
color: var(--grey);
text-align: center;
font-style: italic;
} .offer-consultation {
background: var(--ecru);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 52px 0;
text-align: center;
}
.offer-consultation-label {
font-family: var(--fh);
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .18em;
color: var(--gold-text);
margin-bottom: 12px;
}
.offer-consultation-heading {
font-family: var(--fh);
font-size: 20px;
font-weight: 700;
color: var(--navy);
margin: 0 0 12px;
line-height: 1.3;
}
.offer-consultation-desc {
font-size: 15px;
color: var(--grey);
line-height: 1.7;
margin: 0 auto 24px;
max-width: 500px;
}
.offer-consultation-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 16px 36px;
flex-wrap: wrap;
margin-bottom: 14px;
}
.offer-consultation-phone {
font-family: var(--fh);
font-size: 18px;
font-weight: 700;
color: var(--navy);
text-decoration: none;
letter-spacing: .02em;
}
.offer-consultation-phone:hover { color: var(--gold); }
.offer-consultation-note {
font-size: 12px;
color: var(--grey);
margin: 0;
} @media (max-width: 900px) {
.flagship-grid {
grid-template-columns: repeat(2, 1fr);
}
.timeline-grid {
grid-template-columns: repeat(2, 1fr);
}
.timeline-item:nth-child(2) { border-right: none; }
.timeline-item:nth-child(1),
.timeline-item:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 640px) {
.flagship-grid {
grid-template-columns: 1fr;
max-width: 480px;
margin-left: auto;
margin-right: auto;
}
}
@media (max-width: 640px) {
.offer-pillar-header {
grid-template-columns: 56px 1fr;
gap: 14px;
padding: 18px 20px;
}
.offer-pillar-num {
font-size: 40px;
grid-row: 1 / 3;
}
.offer-pillar-link {
grid-column: 2;
align-self: flex-start;
}
.offer-svc-row {
grid-template-columns: 1fr;
gap: 8px;
padding: 14px 20px;
}
.offer-svc-right { align-items: flex-start; }
.timeline-grid {
grid-template-columns: 1fr;
}
.timeline-item {
border-right: none;
border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.offer-consultation-actions {
flex-direction: column;
gap: 14px;
}
} .offer-consultation {
background: var(--ecru);
border-top: 1px solid var(--border);
border-bottom: 1px solid var(--border);
padding: 48px 0;
text-align: center;
}
.offer-consultation-label {
font-family: var(--fh);
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: .15em;
color: var(--gold-text);
margin-bottom: 16px;
}
.offer-consultation-heading {
font-family: var(--fh);
font-size: 22px;
font-weight: 700;
color: var(--navy);
margin-bottom: 12px;
}
.offer-consultation-desc {
font-size: 15px;
color: var(--grey);
line-height: 1.65;
margin: 0 auto 24px;
max-width: 540px;
}
.offer-consultation-actions {
display: flex;
align-items: center;
justify-content: center;
gap: 16px 32px;
flex-wrap: wrap;
margin-bottom: 16px;
}
.offer-consultation-phone {
font-family: var(--fh);
font-size: 18px;
font-weight: 700;
color: var(--navy);
text-decoration: none;
letter-spacing: .02em;
}
.offer-consultation-phone:hover {
color: var(--gold);
}
.offer-consultation-note {
font-size: 12px;
color: var(--grey);
margin: 0;
} .accordion-item {
border-bottom: 1px solid var(--border);
}
.accordion-question {
width: 100%;
padding: 24px 0;
display: flex;
justify-content: space-between;
align-items: center;
font-family: var(--fh);
font-size: 18px;
font-weight: 500;
color: var(--navy);
text-align: left;
background: none;
border: none;
cursor: pointer;
gap: 20px;
}
.accordion-question:hover { color: var(--gold); }
.accordion-icon {
width: 24px;
height: 24px;
flex-shrink: 0;
transition: transform .3s;
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-answer {
max-height: 0;
overflow: hidden;
transition: max-height .3s, padding .3s;
}
.accordion-item.open .accordion-answer {
max-height: 500px;
padding-bottom: 24px;
}
.accordion-answer p {
font-size: 15px;
color: var(--grey);
line-height: 1.85;
} .team-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-top: 48px;
}
.team-card {
text-align: center;
padding: 28px 20px;
border-radius: 8px;
border: 1px solid var(--border);
background: var(--white);
transition: box-shadow .25s ease, transform .25s ease;
}
.team-card:hover {
box-shadow: 0 8px 32px rgba(23,35,61,0.10);
transform: translateY(-3px);
}
.team-photo {
width: 180px;
height: 180px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto 24px;
background: var(--ecru);
}
.team-photo img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top center;
}
.team-name {
font-family: var(--fh);
font-size: 18px;
font-weight: 500;
color: var(--navy);
margin-bottom: 4px;
line-height: 1.3;
}
.team-role {
font-size: 10px;
text-transform: uppercase;
letter-spacing: .2em;
color: var(--gold);
font-weight: 700;
font-family: var(--fb);
margin-bottom: 10px;
}
.team-bio {
font-size: 13px;
color: var(--grey);
line-height: 1.7;
margin-bottom: 12px;
min-height: 88px;
}
@media (max-width: 768px) {
.team-grid { grid-template-columns: 1fr; }
} .team-slider-wrapper {
position: relative;
margin-top: 48px;
overflow: hidden;
}
.team-slider {
display: flex;
gap: 32px;
transition: transform 0.4s ease;
cursor: grab;
user-select: none;
}
.team-slider .team-card {
flex: 0 0 308px;
max-width: 308px;
}
.team-slider-nav {
position: absolute;
top: 50%;
left: 0;
right: 0;
transform: translateY(-50%);
display: flex;
justify-content: space-between;
pointer-events: none;
z-index: 10;
}
.team-slider-btn {
pointer-events: all;
width: 48px;
height: 48px;
border-radius: 50%;
background: var(--white);
border: 1px solid var(--border);
color: var(--navy);
font-size: 24px;
line-height: 1;
cursor: pointer;
transition: all 0.2s ease;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.team-slider-btn:hover:not(:disabled) {
background: var(--navy);
color: var(--white);
border-color: var(--navy);
}
.team-slider-btn:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.team-slider-prev {
margin-left: -24px;
}
.team-slider-next {
margin-right: -24px;
}
@media (max-width: 768px) {
.team-slider-wrapper {
overflow-x: auto;
overflow-y: hidden;
-webkit-overflow-scrolling: touch;
}
.team-slider-nav {
display: none;
}
.team-slider {
cursor: default;
}
.team-slider .team-card {
flex: 0 0 280px;
max-width: 280px;
}
} .text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.visually-hidden {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.skip-link {
position: absolute;
top: -100%;
left: 16px;
z-index: 10000;
padding: 8px 16px;
background: var(--navy);
color: var(--white);
font-size: 14px;
font-weight: 600;
text-decoration: none;
border-radius: 0 0 4px 4px;
}
.skip-link:focus {
top: 0;
} .cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--navy-dark);
padding: 20px 24px;
z-index: 9999;
display: flex;
align-items: center;
justify-content: space-between;
gap: 24px;
box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.cookie-banner.hidden {
display: none;
}
.cookie-banner p {
font-size: 13px;
color: rgba(255,255,255,0.8);
line-height: 1.6;
margin: 0;
}
.cookie-banner a {
color: var(--gold);
text-decoration: underline;
}
.cookie-banner .btn-gold {
white-space: nowrap;
flex-shrink: 0;
padding: 10px 20px;
font-size: 12px;
}
@media (max-width: 768px) {
.cookie-banner {
flex-direction: column;
text-align: center;
padding: 20px;
gap: 16px;
}
.cookie-banner p { font-size: 13px; }
} .areas-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}
.areas-grid-5 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.area-card {
background: var(--white);
padding: 32px 24px;
border-radius: 4px;
border: 1px solid var(--border);
transition: border-color 0.3s, box-shadow 0.3s;
display: flex;
flex-direction: column;
gap: 12px;
}
.area-card:hover {
border-color: var(--gold);
box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.area-icon-wrap {
display: flex;
align-items: left;
justify-content: left;
color: var(--navy);
margin-bottom: 8px;
} .area-card h3 {
font-size: 18px;
font-weight: 700;
color: var(--navy);
line-height: 1.3;
}
.area-card p {
font-size: 14px;
color: var(--grey);
line-height: 1.7;
flex: 1;
}
.area-link {
font-size: 12px;
font-weight: 700;
color: var(--gold-text);
text-transform: uppercase;
letter-spacing: .1em;
margin-top: auto;
}
.area-card-all {
background: var(--navy);
border-color: var(--navy);
justify-content: center;
align-items: center;
text-align: center;
}
.area-card-all .area-arrow { display: none; }
.area-card-all .area-link { display: none; }
.area-card-all h3 {
color: var(--white);
font-size: 20px;
}
.area-card-all p {
color: rgba(255,255,255,0.65);
}
.area-card-all::after {
content: 'Przeglądaj wszystkie →';
font-size: 10px;
letter-spacing: .2em;
text-transform: uppercase;
font-weight: 700;
font-family: var(--fb);
color: var(--white);
border: 1.5px solid rgba(255,255,255,0.4);
padding: 8px 18px;
margin-top: 8px;
display: inline-block;
transition: border-color .2s, background .2s;
}
.area-card-all:hover {
border-color: var(--navy);
box-shadow: 0 8px 28px rgba(23,35,61,0.2);
}
.area-card-all:hover::after {
border-color: var(--white);
background: rgba(255,255,255,0.1);
} .team-grid-about-full {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 32px;
margin-top: 48px;
}
.team-grid-about-full .team-photo img {
width: 100%;
aspect-ratio: 1;
object-fit: cover;
object-position: top;
border-radius: 6px;
} .team-img-normalize {
filter: grayscale(20%) contrast(1.05) brightness(1.02);
} .team-grid-5 {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 32px;
margin-top: 48px;
}
.team-grid-5 .team-photo img {
width: 100%;
aspect-ratio: 1;
object-fit: cover;
border-radius: 50%;
}
.team-certs {
display: flex;
flex-wrap: wrap;
gap: 6px;
margin-top: 12px;
justify-content: center;
}
.cert-tag {
display: inline-block;
padding: 4px 10px;
font-size: 9px;
font-weight: 600;
color: var(--gold-text);
background: var(--gold-m);
border-radius: 3px;
letter-spacing: .02em;
} .benefits-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}
.benefit-card {
background: var(--white);
padding: 36px 32px;
border-radius: 10px;
border: 1px solid var(--border);
position: relative;
transition: box-shadow .2s, transform .2s;
}
.benefit-card:hover {
box-shadow: 0 8px 28px rgba(23,35,61,0.09);
transform: translateY(-2px);
}
.benefit-n {
display: block;
font-family: var(--fh);
font-size: 11px;
font-weight: 700;
letter-spacing: .2em;
color: var(--navy);
opacity: 0.4;
margin-bottom: 16px;
text-align: left;
}
.benefit-card h3 {
font-size: 18px;
font-weight: 700;
color: var(--navy);
margin-bottom: 10px;
}
.benefit-card p {
font-size: 14px;
color: var(--grey);
line-height: 1.7;
} .mentor-grid {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 24px;
margin-top: 48px;
}
.mentor-card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.mentor-photo {
width: 100%;
aspect-ratio: 3 / 4;
object-fit: cover;
object-position: top;
border-radius: 8px;
margin-bottom: 16px;
}
.mentor-name {
font-size: 15px;
font-weight: 700;
color: var(--navy);
margin-bottom: 4px;
}
.mentor-area {
font-size: 12px;
color: var(--gold-text);
text-transform: uppercase;
letter-spacing: .08em;
font-weight: 600;
} .comp-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-top: 48px;
}
.comp-card {
background: var(--white);
padding: 32px;
border-radius: 8px;
border: 1px solid rgba(23,35,61,0.10);
}
.comp-card-title {
font-size: 17px;
font-weight: 700;
color: var(--navy);
margin-bottom: 12px;
}
.comp-card-desc {
font-size: 14px;
color: var(--grey);
line-height: 1.7;
} .notfor-lead {
font-size: 17px;
color: var(--grey);
line-height: 1.85;
margin-top: 16px;
margin-bottom: 32px;
}
.notfor-grid h2 { margin-bottom: 24px; }
.check-list {
display: flex;
flex-direction: column;
border: 1px solid var(--border);
}
.check-item {
display: flex;
gap: 16px;
align-items: flex-start;
padding: 18px 22px;
border-bottom: 1px solid var(--border);
font-size: 14px;
color: var(--navy);
line-height: 1.65;
}
.check-item:last-child { border-bottom: none; }
.check-item strong { color: var(--dark); font-weight: 600; }
.check-no { background: var(--white); }
.check-yes { background: rgba(23,35,61,0.02); }
.check-icon {
font-family: var(--fh);
font-size: 17px;
flex-shrink: 0;
line-height: 1.4;
margin-top: 1px;
}
.check-no .check-icon { color: var(--gold-text); }
.check-yes .check-icon { color: #2a7a4a; }
.notfor-cta { margin-top: 32px; display: inline-flex; }
.sec-cta-row { text-align: center; margin-top: 48px; } .services-footer {
text-align: center;
margin-top: 48px;
}
.services-note {
text-align: center;
margin-top: 16px;
font-size: 13px;
color: var(--grey);
} .wrap-narrow { max-width: 900px; }
.sec-eyebrow-light { color: rgba(255,255,255,0.6); } .fm-note {
font-size: 14px;
color: var(--navy);
line-height: 1.75;
margin-top: 40px;
max-width: 680px;
padding: 16px 20px;
background: var(--ecru);
border-left: 3px solid var(--gold);
border-radius: 0 6px 6px 0;
} .faq-intro-lead {
font-size: 14px;
color: var(--grey);
line-height: 1.8;
}
.faq-intro-sub {
font-size: 13px;
color: var(--grey);
line-height: 1.7;
margin-top: 16px;
opacity: 0.7;
} .competencies-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin-top: 48px;
}
.competency-card {
background: rgba(255,255,255,0.05);
padding: 32px;
border-radius: 4px;
border: 1px solid rgba(255,255,255,0.1);
}
.competency-card h3 {
font-size: 17px;
font-weight: 700;
color: var(--gold);
margin-bottom: 12px;
}
.competency-card p {
font-size: 14px;
color: rgba(255,255,255,0.7);
line-height: 1.7;
} .testimonials-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}
.testimonial-card {
background: var(--white);
padding: 32px;
border-radius: 4px;
border: 1px solid var(--border);
display: flex;
flex-direction: column;
}
.testimonial-text {
font-size: 16px;
font-style: italic;
color: var(--navy);
line-height: 1.7;
flex: 1;
margin-bottom: 24px;
}
.testimonial-author {
display: flex;
flex-direction: column;
gap: 2px;
padding-top: 16px;
border-top: 1px solid var(--border);
}
.testimonial-author strong {
font-family: var(--fh);
font-size: 14px;
font-weight: 700;
color: var(--navy);
}
.testimonial-author span {
font-size: 13px;
color: var(--grey);
} .fm-steps {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 40px;
margin-top: 56px;
}
.fm-step {
display: flex;
flex-direction: column;
gap: 16px;
}
.fm-step-n {
flex-shrink: 0;
width: 44px;
height: 44px;
display: flex;
align-items: center;
justify-content: center;
background: var(--gold);
color: var(--white);
font-family: var(--fh);
font-size: 16px;
font-weight: 700;
border-radius: 50%;
}
.fm-step-title {
font-size: 17px;
font-weight: 700;
color: var(--navy);
margin-bottom: 6px;
}
.fm-step-desc {
font-size: 15px;
color: var(--grey);
line-height: 1.7;
} .faq-layout {
display: grid;
grid-template-columns: 1fr 2fr;
gap: 80px;
align-items: start;
}
.faq-intro h2 {
margin-bottom: 20px;
}
.faq-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.faq-item {
background: var(--white);
border: 1px solid var(--border);
border-left: 3px solid transparent;
border-radius: 10px;
transition: border-color .2s, box-shadow .2s;
overflow: hidden;
}
.faq-item:hover {
border-color: rgba(153,25,25,0.15);
}
.faq-item.is-open {
border-left-color: var(--gold);
box-shadow: 0 4px 20px rgba(23,35,61,0.06);
}
.faq-question {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 20px 24px;
width: 100%;
background: none;
border: none;
text-align: left;
cursor: pointer;
font-family: var(--fh);
font-size: 17px;
font-weight: 500;
color: var(--navy);
line-height: 1.4;
}
.faq-q-text { flex: 1; }
.faq-q-icon {
font-size: 22px;
font-weight: 300;
color: var(--gold-text);
flex-shrink: 0;
transition: transform .2s;
line-height: 1;
}
.faq-item.is-open .faq-q-icon {
transform: rotate(45deg);
}
.faq-answer {
padding: 0 24px 20px;
font-size: 15px;
color: var(--grey);
line-height: 1.75;
}
.faq-answer[hidden] { display: none; } .principles-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}
.principle-card {
padding: 32px;
border: 1px solid var(--border);
border-top: 3px solid transparent;
border-radius: 4px;
transition: border-top-color .25s ease, box-shadow .25s ease;
}
.principle-card:hover {
border-top-color: var(--gold);
box-shadow: 0 6px 24px rgba(23,35,61,0.07);
}
.principle-num {
font-family: var(--fh);
font-size: 24px;
font-weight: 800;
color: var(--gold-text);
opacity: 0.55;
margin-bottom: 12px;
}
.principle-card h3 {
font-size: 17px;
font-weight: 700;
color: var(--navy);
margin-bottom: 8px;
}
.principle-card p {
font-size: 14px;
color: var(--grey);
line-height: 1.7;
} .notfor-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 48px;
align-items: start;
}
.notfor-panel {
border: 1px solid var(--border);
background: var(--white);
padding: 40px;
}
.notfor-panel-accent {
background: linear-gradient(180deg, rgba(23,35,61,0.02), rgba(23,35,61,0.06));
}
.notfor-list {
display: flex;
flex-direction: column;
border-top: 1px solid var(--border);
}
.notfor-item {
display: flex;
gap: 14px;
align-items: flex-start;
padding: 18px 0;
border-bottom: 1px solid var(--border);
font-size: 14px;
color: var(--dark);
line-height: 1.65;
}
.notfor-mark {
color: var(--gold-text);
font-family: var(--fh);
font-size: 18px;
line-height: 1.3;
flex-shrink: 0;
}
.notfor-mark-ok {
color: var(--success);
} .effects-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 48px;
}
.effect-card {
background: var(--white);
border: 1px solid var(--border);
padding: 32px;
border-radius: 4px;
}
.effect-n {
display: inline-block;
font-family: var(--fh);
font-size: 13px;
font-weight: 800;
letter-spacing: .12em;
color: var(--gold-text);
margin-bottom: 16px;
}
.effect-card h3 {
font-size: 18px;
font-weight: 700;
color: var(--navy);
margin-bottom: 12px;
line-height: 1.35;
}
.effect-card p {
font-size: 14px;
color: var(--grey);
line-height: 1.75;
} .service-detail-block {
margin-bottom: 40px;
}
.service-detail-block h3 {
font-size: 20px;
color: var(--navy);
margin-bottom: 18px;
} .signal-list,
.check-list,
.process-list {
margin-top: 32px;
}
.signal-list {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 16px;
}
.signal-item {
display: flex;
flex-direction: column;
gap: 14px;
background: var(--white);
border: 1px solid var(--border);
border-top: 3px solid var(--gold);
border-radius: 8px;
padding: 24px 22px 22px;
box-shadow: 0 2px 12px rgba(23,35,61,0.04);
transition: box-shadow .25s, transform .25s;
}
.signal-item:hover {
box-shadow: 0 6px 28px rgba(23,35,61,0.09);
transform: translateY(-2px);
}
.signal-n {
flex-shrink: 0;
width: 28px;
height: 28px;
display: inline-flex;
align-items: center;
justify-content: center;
background: var(--gold);
color: var(--white);
font-size: 11px;
font-weight: 800;
border-radius: 999px;
}
.signal-body { flex: 1; }
.signal-text {
font-size: 14px;
font-weight: 500;
color: var(--navy);
line-height: 1.65;
}
.signal-desc {
font-size: 13px;
color: var(--grey);
line-height: 1.65;
margin: 6px 0 0;
} .check-list {
display: flex;
flex-direction: column;
gap: 0;
border: 1px solid rgba(23,35,61,0.11);
border-radius: 8px;
overflow: hidden;
background: var(--white);
}
.check-item {
display: flex;
gap: 14px;
align-items: flex-start;
font-size: 15px;
color: var(--navy);
line-height: 1.7;
padding: 14px 16px;
border-radius: 0;
background: var(--white);
border: none;
border-bottom: 1px solid rgba(23,35,61,0.08);
transition: background .2s;
}
.check-item:last-child { border-bottom: none; }
.check-item:hover { background: var(--ecru); }
.check-list--negative .check-mark { color: #b94040; }
.check-list--warning .check-mark { color: var(--gold-text); }
.check-item-body {
display: flex;
flex-direction: column;
gap: 3px;
}
.check-item-title {
font-size: 15px;
font-weight: 600;
color: var(--navy);
line-height: 1.4;
}
.check-item-desc {
font-size: 13px;
color: var(--grey);
line-height: 1.6;
}
.check-mark {
flex-shrink: 0;
width: 20px;
display: inline-flex;
align-items: center;
justify-content: center;
background: none;
color: var(--gold);
margin-top: 2px;
} .process-list-timeline {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-top: 48px;
max-width: 100%;
}
.process-list-timeline.process-list-3 {
grid-template-columns: repeat(3, 1fr);
} .process-item {
display: flex;
flex-direction: column;
gap: 0;
padding: 28px;
background: var(--white);
border: 1px solid rgba(23,35,61,0.08);
border-radius: 10px;
border-right: 1px solid rgba(23,35,61,0.08);
align-items: start;
}
.process-item--last,
.process-item:last-child {
border-right: 1px solid rgba(23,35,61,0.08);
}
.process-list-timeline .process-item:not(:first-child) {
padding-left: 28px;
} .process-spine {
display: block;
margin-bottom: 16px;
} .process-connector {
display: none;
}
.process-header {
display: flex;
align-items: baseline;
gap: 14px;
margin-bottom: 16px;
padding-bottom: 14px;
border-bottom: 1px solid var(--border);
width: 100%;
}
.process-n {
font-family: var(--fh);
font-size: 32px;
font-weight: 300;
color: var(--gold);
line-height: 1;
flex-shrink: 0; background: none;
border-radius: 0;
display: block;
position: static;
margin: 0;
padding: 0;
border: none;
width: auto;
}
.process-name {
font-size: 16px;
font-weight: 600;
color: var(--navy);
line-height: 1.3;
}
.process-n {
font-size: 28px;
}
.process-body {
padding: 0;
min-width: 0;
width: 100%;
} .process-item > span.process-n ~ div {
min-width: 0;
} .process-desc {
font-size: 14px;
color: var(--navy);
opacity: 0.75;
line-height: 1.65;
margin-bottom: 10px;
}
.process-bullets {
margin: 0 0 0 14px;
padding: 0;
list-style: disc;
display: flex;
flex-direction: column;
gap: 5px;
}
.process-bullets li {
font-size: 13px;
color: var(--navy);
opacity: 0.8;
line-height: 1.55;
}
.process-footer {
margin-top: 14px;
padding-top: 12px;
border-top: 1px solid var(--border);
font-size: 12px;
color: var(--navy);
font-style: italic;
opacity: 0.6;
} .consultants-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 24px;
margin-top: 40px;
}
.consultant-card {
display: flex;
gap: 20px;
align-items: flex-start;
padding: 24px;
border: 1px solid var(--border);
border-radius: 4px;
background: var(--white);
}
.consultant-photo {
flex: 0 0 72px;
width: 72px;
height: 72px;
border-radius: 50%;
overflow: hidden;
}
.consultant-photo img {
width: 100%;
height: 100%;
object-fit: cover;
}
.consultant-photo--placeholder {
background: var(--ice);
}
.consultant-name {
font-family: var(--fh);
font-size: 16px;
font-weight: 600;
color: var(--navy);
margin-bottom: 2px;
}
.consultant-role {
font-size: 12px;
color: var(--gold);
font-weight: 600;
letter-spacing: .06em;
text-transform: uppercase;
margin-bottom: 8px;
}
.consultant-bio {
font-size: 13px;
color: var(--grey);
line-height: 1.6;
margin: 0;
} .faq-accordion {
margin-top: 32px;
display: flex;
flex-direction: column;
gap: 8px;
}
.faq-item {
background: var(--white);
border: 1px solid var(--border);
border-radius: 8px;
overflow: hidden;
transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] {
border-color: rgba(153,25,25,0.25);
box-shadow: 0 4px 20px rgba(23,35,61,0.06);
}
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-question {
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
padding: 20px 24px;
cursor: pointer;
font-family: var(--fh);
font-size: 16px;
font-weight: 500;
color: var(--navy);
line-height: 1.4;
user-select: none;
}
.faq-question:hover { background: var(--ecru); }
.faq-q-text { flex: 1; }
.faq-chevron {
flex-shrink: 0;
color: var(--gold);
transition: transform .25s cubic-bezier(0.16,1,0.3,1);
}
.faq-item[open] .faq-chevron {
transform: rotate(180deg);
}
.faq-answer {
padding: 0 24px 20px;
font-size: 14px;
color: var(--grey);
line-height: 1.8;
border-top: 1px solid var(--border);
}
.faq-answer p { margin-top: 16px; } .footer-tagline {
font-size: 12px;
letter-spacing: .15em;
text-transform: uppercase;
color: rgba(23,35,61,0.4);
margin-top: 4px;
}
.footer-social {
display: flex;
gap: 16px;
margin-top: 24px;
}
.footer-social a {
color: var(--grey);
transition: color 0.2s;
}
.footer-social a:hover {
color: var(--gold);
}  @media (max-width: 1024px) { .wrap, .wrap-sm, .container {
padding: 0 32px;
} .hero {
grid-template-columns: 1fr;
min-height: auto;
}
.hero-right {
display: none;
}
.hero-left {
padding: 140px 32px 80px;
} .pain-grid {
grid-template-columns: repeat(2, 1fr);
} .firm-types-grid {
grid-template-columns: 1fr;
} .how-we-work-grid {
grid-template-columns: 1fr;
gap: 48px;
} .services-grid {
grid-template-columns: 1fr;
} .onas-grid {
grid-template-columns: 1fr;
gap: 48px;
} .offer-categories {
grid-template-columns: 1fr;
}
.notfor-grid,
.signal-list,
.process-list-timeline,
.effects-grid,
.values-grid,
.comp-grid-6,
.contact-location {
grid-template-columns: 1fr;
} .contact-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.contact-layout {
grid-template-columns: 1fr;
gap: 40px;
}
.contact-sidebar {
position: static;
} .footer-grid {
grid-template-columns: repeat(2, 1fr);
} .blog-grid,
.blog-grid-editorial {
grid-template-columns: repeat(2, 1fr);
} .steps-grid {
grid-template-columns: repeat(2, 1fr);
} .benefits-grid {
grid-template-columns: repeat(2, 1fr);
} .usluga-content {
grid-template-columns: 1fr !important;
gap: 48px !important;
}
.usluga-sidebar-inner {
position: static !important;
} .areas-grid { grid-template-columns: repeat(3, 1fr); }
.areas-grid-5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.team-grid-5 { grid-template-columns: repeat(3, 1fr); }
.team-grid-about-full { grid-template-columns: repeat(3, 1fr); }
.competencies-grid { grid-template-columns: repeat(2, 1fr); }
.comp-grid { grid-template-columns: repeat(2, 1fr); }
.mentor-grid { grid-template-columns: repeat(3, 1fr); }
} @media (max-width: 768px) { .sec { padding: 56px 0; }
.sec-navy { padding: 64px 0; }
.sec-white, .sec-ecru, .sec-cream, .sec-ice { padding: 56px 0; } .sec h2 { font-size: clamp(24px, 6vw, 32px); } .hero-left {
padding: 110px 24px 60px;
}
.hero-h1 {
font-size: clamp(26px, 7vw, 36px);
}
.hero-lead {
font-size: 15px;
}
.hero-actions {
flex-direction: column;
gap: 12px;
}
.hero-actions .btn-gold,
.hero-actions .btn-navy,
.hero-actions .btn-outline {
width: 100%;
justify-content: center;
} .stats-strip { grid-template-columns: repeat(2, 1fr); }
.stat-col:nth-child(2) { border-right: none; }
.stat-col { border-bottom: 1px solid rgba(255,255,255,0.08); } .pain-grid { grid-template-columns: 1fr; }
.pain-card { padding: 24px; } .team-grid { grid-template-columns: 1fr; } .cases-grid { grid-template-columns: 1fr; }
.case-card { padding: 28px; } .how-we-work-grid {
grid-template-columns: 1fr !important;
gap: 40px;
}
.how-we-work-grid > .sidebar-list {
margin-top: 0;
}
.step-item {
grid-template-columns: 48px 1fr;
gap: 16px;
padding: 20px;
text-align: left;
}
.step-item:not(:last-child)::after {
left: 36px;
bottom: -10px;
height: 10px;
}
.step-content h4 { font-size: 16px; text-align: left; }
.step-content p { text-align: left; } .service-card { padding: 28px 24px; } .contact-grid {
grid-template-columns: 1fr !important;
gap: 48px;
}
.contact-form button { width: 100%; } .usluga-content {
grid-template-columns: 1fr !important;
gap: 40px !important;
}
.usluga-sidebar-inner {
position: static !important;
} .blog-grid,
.blog-grid-editorial { grid-template-columns: 1fr; } .steps-grid { grid-template-columns: 1fr; }
.benefits-grid { grid-template-columns: 1fr; } .offer-categories { grid-template-columns: 1fr; }
.offer-category { padding: 24px; } .page-hero {
padding: 32px 0 60px;
}
.page-hero h1 {
font-size: clamp(28px, 8vw, 40px);
}
.page-hero p { font-size: 16px; }
.page-hero-offer {
padding: 24px 0 64px;
}
.offer-hero-wrap {
flex-direction: column;
gap: 0;
}
.offer-hero-right {
display: none;
}
.page-hero-editorial {
padding: 40px 0 64px;
}
.page-hero-editorial .wrap {
grid-template-columns: 1fr;
gap: 32px;
}
.page-hero-editorial h1 {
font-size: clamp(28px, 8vw, 40px);
}
.page-hero-editorial p {
font-size: 17px;
max-width: 100%;
}
.page-hero-offer__content {
padding-left: 32px;
max-width: 100%;
}
.page-hero-offer h1 {
font-size: clamp(36px, 6.8vw, 56px);
max-width: 900px;
}
.page-hero-offer p {
font-size: 18px;
max-width: 560px;
} .footer-grid {
grid-template-columns: 1fr;
gap: 32px;
}
.footer-bottom {
flex-direction: column;
gap: 16px;
text-align: center;
} .cta-sec { padding: 64px 0; }
.cta-sec h2 { font-size: clamp(24px, 6vw, 30px); } .single-post .entry-header { padding: 120px 0 60px; }
.single-post .entry-content { padding: 48px 0; }
.single-post .entry-content h2 { font-size: 24px; }
.single-post .entry-content h3 { font-size: 20px; }
.single-post .entry-content p,
.single-post .entry-content li { font-size: 16px; } .areas-grid { grid-template-columns: repeat(2, 1fr); }
.areas-grid-5 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team-grid-5 { grid-template-columns: repeat(2, 1fr); }
.team-grid-about-full { grid-template-columns: repeat(2, 1fr); }
.benefits-grid { grid-template-columns: 1fr; }
.testimonials-grid { grid-template-columns: 1fr; }
.faq-layout { grid-template-columns: 1fr; gap: 32px; }
.fm-steps { grid-template-columns: 1fr; gap: 24px; }
.competencies-grid { grid-template-columns: 1fr; }
.comp-grid { grid-template-columns: 1fr; }
.mentor-grid { grid-template-columns: repeat(2, 1fr); }
.principles-grid { grid-template-columns: 1fr; }
.dlaczego-quotes { grid-template-columns: 1fr; }
.dlaczego-competencies { grid-template-columns: repeat(2, 1fr); }
.dlaczego-benefits { grid-template-columns: 1fr; }
.form-2col { grid-template-columns: 1fr; gap: 0; }
.contact-card { padding: 28px; }
.contact-row { flex-direction: column; gap: 6px; }
.contact-row-val { text-align: left; }
} @media (max-width: 480px) { .wrap, .wrap-sm, .container {
padding: 0 16px;
} .sec { padding: 44px 0; }
.sec-navy { padding: 52px 0; }
.sec-white, .sec-ecru, .sec-cream, .sec-ice { padding: 44px 0; } .sec h2 { font-size: 22px; }
.sec-lead { font-size: 15px; }
.sec-eyebrow { font-size: 10px; letter-spacing: .2em; } .hero-left { padding: 100px 16px 48px; }
.hero-h1 { font-size: 24px; }
.hero-lead { font-size: 14px; margin-bottom: 28px; }
.hero-eyebrow { font-size: 10px; margin-bottom: 20px; }
.hero-note { font-size: 12px; } .btn-navy, .btn-gold, .btn-outline {
width: 100%;
justify-content: center;
padding: 0 20px;
height: 46px;
font-size: 11px;
} .stats-strip {
grid-template-columns: 1fr !important;
gap: 0;
padding: 32px 16px;
}
.stat-col {
padding: 24px 16px;
border-right: none;
}
.stat-n { font-size: 28px; } .pain-card { padding: 20px; }
.pain-card h3 { font-size: 15px; }
.pain-card p { font-size: 13px; } .firm-types-grid { gap: 16px; }
.firm-type-card { padding: 24px; }
.firm-type-title { font-size: 18px; }
.notfor-panel { padding: 28px 24px; }
.effect-card { padding: 24px; }
.signal-list { grid-template-columns: repeat(2, 1fr); }
.signal-item { padding: 20px 18px; }
.process-list-timeline { max-width: 100%; gap: 12px; }
.process-list-timeline .process-item { padding: 24px; }
.process-list-timeline .process-item:not(:first-child) { padding-left: 24px; } .service-card { padding: 20px; }
.service-name { font-size: 18px; }
.service-desc { font-size: 13px; }
.service-price { font-size: 18px; } .case-card { padding: 20px; }
.case-title { font-size: 18px; } .dlaczego-competencies { grid-template-columns: 1fr; }
.dlaczego-quote { padding: 24px; } .jp-tab { padding: 10px 16px; font-size: 12px; } .team-photo { width: 140px; height: 140px; }
.team-name { font-size: 18px; } .form-input, .form-textarea, .form-select {
padding: 12px 14px;
font-size: 14px;
} .signal-list { grid-template-columns: 1fr; }
.check-item { padding: 12px 14px; } .footer { padding: 48px 0 32px; }
.footer-brand { font-size: 18px; }
.footer-desc { font-size: 13px; } .page-hero { padding: 24px 0 48px; }
.page-hero h1 { font-size: 24px; }
.page-hero p { font-size: 14px; }
.page-hero-editorial {
padding: 32px 0 44px;
}
.page-hero-editorial h1 {
font-size: 24px;
line-height: 1.2;
margin-bottom: 20px;
}
.page-hero-editorial p {
font-size: 15px;
line-height: 1.75;
}
.page-hero-offer {
padding: 16px 0 44px;
}
.page-hero-offer__content {
padding-left: 0;
}
.page-hero-offer h1 {
font-size: clamp(30px, 11vw, 42px);
line-height: 1.08;
margin-bottom: 20px;
}
.page-hero-offer p {
font-size: 15px;
line-height: 1.75;
max-width: 100%;
} .accordion-question { font-size: 16px; padding: 20px 0; } .cta-sec { padding: 72px 0 56px; }
.cta-sec h2 { font-size: 22px; }
.cta-sec p { font-size: 15px; } .cta-sec .btn-gold + .btn-outline,
.cta-sec .btn-outline + .btn-gold,
.cta-sec .btn-gold + .btn-gold {
margin-left: 0;
margin-top: 16px;
} .usluga-content { gap: 32px !important; }
.usluga-sidebar-inner {
padding: 28px !important;
} .blog-card-body { padding: 20px; }
.blog-card-title { font-size: 18px; }
.blog-card-excerpt { font-size: 13px; } .nav-inner { padding: 0 16px; } .areas-grid { grid-template-columns: 1fr; }
.areas-grid-5 { grid-template-columns: 1fr; }
.team-grid-5 { grid-template-columns: 1fr; }
.team-grid-about-full { grid-template-columns: 1fr; }
.mentor-grid { grid-template-columns: 1fr; }
}  .js-animations .fade-in {
opacity: 0;
transform: translateY(24px);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.js-animations .fade-in.visible {
opacity: 1;
transform: translateY(0);
} .js-animations .fade-in.visible .fade-in {
opacity: 1;
transform: translateY(0);
}  ::-webkit-scrollbar {
width: 6px;
}
::-webkit-scrollbar-track {
background: var(--ecru);
}
::-webkit-scrollbar-thumb {
background: var(--navy);
border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
background: var(--gold);
} .breadcrumbs { background: var(--ecru); border-bottom: 1px solid var(--border); padding: 10px 48px; font-size: 12px; color: var(--grey); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; padding: 0; margin: 0; }
.breadcrumbs li::after { content: "/"; margin-left: 4px; color: var(--border); }
.breadcrumbs li:last-child::after { content: ""; }
.breadcrumbs a { color: var(--navy); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; } body.consultation-modal-open {
overflow: hidden;
}
.consultation-modal {
position: fixed;
inset: 0;
z-index: 10020;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.consultation-modal[hidden] {
display: none !important;
}
.consultation-modal__backdrop {
position: absolute;
inset: 0;
background: rgba(20, 28, 48, 0.72);
backdrop-filter: blur(4px);
}
.consultation-modal__dialog {
position: relative;
width: min(100%, 520px);
background: var(--ecru);
border: none;
border-radius: 24px;
box-shadow: 0 32px 80px rgba(20, 28, 48, 0.25);
padding: 48px 40px 40px;
overflow: hidden;
text-align: center;
}
.consultation-modal__close {
position: absolute;
top: 18px;
right: 18px;
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border: none;
border-radius: 999px;
background: rgba(23,35,61,0.08);
color: var(--navy);
font-size: 24px;
line-height: 1;
cursor: pointer;
}
.consultation-panel {
display: none;
}
.consultation-panel.is-active {
display: block;
}
.consultation-eyebrow {
font-size: 11px;
font-weight: 700;
letter-spacing: .18em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 16px;
text-align: center;
}
.consultation-title {
font-family: var(--fh);
font-size: 28px;
line-height: 1.25;
margin-bottom: 28px;
color: var(--navy);
text-align: center;
}
.consultation-copy {
color: var(--grey);
font-size: 15px;
line-height: 1.8;
margin-bottom: 28px;
text-align: center;
}
.consultation-actions,
.decision-options {
display: grid;
gap: 12px;
}
.consultation-btn,
.decision-option {
width: 100%;
min-height: 60px;
padding: 18px 24px;
border: 1px solid rgba(23,35,61,0.10);
border-radius: 16px;
font-family: var(--fb);
font-size: 15px;
font-weight: 500;
line-height: 1.4;
text-align: center;
display: inline-flex;
align-items: center;
justify-content: center;
text-decoration: none;
cursor: pointer;
transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.consultation-btn:hover,
.decision-option:hover,
.consultation-modal__close:hover {
transform: translateY(-1px);
box-shadow: 0 12px 28px rgba(20, 28, 48, 0.10);
}
.consultation-btn:focus-visible,
.decision-option:focus-visible,
.consultation-back:focus-visible,
.consultation-cancel:focus-visible,
.consultation-modal__close:focus-visible,
.mobile-menu-link:focus-visible,
.nav-hamburger:focus-visible {
outline: 2px solid var(--gold);
outline-offset: 3px;
}
.consultation-btn-primary {
background: var(--gold);
border-color: var(--gold);
color: var(--white);
font-weight: 600;
}
.consultation-btn-secondary {
background: var(--white);
border-color: rgba(23,35,61,0.12);
color: var(--navy);
font-weight: 600;
}
.consultation-btn-tertiary,
.decision-option {
background: var(--white);
color: var(--grey);
justify-content: flex-start;
}
.consultation-back {
margin-bottom: 24px;
color: var(--navy);
font-size: 13px;
font-weight: 600;
}
.consultation-cancel {
display: block;
margin: 20px auto 0;
padding: 8px 16px;
background: none;
border: none;
color: var(--grey);
font-size: 14px;
font-family: var(--fb);
text-decoration: underline;
text-underline-offset: 3px;
cursor: pointer;
transition: color .15s;
}
.consultation-cancel:hover {
color: var(--navy);
}
.consultation-badges {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-top: 24px;
}
.consultation-badges span {
display: inline-flex;
align-items: center;
padding: 8px 12px;
font-size: 12px;
color: var(--navy);
background: var(--ice);
}
.consultation-badges span::before {
content: '✓';
color: var(--success);
margin-right: 8px;
}
@media (max-width: 640px) {
.consultation-modal {
padding: 12px;
align-items: flex-end;
}
.consultation-modal__dialog {
width: 100%;
padding: 36px 24px 28px;
border-radius: 24px 24px 0 0;
}
.consultation-title {
font-size: 24px;
}
.consultation-copy {
font-size: 14px;
margin-bottom: 22px;
}
}  @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;
}
.js-animations .fade-in {
opacity: 1 !important;
transform: none !important;
}
.hero-right {
transform: none !important;
}
} .pcalc {
background: var(--white);
border: 1px solid var(--border);
border-radius: 8px;
padding: 32px;
margin-top: 32px;
display: flex;
flex-direction: column;
gap: 28px;
font-family: var(--fb);
}
.pcalc-row {
display: flex;
flex-direction: column;
gap: 10px;
}
.pcalc-label {
font-size: 13px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.07em;
color: var(--navy);
opacity: 0.55;
} .pcalc-days {
display: flex;
gap: 10px;
flex-wrap: wrap;
}
.pcalc-days-btn {
padding: 10px 20px;
border: 1.5px solid var(--border);
border-radius: 4px;
background: transparent;
cursor: pointer;
font-size: 15px;
font-weight: 500;
font-family: var(--fb);
color: var(--navy);
transition: border-color 0.15s, background 0.15s, color 0.15s;
display: flex;
align-items: center;
gap: 8px;
}
.pcalc-days-btn:hover { border-color: var(--gold); }
.pcalc-days-btn.active {
border-color: var(--gold);
background: var(--gold);
color: var(--white);
}
.pcalc-promo-tag {
font-size: 11px;
font-weight: 600;
background: rgba(255,255,255,0.2);
color: var(--white);
padding: 2px 8px;
border-radius: 20px;
}
.pcalc-days-btn:not(.active) .pcalc-promo-tag {
background: var(--gold-m);
color: var(--gold-text);
} .pcalc-range {
-webkit-appearance: none;
width: 100%;
height: 4px;
border-radius: 2px;
background: var(--ice);
outline: none;
cursor: pointer;
}
.pcalc-range::-webkit-slider-thumb {
-webkit-appearance: none;
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--gold);
cursor: pointer;
border: 3px solid var(--white);
box-shadow: 0 0 0 1.5px var(--gold);
}
.pcalc-range::-moz-range-thumb {
width: 20px;
height: 20px;
border-radius: 50%;
background: var(--gold);
cursor: pointer;
border: 3px solid var(--white);
}
.pcalc-range-labels {
display: flex;
justify-content: space-between;
font-size: 12px;
color: var(--navy);
opacity: 0.4;
padding: 0 2px;
} .pcalc-result {
background: var(--navy);
border-radius: 6px;
padding: 24px 28px;
display: flex;
flex-direction: column;
gap: 6px;
}
.pcalc-result-price {
display: flex;
flex-direction: column;
gap: 4px;
}
.pcalc-result-eyebrow {
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.08em;
color: rgba(255,255,255,0.45);
}
.pcalc-result-main {
font-family: var(--fh);
font-size: 2.2rem;
font-weight: 700;
color: var(--white);
line-height: 1.1;
}
.pcalc-result-sub {
font-size: 13px;
color: rgba(255,255,255,0.55);
margin-top: 2px;
min-height: 1.2em;
}
.pcalc-result-note {
font-size: 12px;
color: rgba(255,255,255,0.4);
margin: 0;
line-height: 1.5;
} .pcalc-cards {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 12px;
margin-top: 4px;
}
.pcalc-card {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
padding: 24px 16px 20px;
border: 2px solid var(--border);
border-radius: 8px;
background: var(--white);
cursor: pointer;
transition: border-color 0.15s, background 0.15s, transform 0.1s;
gap: 6px;
}
.pcalc-card:hover {
border-color: rgba(23,35,61,0.3);
transform: translateY(-2px);
}
.pcalc-card.active {
border-color: var(--navy);
background: var(--navy);
}
.pcalc-card-label {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.08em;
color: var(--muted);
}
.pcalc-card.active .pcalc-card-label { color: rgba(255,255,255,0.5); }
.pcalc-card-price {
font-family: var(--fh);
font-size: 1.35rem;
font-weight: 700;
color: var(--navy);
line-height: 1.1;
margin-top: 4px;
}
.pcalc-card.active .pcalc-card-price { color: var(--white); }
.pcalc-card-per {
font-size: 12px;
color: var(--muted);
}
.pcalc-card.active .pcalc-card-per { color: rgba(255,255,255,0.55); }
.pcalc-card-save {
font-size: 11px;
font-weight: 700;
color: var(--gold);
margin-top: 4px;
padding: 3px 8px;
background: rgba(153,25,25,0.08);
border-radius: 20px;
}
.pcalc-card.active .pcalc-card-save {
background: rgba(255,255,255,0.15);
color: #ffc0c0;
}
.pcalc-cards-note {
font-size: 12px;
color: var(--muted);
margin-top: 16px;
margin-bottom: 0;
}
@media (max-width: 560px) {
.pcalc-cards { grid-template-columns: 1fr; }
} .pcalc-select {
width: 100%;
padding: 12px 16px;
border: 1.5px solid var(--border);
border-radius: 4px;
font-size: 15px;
font-family: var(--fb);
color: var(--navy);
background: var(--white);
cursor: pointer;
appearance: none;
-webkit-appearance: none;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 14px center;
}
.pcalc-select:focus { outline: none; border-color: var(--gold); } .pcalc-program-steps { display: flex; flex-direction: column; gap: 8px; }
.pcalc-program-row {
display: flex;
align-items: center;
gap: 12px;
padding: 14px 16px;
border: 1.5px solid var(--border);
border-radius: 4px;
cursor: pointer;
transition: border-color 0.15s, background 0.15s;
background: var(--white);
}
.pcalc-program-row:has(input:checked) {
border-color: var(--gold);
background: var(--gold-m);
}
.pcalc-program-row:has(input:disabled) { opacity: 0.65; cursor: default; }
.pcalc-program-check {
accent-color: var(--gold);
width: 16px;
height: 16px;
flex-shrink: 0;
}
.pcalc-program-label {
flex: 1;
font-size: 14px;
font-weight: 500;
color: var(--navy);
}
.pcalc-program-price {
font-size: 14px;
font-weight: 700;
font-family: var(--fh);
color: var(--gold-text);
white-space: nowrap;
} @media (max-width: 600px) {
.pcalc { padding: 20px 16px; }
.pcalc-result { flex-direction: column; align-items: flex-start; gap: 16px; }
.pcalc-result-main { font-size: 1.5rem; }
.pcalc-result-note { max-width: 100%; }
.pcalc-days-btn { padding: 8px 14px; font-size: 14px; }
} .pcalc-section {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 56px;
align-items: stretch;
}
.pcalc-section-header {
display: flex;
flex-direction: column;
}
.pcalc-section-header .sec-eyebrow { margin-bottom: 12px; }
.pcalc-section-header h2 { margin-bottom: 16px; }
.pcalc-section-header .sec-lead { margin-bottom: 0; } .pcalc-section-header .pricing-tiers { margin-top: 24px; }
.pcalc-section-header .pricing-tier-row { padding: 14px 18px; margin-bottom: 8px; }
.pcalc-section-header .pricing-footer-copy { margin-top: auto; padding-top: 20px; font-size: 13px; color: var(--muted); }
.pcalc-section .pcalc { margin-top: 0; }
@media (max-width: 860px) {
.pcalc-section {
grid-template-columns: 1fr;
gap: 24px;
}
.pcalc-section-header { display: block; }
} .cta-inline-form-wrap {
max-width: 900px;
margin: 40px auto 0;
}
.cta-inline-form {
background: rgba(255,255,255,0.05);
border: 1px solid rgba(255,255,255,0.15);
border-radius: 8px;
padding: 32px;
}
.cta-form-fields {
display: grid;
grid-template-columns: 1fr 1fr 1fr auto;
gap: 16px;
align-items: start;
}
.cta-form-group {
position: relative;
}
.cta-form-input {
width: 100%;
padding: 14px 18px;
font-size: 15px;
font-family: var(--fb);
color: var(--navy);
background: var(--white);
border: 2px solid transparent;
border-radius: 4px;
transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-form-input::placeholder {
color: #8a94a6;
}
.cta-form-input:focus {
outline: none;
border-color: var(--gold);
box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
}
.cta-form-input:invalid:not(:placeholder-shown) {
border-color: #dc3545;
}
.cta-form-btn {
white-space: nowrap;
padding: 14px 28px;
font-size: 15px;
height: 100%;
}
.cta-form-consent {
display: flex;
align-items: flex-start;
gap: 10px;
margin-top: 20px;
cursor: pointer;
text-align: left;
}
.cta-form-consent input[type="checkbox"] {
margin-top: 2px;
flex-shrink: 0;
width: 16px;
height: 16px;
accent-color: var(--gold);
}
.cta-form-consent span {
font-size: 13px;
color: rgba(255,255,255,0.6);
line-height: 1.5;
}
.cta-note a {
color: var(--white);
text-decoration: underline;
text-underline-offset: 2px;
font-weight: 600;
}
.cta-note a:hover {
color: var(--gold);
} @media (max-width: 900px) {
.cta-form-fields {
grid-template-columns: 1fr 1fr;
}
.cta-form-group-btn {
grid-column: 1 / -1;
}
.cta-form-btn {
width: 100%;
justify-content: center;
}
} @media (max-width: 600px) {
.cta-inline-form {
padding: 24px 20px;
}
.cta-form-fields {
grid-template-columns: 1fr;
}
.cta-form-input {
padding: 12px 14px;
font-size: 14px;
}
.cta-form-btn {
padding: 14px 20px;
}
} .sticky-cta {
position: fixed;
bottom: 24px;
right: 24px;
display: inline-flex;
align-items: center;
gap: 8px;
padding: 14px 24px;
background: var(--gold);
color: #fff;
font-weight: 600;
font-size: 15px;
text-decoration: none;
border-radius: 50px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
z-index: 9998;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
}
.sticky-cta.is-visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.sticky-cta:hover,
.sticky-cta:focus {
background: var(--navy);
color: #fff;
transform: translateY(-2px);
box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}
.sticky-cta__icon {
flex-shrink: 0;
transition: transform 0.2s ease;
}
.sticky-cta:hover .sticky-cta__icon {
transform: translateX(4px);
} @media (max-width: 768px) {
.sticky-cta {
bottom: 0;
left: 0;
right: 0;
border-radius: 0;
justify-content: center;
padding: 16px 24px;
font-size: 16px;
}
.sticky-cta:hover,
.sticky-cta:focus {
transform: translateY(0);
}
} body.has-cookie-banner .sticky-cta {
bottom: 90px;
}
@media (max-width: 768px) {
body.has-cookie-banner .sticky-cta {
bottom: 70px;
}
} .mentoring-selector {
display: flex;
flex-direction: column;
gap: 24px;
}
.selector-group {
display: flex;
flex-direction: column;
gap: 12px;
}
.selector-label {
font-weight: 600;
font-size: 14px;
color: var(--navy);
text-transform: uppercase;
letter-spacing: 0.02em;
}
.selector-options {
display: flex;
flex-direction: column;
gap: 8px;
}
.selector-options--mentors {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 8px;
}
.selector-card {
position: relative;
display: block;
background: var(--ice);
border: 2px solid transparent;
border-radius: 8px;
padding: 16px;
cursor: pointer;
transition: all 0.2s ease;
}
.selector-card input[type="radio"] {
position: absolute;
opacity: 0;
pointer-events: none;
}
.selector-card:hover {
border-color: var(--gold);
background: var(--white);
}
.selector-card.is-selected {
border-color: var(--gold);
background: var(--white);
box-shadow: 0 2px 8px rgba(191, 155, 48, 0.15);
}
.selector-card.is-selected::after {
content: '';
position: absolute;
top: 12px;
right: 12px;
width: 20px;
height: 20px;
background: var(--gold);
border-radius: 50%;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: center;
}
.selector-card-content {
display: flex;
flex-direction: column;
gap: 4px;
padding-right: 28px;
}
.selector-card--mentor .selector-card-content {
padding-right: 0;
}
.selector-card strong {
font-weight: 600;
color: var(--navy);
font-size: 15px;
}
.selector-price {
font-size: 13px;
color: var(--text);
opacity: 0.8;
}
.selector-card--mentor .selector-card-content {
font-size: 14px;
color: var(--navy);
font-weight: 500;
text-align: center;
}
@media (max-width: 640px) {
.selector-options--mentors {
grid-template-columns: 1fr;
}
} .pricing-how-to-start {
background: var(--ice);
border-radius: 8px;
padding: 24px;
margin-top: 32px;
margin-bottom: 24px;
}
.pricing-how-to-start h3 {
font-size: 20px;
font-weight: 600;
color: var(--navy);
margin: 0 0 16px 0;
}
.pricing-steps {
list-style: none;
counter-reset: step-counter;
margin: 0 0 16px 0;
padding: 0;
}
.pricing-steps li {
counter-increment: step-counter;
position: relative;
padding-left: 36px;
margin-bottom: 12px;
font-size: 15px;
line-height: 1.6;
color: var(--text);
}
.pricing-steps li::before {
content: counter(step-counter);
position: absolute;
left: 0;
top: 0;
width: 24px;
height: 24px;
background: var(--gold);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 13px;
font-weight: 600;
}
.pricing-note {
font-size: 14px;
color: var(--text);
opacity: 0.7;
margin: 0;
font-style: italic;
}