:root {
    --primary: #1a2a3a;
    --accent: #ffcc00;
    --accent-dark: #e6b800;
    --light: #f5f6f7;
    --white: #ffffff;
    --text: #2d3436;
    --muted: #666666;
    --border: #e9ecef;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.18);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 18px;

    --container: 1100px;
    --transition: 0.25s ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
    margin: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a,
button {
    transition: var(--transition);
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--primary);
    color: var(--white);
}

.section-title {
    margin-bottom: 40px;
    text-align: center;
    font-size: 2rem;
    line-height: 1.2;
}

.section-title-accent {
    color: var(--accent);
}

.btn {
    display: inline-block;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 26px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.btn-yellow {
    background: var(--accent);
    color: var(--primary);
}

.btn-yellow:hover {
    background: var(--accent-dark);
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-sm);
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
}

.btn-outline:hover {
    background: rgba(255, 204, 0, 0.08);
}

.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent);
    background: rgba(26, 42, 58, 0.95);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
}

.logo:hover,
.logo:visited,
.logo:active {
    color: var(--white);
    text-decoration: none;
}

.logo-img {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.logo-text {
    color: var(--white);
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.nav a:hover {
    opacity: 0.82;
}

.nav-cta {
    border-radius: 6px;
    padding: 10px 16px;
    background: var(--accent);
    color: var(--primary) !important;
    font-weight: 800 !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
}

.mobile-menu {
    display: none;
    padding: 10px 20px 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(26, 42, 58, 0.98);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-menu a {
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 0;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.mobile-menu a:last-child {
    border-bottom: 0;
}

.mobile-menu-cta {
    margin-top: 8px;
    border-radius: 8px;
    padding: 13px 16px !important;
    background: var(--accent);
    color: var(--primary) !important;
    text-align: center;
    font-weight: 800 !important;
}

.hero {
    padding: 50px 0 40px;
    background: var(--primary);
}

.hero-bg {
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 18px;
    padding: 60px 50px;
    background-image:
        linear-gradient(rgba(26, 42, 58, 0.78), rgba(26, 42, 58, 0.82)),
        url("hero-bg.webp");
    background-position: center;
    background-size: cover;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.35);
}

.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 204, 0, 0.16), transparent 32%),
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.08), transparent 28%);
    pointer-events: none;
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    align-items: start;
}

.hero-left {
    max-width: 620px;
}

.hero-title {
    margin-bottom: 18px;
    color: var(--white);
    font-size: 3.15rem;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.accent {
    background: linear-gradient(180deg, #ffd84d 0%, #ffcc00 40%, #f2b800 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(255, 204, 0, 0.35);
}

.hero-subtitle {
    max-width: 760px;
    margin-bottom: 28px;
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 700;
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.trust-icon,
.service-check {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--accent);
    stroke-width: 3;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.hero-btn {
    padding: 16px 30px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
    font-size: 1.05rem;
}

.phone-icon,
.cta-call-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.phone-icon {
    fill: var(--accent);
}

.cta-call-icon {
    fill: var(--primary);
}

.hero-right {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.hero-card {
    width: 100%;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 30px 24px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-stat {
    text-align: center;
}

.hero-stat + .hero-stat {
    margin-top: 26px;
}

.hero-stat .big,
.about-stat .big,
.about-stat .medium,
.price {
    font-weight: 800;
}

.hero-stat .big {
    margin-bottom: 6px;
    color: var(--accent);
    font-size: 2rem;
    line-height: 1.1;
}

.hero-stat p {
    color: var(--accent);
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 700;
}

.bento-grid,
.services-grid,
.footer-grid,
.faq-pricing-grid {
    display: grid;
    gap: 20px;
}

.bento-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.bento-item {
    border-left: 5px solid var(--primary);
    border-radius: var(--radius);
    padding: 30px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.tag {
    display: inline-block;
    margin-bottom: 14px;
    border-radius: 6px;
    padding: 4px 9px;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
}

.area {
    padding: 70px 0;
    background: var(--white);
}

.area-intro {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #555;
    text-align: center;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.area-city {
    border-radius: 8px;
    padding: 12px;
    background: var(--light);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 600;
}

.realizacje {
    background: var(--white);
}

.realizacje-subtitle {
    margin-bottom: 30px;
    color: #666;
    text-align: center;
    font-size: 0.95rem;
}

.realizacje-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.realizacja-card {
    overflow: hidden;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.realizacja-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.realizacja-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: var(--transition);
}

.realizacja-card:hover img {
    transform: scale(1.05);
}

.realizacja-card figcaption {
    padding: 14px;
    color: #444;
    font-size: 0.9rem;
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: 40px;
    align-items: center;
}

.about-lead {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.timeline-item {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

.timeline-item + .timeline-item {
    margin-top: 20px;
}

.timeline-item h3 {
    margin-bottom: 4px;
    color: var(--accent);
    font-size: 1.05rem;
}

.about-stat {
    border-radius: var(--radius);
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.about-stat .big {
    color: var(--accent);
    font-size: 3rem;
}

.about-stat .medium {
    font-size: 2rem;
}

.about-stat hr {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--accent);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border-color: transparent;
    background: var(--primary);
    color: var(--white);
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    border-radius: 999px;
    padding: 4px 10px;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
}

.service-badge-danger {
    background: #d62828;
}

.service-badge-dark {
    background: var(--primary);
}

.service-list,
.price-list,
.footer ul {
    list-style: none;
    padding: 0;
}

.service-list {
    margin: 18px 0;
    font-size: 0.95rem;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.service-list li + li {
    margin-top: 10px;
}

.service-check {
    margin-top: 3px;
}

.service-card.featured .service-list {
    color: rgba(255, 255, 255, 0.86);
}

.service-card.featured .service-check {
    stroke: #ffd84d;
}

.service-card:not(.featured) .service-list {
    color: var(--muted);
}

.price {
    display: block;
    margin-top: 18px;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 1.5rem;
}

.price-dark {
    color: var(--primary);
}

.service-card .btn {
    margin-top: 8px;
}

.reviews {
    background: var(--white);
}

.reviews .container {
    text-align: center;
}

.reviews-verified {
    margin-top: -8px;
    margin-bottom: 4px;
    color: #777;
    font-size: 0.88rem;
    text-align: center;
}

.reviews-rating {
    margin-bottom: 20px;
    color: #666;
    text-align: center;
    font-size: 0.95rem;
}

.reviews-badge {
    display: inline-block;
    margin: 0 auto 28px;
    border: 1px solid rgba(255, 204, 0, 0.35);
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 204, 0, 0.14);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 320px));
    justify-content: center;
    gap: 20px;
    text-align: left;
}

.review-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 22px;
    background: var(--white);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.review-source {
    color: #4285f4;
    font-size: 0.75rem;
    font-weight: 700;
}

.stars {
    color: var(--accent);
    font-size: 1rem;
    letter-spacing: 2px;
    white-space: nowrap;
}

.review-card p {
    flex-grow: 1;
    margin-bottom: 16px;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.author {
    color: #777;
    font-size: 0.85rem;
    font-weight: 600;
}

.reviews-more {
    margin-top: 30px;
    text-align: center;
}

.reviews-more a {
    display: inline-block;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 2px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.reviews-more a:hover {
    color: var(--accent);
}

.cta-call {
    padding: 30px 0 80px;
    background: var(--white);
}

.cta-call-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-radius: 18px;
    padding: 34px 38px;
    background: linear-gradient(135deg, var(--primary) 0%, #22374b 100%);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.cta-call-content {
    max-width: 620px;
}

.cta-call-label {
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cta-call-title {
    margin-bottom: 12px;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 800;
}

.cta-call-text {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.7;
}

.cta-call-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    flex-shrink: 0;
}

.cta-call-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    padding: 16px 24px;
    background: var(--accent);
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.cta-call-phone:hover {
    transform: translateY(-2px);
    background: var(--accent-dark);
}

.cta-call-note {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
    font-weight: 600;
}

.local-seo,
.seo-section {
    padding: 80px 0;
    background: var(--light);
}

.seo-card {
    max-width: 820px;
    margin: 0 auto;
    border-top: 4px solid var(--accent);
    border-radius: 14px;
    padding: 44px;
    background: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.1);
}

.seo-card h3 {
    margin-top: 22px;
    margin-bottom: 14px;
    color: var(--primary);
    font-size: 1.22rem;
}

.seo-card p,
.seo-list li {
    color: #3f4448;
}

.seo-card p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.seo-list {
    margin: 0 0 20px 20px;
}

.seo-list li {
    margin-bottom: 8px;
}

.faq-pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
}

.faq-column,
.pricing-column {
    align-self: start;
}

.faq-column h3,
.pricing-column h3 {
    margin-bottom: 25px;
    color: var(--primary);
}

.faq-item {
    margin-bottom: 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 15px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.faq-item summary {
    position: relative;
    padding-left: 28px;
    list-style: none;
    font-weight: 700;
    cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 8px;
    height: 8px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform var(--transition);
}

.faq-item[open] summary::before {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
    padding-top: 12px;
    color: #555;
    font-size: 0.95rem;
}

.pricing-column {
    border-radius: 12px;
    padding: 24px;
    background: var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.price-list li {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.price-note {
    margin-top: 15px;
    color: #888;
    font-size: 0.82rem;
    line-height: 1.6;
}

.contact-form {
    display: grid;
    gap: 16px;
    max-width: 620px;
    margin: 0 auto;
    border-radius: 14px;
    padding: 32px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-control {
    width: 100%;
    border: 1px solid #cfd6dc;
    border-radius: 8px;
    padding: 14px 16px;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: #d8b400;
    box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.14);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn {
    min-height: 50px;
    margin-top: 4px;
}

.footer {
    padding: 56px 0 22px;
    background: #111;
    color: #aaa;
    font-size: 1rem;
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 36px;
}

.footer h4 {
    margin-bottom: 18px;
    color: var(--white);
}

.footer p,
.footer li,
.footer a {
    line-height: 1.7;
}

.footer a {
    color: #aaa;
    text-decoration: none;
}

.footer a:hover {
    color: var(--accent);
}

.footer-accent {
    margin-top: 10px;
    color: var(--accent);
}

.privacy-link {
    margin-top: 10px;
}

.privacy-link a {
    color: var(--accent);
    text-decoration: underline;
}

.footer-bottom {
    margin-top: 44px;
    border-top: 1px solid #222;
    padding-top: 22px;
    text-align: center;
}

.mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    z-index: 1001;
    display: none;
    width: min(92%, 520px);
    transform: translateX(-50%);
}

.phone-btn {
    display: block;
    border-radius: 999px;
    padding: 15px 20px;
    background: var(--accent);
    color: var(--primary);
    text-align: center;
    font-weight: 800;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
}

#scrollTopBtn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--accent);
    color: var(--primary);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    background: var(--accent-dark);
}

#cookie-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 10000;
    width: 100%;
    padding: 12px 16px;
    background: #111;
    color: var(--white);
    text-align: center;
    font-size: 12px;
}

#cookie-bar button {
    margin-left: 10px;
    border: none;
    border-radius: 6px;
    padding: 6px 15px;
    background: var(--accent);
    font-weight: 800;
    cursor: pointer;
}

@media (max-width: 992px) {
    .hero-bg {
        padding: 50px 36px;
    }

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .hero-card {
        max-width: 320px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .hero-bg {
        border-radius: 14px;
        padding: 34px 20px 30px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-title {
        margin-bottom: 14px;
        font-size: 2rem;
        line-height: 1.08;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 8px;
    }

    .hero-actions .btn,
    .hero-actions .btn-outline {
        width: 100%;
        min-height: 50px;
        justify-content: center;
        text-align: center;
    }

    .hero-right {
        justify-content: center;
    }

    .hero-card {
        max-width: 240px;
        margin: 0 auto;
        padding: 18px 16px;
    }

    .hero-stat + .hero-stat {
        margin-top: 16px;
    }

    .hero-stat .big {
        font-size: 1.55rem;
    }

    .hero-stat p {
        font-size: 0.82rem;
    }

    .realizacje-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .realizacja-card img {
        height: 220px;
    }

    .cta-call {
        padding: 20px 0 60px;
    }

    .cta-call-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 26px 22px;
    }

    .cta-call-title {
        font-size: 1.6rem;
    }

    .cta-call-actions {
        width: 100%;
        align-items: stretch;
    }

    .cta-call-phone {
        width: 100%;
        justify-content: center;
    }

    .cta-call-note {
        text-align: center;
    }

    .seo-card {
        padding: 28px 22px;
    }

    .pricing-column {
        padding: 20px;
    }

    .contact-form {
        border-radius: 12px;
        padding: 22px;
    }

    .footer {
        font-size: 0.95rem;
    }

    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 90px;
    }
}

.contact-info {
    margin-bottom: 25px;
    text-align: center;
    font-size: 0.95rem;
}

.contact-info a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--accent);
}

.map iframe {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.map-box {
    max-width: 700px;
    margin: 30px auto 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.map-box iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

.seo-link {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 8px;
    background: rgba(255, 204, 0, 0.12);
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.seo-link:hover {
    background: rgba(255, 204, 0, 0.22);
}

.locations-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.location-link {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.location-link:hover {
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.locations-note {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    color: var(--muted);
}

.locations-note a {
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid var(--accent);
    text-decoration: none;
}

.locations-note a:hover {
    color: var(--accent);
}

.faq-local {
    max-width: 800px;
    margin: 0 auto;
}

.area-city {
    display: block;
    background: #f5f6f7;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #1a2a3a;
}

.area-city:hover {
    background: #ffcc00;
    color: #1a2a3a;
    transform: translateY(-2px);
}