/*
Theme Name: 4Page
Theme URI: https://dkmont.pl
Author: dkmont
Author URI: https://dkmont.pl
Description: Własny szablon dla dkmont.pl - usługi przemysłowe, relokacja maszyn
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: 4page
*/

/* ==============================
   RESET & BASE
============================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --color-navy: #111e3c;
    --color-navy-dark: #0a1428;
    --color-navy-light: #1a2f5e;
    --color-accent: #fcb01d;
    --color-accent-dark: #e09a10;
    --color-white: #ffffff;
    --color-light: #f5f6f8;
    --color-gray: #e0e0e0;
    --color-text: #2c2c2c;
    --color-text-muted: #666666;
    --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
    --transition: 0.3s ease;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --radius: 4px;
    --radius-lg: 8px;
    --max-width: 1200px;
    --header-height: 80px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-white);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Globalny rozmiar ikon SVG – zapobiega wyświetlaniu jako olbrzymi element */
svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Wyjątki z jawnie ustawioną szerokością/wysokością traktujemy inaczej */
img svg { width: auto; height: auto; }

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

.section--light {
    background: var(--color-light);
}

.section--dark {
    background: var(--color-navy);
    color: var(--color-white);
}

.section__header {
    text-align: center;
    margin-bottom: 56px;
}

.section__eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.section__title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.section--dark .section__title {
    color: var(--color-white);
}

.section__subtitle {
    font-size: 17px;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section--dark .section__subtitle {
    color: rgba(255,255,255,0.7);
}

/* ==============================
   BUTTONS
============================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-navy);
    border-color: var(--color-accent);
}

.btn--primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 176, 29, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--outline:hover {
    background: var(--color-white);
    color: var(--color-navy);
}

.btn--navy {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.btn--navy:hover {
    background: var(--color-navy-dark);
    border-color: var(--color-navy-dark);
    transform: translateY(-2px);
}

/* ==============================
   HEADER / NAVIGATION
============================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--color-navy);
    height: var(--header-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: all var(--transition);
}

.site-header.scrolled {
    height: 64px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.site-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo img {
    height: 48px;
    width: auto;
    transition: height var(--transition);
}

.site-header.scrolled .site-logo img {
    height: 40px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.main-nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav__item {
    position: relative;
}

.main-nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all var(--transition);
}

.main-nav__link:hover,
.main-nav__item.current-menu-item > .main-nav__link,
.main-nav__item.current-menu-ancestor > .main-nav__link {
    color: var(--color-accent);
    background: rgba(252, 176, 29, 0.1);
}

.main-nav__link .arrow {
    width: 14px;
    height: 14px;
    fill: currentColor;
    transition: transform var(--transition);
}

.main-nav__item:hover .arrow {
    transform: rotate(180deg);
}

/* Dropdown */
.main-nav__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 260px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all var(--transition);
    border-top: 3px solid var(--color-accent);
    overflow: hidden;
}

.main-nav__item:hover .main-nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav__dropdown-item a {
    display: block;
    padding: 11px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition);
    border-bottom: 1px solid var(--color-gray);
}

.main-nav__dropdown-item:last-child a {
    border-bottom: none;
}

.main-nav__dropdown-item a:hover {
    background: var(--color-light);
    color: var(--color-accent);
    padding-left: 28px;
}

.nav-contact-btn {
    margin-left: 16px;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==============================
   HERO SECTION
============================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: var(--color-navy);
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,30,60,0.92) 40%, rgba(17,30,60,0.6) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--color-accent);
}

.hero__title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 24px;
}

.hero__title span {
    color: var(--color-accent);
}

.hero__text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

.hero__scroll svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Page Hero (for inner pages) */
.page-hero {
    position: relative;
    padding: calc(var(--header-height) + 60px) 0 60px;
    background: var(--color-navy);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--color-navy) 60%, var(--color-navy-light) 100%);
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.page-hero__content {
    position: relative;
    z-index: 1;
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}

.page-hero__breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.page-hero__breadcrumb a:hover {
    color: var(--color-accent);
}

.page-hero__breadcrumb span {
    color: var(--color-accent);
}

.page-hero__title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    max-width: 600px;
}

/* ==============================
   SERVICES SECTION (Homepage)
============================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--color-gray);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: rgba(252, 176, 29, 0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 1.8;
}

.service-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card__text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: gap var(--transition);
}

.service-card__link svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform var(--transition);
}

.service-card:hover .service-card__link svg {
    transform: translateX(4px);
}

/* ==============================
   ABOUT SECTION
============================== */
.about-section {
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image__badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--color-accent);
    color: var(--color-navy);
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 14px;
    line-height: 1.3;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-image__badge strong {
    display: block;
    font-size: 32px;
    line-height: 1;
}

.about-content .section__eyebrow {
    text-align: left;
}

.about-content h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--color-navy);
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
}

.about-feature svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--color-accent);
    stroke-width: 2.5;
    flex-shrink: 0;
}

/* ==============================
   STATS SECTION
============================== */
.stats-section {
    background: var(--color-navy);
    padding: 64px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item {
    padding: 16px;
}

.stat-item__number {
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item__label {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ==============================
   CTA SECTION
============================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==============================
   SERVICE SINGLE PAGE
============================== */
.service-content {
    padding: 80px 0;
}

.service-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

.service-main h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-navy);
    margin: 40px 0 16px;
}

.service-main h2:first-child {
    margin-top: 0;
}

.service-main p {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

.service-main ul {
    margin: 16px 0 24px 0;
}

.service-main ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.service-main ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.service-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 40px 0;
}

.service-gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform var(--transition);
}

.service-gallery img:hover {
    transform: scale(1.02);
}

/* Service Features */
.service-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 32px 0;
}

.service-feature-card {
    background: var(--color-light);
    padding: 24px;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent);
}

.service-feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.service-feature-card p {
    font-size: 13px;
    color: var(--color-text-muted);
    margin: 0;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.sidebar-widget {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    border: 1px solid var(--color-gray);
}

.sidebar-widget__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
}

.sidebar-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.sidebar-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.sidebar-contact-item span {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
}

.sidebar-contact-item a {
    color: var(--color-navy);
    font-weight: 600;
    transition: color var(--transition);
}

.sidebar-contact-item a:hover {
    color: var(--color-accent);
}

.sidebar-services-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-services-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--color-text);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.sidebar-services-list a:hover,
.sidebar-services-list a.active {
    background: rgba(252,176,29,0.1);
    color: var(--color-navy);
    border-color: rgba(252,176,29,0.3);
    padding-left: 16px;
}

.sidebar-services-list a svg {
    width: 14px;
    height: 14px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 2.5;
    opacity: 0;
    transition: opacity var(--transition);
}

.sidebar-services-list a:hover svg,
.sidebar-services-list a.active svg {
    opacity: 1;
}

/* ==============================
   CONTACT PAGE
============================== */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 16px;
}

.contact-info__text {
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(252,176,29,0.12);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 1.8;
}

.contact-detail-item__text label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-detail-item__text a,
.contact-detail-item__text p {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-navy);
    transition: color var(--transition);
    margin: 0;
}

.contact-detail-item__text a:hover {
    color: var(--color-accent);
}

/* Contact Form */
.contact-form-wrap {
    background: var(--color-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-wrap h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--color-gray);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-main);
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.map-section {
    margin-top: 60px;
}

.map-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: none;
}

/* ==============================
   ABOUT PAGE
============================== */
.about-page-section {
    padding: 80px 0;
}

.about-page-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-page-intro h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 20px;
}

.about-page-intro p {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 60px;
}

.value-card {
    text-align: center;
    padding: 36px 28px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
}

.value-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(252,176,29,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card__icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 1.8;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ==============================
   FOOTER
============================== */
.site-footer {
    background: var(--color-navy-dark);
    color: rgba(255,255,255,0.75);
}

.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand img {
    height: 44px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--color-accent);
    font-weight: bold;
    font-size: 16px;
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-accent);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.55);
    transition: color var(--transition);
}

.footer-contact-item a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

/* ==============================
   BREADCRUMB
============================== */
.breadcrumb {
    background: var(--color-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray);
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.breadcrumb ol li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
}

.breadcrumb ol li:not(:last-child)::after {
    content: '/';
    color: var(--color-gray);
}

.breadcrumb ol li a {
    color: var(--color-navy);
    font-weight: 500;
    transition: color var(--transition);
}

.breadcrumb ol li a:hover {
    color: var(--color-accent);
}

.breadcrumb ol li.current {
    color: var(--color-accent);
    font-weight: 600;
}

/* ==============================
   UTILITIES
============================== */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-navy { color: var(--color-navy); }

.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
}

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image img {
        height: 360px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        position: static;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }

    .section {
        padding: 56px 0;
    }

    .main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: var(--color-navy);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        border-top: 1px solid rgba(255,255,255,0.1);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-nav__link {
        padding: 12px 16px;
        font-size: 15px;
        justify-content: space-between;
    }

    .main-nav__dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        background: rgba(255,255,255,0.05);
        display: none;
    }

    .main-nav__item.open .main-nav__dropdown {
        display: block;
    }

    .main-nav__dropdown-item a {
        color: rgba(255,255,255,0.75);
        border-bottom-color: rgba(255,255,255,0.05);
        padding-left: 32px;
    }

    .main-nav__dropdown-item a:hover {
        background: rgba(255,255,255,0.05);
        color: var(--color-accent);
    }

    .nav-contact-btn {
        margin: 12px 0 0;
    }

    .nav-toggle {
        display: flex;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .service-gallery {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__actions {
        flex-direction: column;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrap {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   TEMPLATE UNIWERSALNY: PODSTRONA USŁUGI (.srv-*)
   ============================================================ */

/* ── 1. HERO ── */
.srv-hero {
    position: relative;
    background: var(--color-navy);
    color: var(--color-white);
    padding: calc(var(--header-height) + 72px) 0 72px;
    overflow: hidden;
}

.srv-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,30,60,0.94) 0%, rgba(17,30,60,0.72) 100%);
    z-index: 1;
}

.srv-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.srv-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.srv-hero .container,
.srv-hero__breadcrumb {
    position: relative;
    z-index: 2;
}

.srv-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.srv-hero__breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition);
}

.srv-hero__breadcrumb a:hover { color: var(--color-accent); }

.srv-hero__content { max-width: 760px; }

.srv-hero__title {
    font-size: clamp(26px, 3.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: 18px;
}

.srv-hero__title span { color: var(--color-accent); }

.srv-hero__subtitle {
    font-size: clamp(14px, 1.5vw, 17px);
    color: rgba(255,255,255,0.8);
    line-height: 1.65;
    max-width: 600px;
    margin-bottom: 32px;
}

/* ── PASEK KONTAKTOWY ── */
.srv-contact-ribbon {
    background: var(--color-navy);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.srv-contact-ribbon__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
}

.srv-contact-ribbon__items {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.srv-contact-ribbon__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    padding: 6px 20px;
    border-right: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
    white-space: nowrap;
}

.srv-contact-ribbon__item:first-child { padding-left: 0; }
.srv-contact-ribbon__item:last-child  { border-right: none; }

.srv-contact-ribbon__item svg {
    color: var(--color-accent);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

a.srv-contact-ribbon__item:hover {
    color: var(--color-white);
}

/* ── NAWIGACJA USŁUG – chipy ── */
.srv-services-nav {
    background: var(--color-light);
    border-bottom: 1px solid var(--color-gray);
}

.srv-services-nav__wrap {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

.srv-services-nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    min-width: 0;
}

.srv-services-nav__list::-webkit-scrollbar { display: none; }

.srv-services-nav__arrow {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--color-gray);
    background: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--color-navy);
}

.srv-services-nav__arrow:hover {
    background: var(--color-navy);
    border-color: var(--color-navy);
    color: var(--color-white);
}

.srv-services-nav__arrow svg {
    width: 14px;
    height: 14px;
    pointer-events: none;
}

.srv-services-nav__arrow--prev svg {
    transform: rotate(180deg);
}

.srv-services-nav__chip {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: var(--color-text-muted);
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    transition: var(--transition);
    flex-shrink: 0;
}

.srv-services-nav__chip:hover {
    color: var(--color-navy);
    border-color: var(--color-navy);
}

.srv-services-nav__chip--active {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

/* ── 2. OPIS USŁUGI – 2 kolumny ── */
.srv-description {
    padding: 64px 0;
    background: var(--color-white);
}

.srv-description__grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
}

.srv-description__content {
    line-height: 1.8;
}

.srv-description__content p { margin-bottom: 18px; color: var(--color-text); }
.srv-description__content p:last-child { margin-bottom: 0; }
.srv-description__content h2,
.srv-description__content h3 {
    color: var(--color-navy);
    margin: 28px 0 12px;
}
.srv-description__content ul,
.srv-description__content ol {
    padding-left: 20px;
    margin-bottom: 18px;
}
.srv-description__content li { margin-bottom: 6px; }
.srv-description__content strong { color: var(--color-navy); }

/* karta akcji */
.srv-action-card {
    position: sticky;
    top: calc(var(--header-height) + 20px);
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.srv-action-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(252,176,29,0.1);
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 10px;
    border-radius: 40px;
    margin-bottom: 16px;
}

.srv-action-card__badge svg {
    width: 12px;
    height: 12px;
    color: var(--color-accent);
}

.srv-action-card__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 10px;
    line-height: 1.25;
}

.srv-action-card__text {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.srv-action-card__phone,
.srv-action-card__mail {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 12px 14px;
    margin-top: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--color-gray);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-navy);
    text-decoration: none;
    transition: var(--transition);
    background: var(--color-light);
}

.srv-action-card__phone { font-size: 16px; font-weight: 700; }

.srv-action-card__phone:hover,
.srv-action-card__mail:hover {
    border-color: var(--color-navy);
    background: var(--color-navy);
    color: var(--color-white);
}

.srv-action-card__phone svg,
.srv-action-card__mail svg {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.srv-action-card__phone:hover svg,
.srv-action-card__mail:hover svg {
    color: var(--color-accent);
}

.srv-action-card__divider {
    height: 1px;
    background: var(--color-gray);
    margin: 20px 0;
}

.srv-action-card__facts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srv-action-card__facts li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.srv-action-card__facts svg {
    color: var(--color-accent);
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── 3. ZAKRES ── */
.srv-scope__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.srv-scope__card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 28px 22px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.srv-scope__card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(252,176,29,0.4);
    transform: translateY(-2px);
}

.srv-scope__num {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: rgba(252,176,29,0.2);
    line-height: 1;
    margin-bottom: 10px;
    font-family: monospace;
}

.srv-scope__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.4;
}

.srv-scope__text {
    font-size: 12px;
    color: rgba(255,255,255,0.58);
    line-height: 1.6;
}

/* ── 4. WYRÓŻNIKI ── */
.srv-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.srv-feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
}

.srv-feature-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.srv-feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(252,176,29,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.srv-feature-card__icon svg {
    color: var(--color-accent);
    width: 22px;
    height: 22px;
}

.srv-feature-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
}

.srv-feature-card__desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ── 5. KORZYŚCI ── */
.srv-benefits__wrap {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 64px;
    align-items: start;
}

.srv-benefits__list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
}

.srv-benefits__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.5;
}

.srv-benefits__item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 2px;
}

/* ── 6. PROCES REALIZACJI ── */
.srv-process__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2px;
    margin-top: 48px;
    position: relative;
}

.srv-process__step {
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: var(--radius);
    padding: 28px 20px;
    position: relative;
    transition: var(--transition);
}

.srv-process__step:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow);
}

.srv-process__step-num {
    font-size: 44px;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.22;
    line-height: 1;
    margin-bottom: 10px;
    font-family: monospace;
}

.srv-process__step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.srv-process__step-desc {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.srv-process__arrow {
    position: absolute;
    right: -14px;
    top: 28px;
    z-index: 2;
    color: var(--color-accent);
    display: flex;
}

/* ── 7. GALERIA ── */
.srv-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 48px;
}

.srv-gallery__item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    aspect-ratio: 4/3;
    border: none;
    padding: 0;
    cursor: pointer;
    background: var(--color-navy);
}

.srv-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
    display: block;
}

.srv-gallery__item:hover img {
    transform: scale(1.06);
    opacity: 0.75;
}

.srv-gallery__zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.srv-gallery__zoom svg {
    width: 36px;
    height: 36px;
    color: var(--color-white);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

.srv-gallery__item:hover .srv-gallery__zoom { opacity: 1; }

/* ── LIGHTBOX ── */
.lb-overlay {
    display: none;  /* domyślnie ukryty – nie używamy atrybutu hidden */
}

.lb-overlay.lb-open {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.lb-stage {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.lb-img {
    max-width: 100%;
    max-height: calc(100vh - 160px);
    object-fit: contain;
    border-radius: var(--radius);
    transition: opacity 0.25s ease;
    display: block;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.lb-loader {
    position: absolute;
    width: 36px;
    height: 36px;
    border: 3px solid rgba(255,255,255,0.15);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: lb-spin 0.7s linear infinite;
    display: none;
}

@keyframes lb-spin { to { transform: rotate(360deg); } }

/* strzałki */
.lb-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    margin: 0 12px;
}

.lb-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-navy);
}

.lb-arrow:disabled {
    opacity: 0.2;
    pointer-events: none;
}

.lb-arrow svg {
    width: 22px;
    height: 22px;
    pointer-events: none;
}

/* przycisk zamknij */
.lb-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.4);
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
    z-index: 2;
}

.lb-close:hover {
    background: #e53e3e;
    border-color: #e53e3e;
}

.lb-close svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

/* licznik */
.lb-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.4);
    padding: 4px 12px;
    border-radius: 40px;
    white-space: nowrap;
}

/* ── responsywność galerii i lightboxa ── */
@media (max-width: 1100px) {
    .srv-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .lb-overlay  { padding: 50px 8px 40px; }
    .lb-arrow    { width: 40px; height: 40px; margin: 0 4px; }
    .lb-arrow svg { width: 18px; height: 18px; }
    .lb-img      { max-height: calc(100vh - 120px); }
}

@media (max-width: 480px) {
    .srv-gallery__grid { grid-template-columns: repeat(2, 1fr); }
    .lb-arrow { display: none; }
}

/* ── 8. CTA ── */
.srv-cta { background: var(--color-light); }

.srv-cta__box {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.srv-cta__box::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(252,176,29,0.05);
    pointer-events: none;
}

.srv-cta__title {
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 14px;
    line-height: 1.25;
}

.srv-cta__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    max-width: 520px;
    margin-bottom: 28px;
}

.srv-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.srv-cta__contact-inline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.srv-cta__contact-inline > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
}

.srv-cta__contact-inline svg { color: var(--color-accent); width: 16px; height: 16px; }

.srv-cta__contact-inline a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.srv-cta__contact-inline a:hover { color: var(--color-accent); }

.srv-cta__badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
}

.srv-cta__badge-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(252,176,29,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.srv-cta__badge-icon svg {
    color: rgba(252,176,29,0.3);
    width: 36px;
    height: 36px;
}

/* ── RESPONSYWNOŚĆ ── */
@media (max-width: 1100px) {
    .srv-scope__grid        { grid-template-columns: repeat(2, 1fr); }
    .srv-features__grid     { grid-template-columns: repeat(2, 1fr); }
    .srv-gallery__grid      { grid-template-columns: repeat(3, 1fr); }
    .srv-cta__box           { padding: 40px 40px; }
    .srv-cta__badge         { display: none; }
    .srv-benefits__wrap     { grid-template-columns: 1fr; gap: 32px; }
    .srv-description__grid  { grid-template-columns: 1fr 280px; gap: 32px; }
}

@media (max-width: 900px) {
    .srv-description__grid  { grid-template-columns: 1fr; }
    .srv-description__action-card { order: -1; }
    .srv-action-card        { position: static; }
    .srv-contact-ribbon__items { gap: 0; }
    .srv-contact-ribbon__item--text { display: none; }
}

@media (max-width: 768px) {
    .srv-scope__grid        { grid-template-columns: 1fr; }
    .srv-features__grid     { grid-template-columns: 1fr; }
    .srv-gallery__grid      { grid-template-columns: repeat(2, 1fr); }
    .srv-benefits__list     { grid-template-columns: 1fr; }
    .srv-process__arrow     { display: none; }
    .srv-cta__box           { padding: 28px 24px; }
    .srv-contact-ribbon__inner { flex-direction: column; gap: 12px; }
    .srv-contact-ribbon__items { flex-wrap: nowrap; overflow-x: auto; width: 100%; }
    .srv-contact-ribbon__item  { padding: 6px 12px; }
    .srv-contact-ribbon__item--text { display: flex; }
}

@media (max-width: 480px) {
    .srv-gallery__grid  { grid-template-columns: 1fr 1fr; }
    .srv-hero__title    { font-size: 24px; }
}

/* ============================================================
   TEMPLATE: RELOKACJA MASZYN I LINII PRODUKCYJNYCH
   ============================================================ */

/* ── SEKCJA 1: HERO ── */
.relokacja-hero {
    position: relative;
    background: var(--color-navy);
    color: var(--color-white);
    padding: calc(var(--header-height) + 80px) 0 80px;
    overflow: hidden;
}

.relokacja-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(17,30,60,0.92) 0%, rgba(17,30,60,0.75) 100%);
    z-index: 1;
}

.relokacja-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.relokacja-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.relokacja-hero .container,
.relokacja-hero .page-hero__breadcrumb {
    position: relative;
    z-index: 2;
}

.relokacja-hero__content {
    max-width: 800px;
}

.relokacja-hero__title {
    font-size: clamp(28px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin: 16px 0 20px;
    color: var(--color-white);
}

.relokacja-hero__title span {
    color: var(--color-accent);
}

.relokacja-hero__subtitle {
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255,255,255,0.82);
    line-height: 1.6;
    max-width: 660px;
    margin-bottom: 32px;
}

.relokacja-hero__usps {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.relokacja-usp {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    backdrop-filter: blur(4px);
}

.relokacja-usp svg {
    color: var(--color-accent);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.relokacja-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn--outline-white {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: var(--radius);
    padding: 14px 28px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn--outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

/* ── SEKCJA 2: WPROWADZENIE ── */
.relokacja-intro__grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 64px;
    align-items: start;
}

.prose p {
    margin-bottom: 16px;
    color: var(--color-text);
    line-height: 1.75;
}

.prose p:last-child {
    margin-bottom: 0;
}

.relokacja-intro__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.relokacja-stat {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 28px 20px;
    text-align: center;
}

.relokacja-stat__num {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 6px;
}

.relokacja-stat__label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── SEKCJA 3: NA CZYM POLEGA ── */
.relokacja-process__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 48px;
}

.relokacja-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
}

.relokacja-flow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
}

.relokacja-flow__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.relokacja-flow__icon svg {
    color: var(--color-accent);
    width: 24px;
    height: 24px;
}

.relokacja-flow__label {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    color: var(--color-navy);
    max-width: 72px;
    line-height: 1.3;
}

.relokacja-flow__arrow {
    display: flex;
    align-items: center;
    padding: 0 4px;
    padding-bottom: 28px;
}

.relokacja-flow__arrow svg {
    color: var(--color-accent);
    width: 20px;
    height: 20px;
}

/* ── SEKCJA 4: ZAKRES PRAC ── */
.section--navy {
    background: var(--color-navy);
}

.section__header--light .section__title {
    color: var(--color-white);
}

.section__eyebrow--accent {
    color: var(--color-accent);
    background: rgba(252,176,29,0.1);
    border-color: rgba(252,176,29,0.3);
}

.relokacja-scope__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.relokacja-scope__card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 28px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.relokacja-scope__card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(252,176,29,0.35);
    transform: translateY(-2px);
}

.relokacja-scope__num {
    font-size: 40px;
    font-weight: 800;
    color: rgba(252,176,29,0.2);
    line-height: 1;
    margin-bottom: 12px;
    font-family: monospace;
}

.relokacja-scope__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 10px;
    line-height: 1.4;
}

.relokacja-scope__desc {
    font-size: 13px;
    color: rgba(255,255,255,0.62);
    line-height: 1.6;
}

/* ── SEKCJA 5: DLACZEGO DKMONT ── */
.relokacja-reasons__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.relokacja-reason {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray);
    transition: var(--transition);
}

.relokacja-reason:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.relokacja-reason__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--radius);
    background: rgba(252,176,29,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.relokacja-reason__icon svg {
    color: var(--color-accent);
    width: 22px;
    height: 22px;
}

.relokacja-reason__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 6px;
}

.relokacja-reason__desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ── SEKCJA 6: DLA KOGO ── */
.relokacja-forwho__grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: start;
}

.relokacja-forwho__list {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.relokacja-forwho__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--color-text);
}

.relokacja-forwho__list svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
    width: 16px;
    height: 16px;
}

.relokacja-industries__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.relokacja-forwho__industries {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 32px;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-gray);
}

.relokacja-industry-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-navy);
    padding: 10px 14px;
    background: var(--color-white);
    border-radius: var(--radius);
    border: 1px solid var(--color-gray);
}

.relokacja-industry-tag svg {
    color: var(--color-accent);
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

/* ── SEKCJA 7: PROCES WSPÓŁPRACY ── */
.relokacja-steps__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2px;
    margin-top: 48px;
    counter-reset: steps;
}

.relokacja-step {
    padding: 32px 24px;
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: var(--radius);
    position: relative;
    transition: var(--transition);
}

.relokacja-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -14px;
    top: 32px;
    color: var(--color-accent);
    font-size: 20px;
    font-weight: 700;
    z-index: 2;
}

.relokacja-step:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow);
}

.relokacja-step__num {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-accent);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 12px;
    font-family: monospace;
}

.relokacja-step__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 8px;
    line-height: 1.3;
}

.relokacja-step__desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ── SEKCJA 8: CTA ── */
.relokacja-cta {
    background: var(--color-white);
}

.relokacja-cta__box {
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-light) 100%);
    border-radius: var(--radius-lg);
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.relokacja-cta__box::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(252,176,29,0.06);
    pointer-events: none;
}

.relokacja-cta__title {
    font-size: clamp(22px, 2.5vw, 34px);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.relokacja-cta__text {
    font-size: 16px;
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 32px;
}

.relokacja-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.relokacja-cta__contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.relokacja-cta__contact-info > div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,255,255,0.75);
}

.relokacja-cta__contact-info a {
    color: var(--color-white);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.relokacja-cta__contact-info a:hover {
    color: var(--color-accent);
}

.relokacja-cta__contact-info svg {
    color: var(--color-accent);
    width: 16px;
    height: 16px;
}

.relokacja-cta__visual {
    opacity: 0.12;
}

.relokacja-cta__icon-wrap svg {
    width: 140px;
    height: 140px;
    color: var(--color-white);
}

/* ============================================================
   RELOKACJA – RESPONSWNOŚĆ
   ============================================================ */
@media (max-width: 1100px) {
    .relokacja-scope__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .relokacja-reasons__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .relokacja-steps__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .relokacja-step:not(:last-child)::after {
        display: none;
    }

    .relokacja-intro__grid,
    .relokacja-process__body,
    .relokacja-forwho__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .relokacja-intro__stats {
        max-width: 480px;
    }

    .relokacja-cta__box {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .relokacja-cta__visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .relokacja-scope__grid {
        grid-template-columns: 1fr;
    }

    .relokacja-reasons__grid {
        grid-template-columns: 1fr;
    }

    .relokacja-steps__grid {
        grid-template-columns: 1fr 1fr;
    }

    .relokacja-hero__usps {
        gap: 8px;
    }

    .relokacja-usp {
        font-size: 13px;
        padding: 7px 12px;
    }

    .relokacja-cta__box {
        padding: 28px;
    }

    .relokacja-flow {
        flex-wrap: wrap;
        gap: 16px;
    }

    .relokacja-flow__arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .relokacja-steps__grid {
        grid-template-columns: 1fr;
    }

    .relokacja-hero__actions {
        flex-direction: column;
    }

    .relokacja-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .relokacja-intro__stats {
        grid-template-columns: 1fr 1fr;
    }
}
