/* LP Panele Hurt — Manik Ogrodzenia */

:root {
    --brand: #e94e1a;
    --brand-dark: #c63e0e;
    --brand-light: #fff4ef;
    --dark: #1a1d20;
    --dark-2: #2a2e33;
    --accent: #fdb918;
    --gray-50: #fafafa;
    --gray-100: #f4f4f4;
    --gray-200: #e8e8e8;
    --gray-300: #d4d4d4;
    --gray-500: #8a8a8a;
    --gray-700: #444;
    --gray-900: #1a1a1a;
    --success: #2da44e;
    --error: #d1242f;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,.12);
    --gutter: 24px;
    --container: 1140px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--gray-900);
    background: #fff;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.req { color: var(--brand); font-weight: 700; }
.optional { color: var(--gray-500); font-weight: 400; font-size: 12px; }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--dark);
    color: #ccc;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.topbar__shop { color: #ccc; text-decoration: none; }
.topbar__shop:hover { color: #fff; }
.topbar__right { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__link {
    color: #ccc;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color .15s;
}
.topbar__link:hover { color: var(--brand); }
.topbar__link--phone { font-weight: 600; color: #fff; }
.topbar__link--phone:hover { color: var(--accent); }

/* ===== HEADER ===== */
.header {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.logo img { max-height: 48px; width: auto; }
.header__nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header__nav a:not(.btn) {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color .15s;
}
.header__nav a:not(.btn):hover { color: var(--brand); }
.header__nav .btn { text-decoration: none; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: all .15s;
    line-height: 1;
}
.btn--primary {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    box-shadow:
        0 4px 14px rgba(233,78,26,.35),
        0 1px 0 rgba(255,255,255,.18) inset,
        0 -1px 0 rgba(0,0,0,.20) inset;
    position: relative;
    overflow: hidden;
}
.btn--primary::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .25s;
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 28px rgba(233,78,26,.50),
        0 1px 0 rgba(255,255,255,.20) inset,
        0 -1px 0 rgba(0,0,0,.20) inset;
}
.btn--primary:hover::before { opacity: 1; }
.btn--primary .btn__arrow { transition: transform .25s; }
.btn--primary:hover .btn__arrow { transform: translateX(4px); }

.btn--ghost {
    background: #fff;
    color: var(--dark);
    border: 1.5px solid var(--gray-300);
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); }
.btn--ghost.btn--light {
    background: rgba(255,255,255,.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(8px);
}
.btn--ghost.btn--light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.40); }

/* Phone CTA with split layout + pulse dot */
.btn--phone {
    position: relative;
    background: rgba(255,255,255,.06);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    padding: 14px 22px 14px 50px;
    backdrop-filter: blur(8px);
    text-align: left;
    line-height: 1;
}
.btn--phone:hover {
    background: rgba(255,255,255,.12);
    border-color: var(--accent);
    transform: translateY(-2px);
}
.btn--phone svg { color: var(--accent); flex-shrink: 0; }
.btn__pulse {
    position: absolute;
    top: 50%; left: 20px;
    width: 10px; height: 10px;
    background: #22c55e;
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 0 rgba(34,197,94,.7);
    animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
    0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
    70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@media (prefers-reduced-motion: reduce) { .btn__pulse { animation: none; } }
.btn__phone-text { display: flex; flex-direction: column; gap: 4px; }
.btn__label {
    font-size: 10.5px;
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}
.btn__phone-text strong {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: .2px;
}

.btn--sm { padding: 8px 16px; font-size: 13px; }
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--xl { padding: 18px 32px; font-size: 15px; font-weight: 700; letter-spacing: .2px; }

/* ===== HERO (modern B2B 2026) ===== */
.hero {
    position: relative;
    background: radial-gradient(ellipse at top right, #2a2e34 0%, var(--dark) 60%, #0e1013 100%);
    color: #fff;
    padding: 80px 0 100px;
    overflow: hidden;
    isolation: isolate;
}

/* Animowane mesh blobs w tle (industrial B2B aesthetic) */
.hero__mesh {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
    animation: floatBlob 18s ease-in-out infinite;
}
.hero__blob--1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
    top: -120px; right: -80px;
    animation-delay: 0s;
}
.hero__blob--2 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -100px; left: 10%;
    opacity: .25;
    animation-delay: -6s;
}
.hero__blob--3 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: 30%; left: -150px;
    opacity: .18;
    animation-delay: -12s;
}
@keyframes floatBlob {
    0%,100% { transform: translate(0,0) scale(1); }
    33%     { transform: translate(40px,-30px) scale(1.05); }
    66%     { transform: translate(-30px,40px) scale(.95); }
}
@media (prefers-reduced-motion: reduce) {
    .hero__blob { animation: none; }
}

/* Dot grid overlay (B2B industrial) */
.hero__grid {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Eyebrow text (B2B 2025-26 pattern) */
.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 24px;
    padding: 0;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.hero__eyebrow-dot {
    width: 8px; height: 8px;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(233,78,26,.20), 0 0 16px var(--brand);
    animation: pulseDot 2.4s infinite;
    flex-shrink: 0;
}
.hero__eyebrow-sep {
    width: 24px; height: 1px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    opacity: .6;
}
@keyframes pulseDot {
    0%,100% { box-shadow: 0 0 0 0 rgba(233,78,26,.6), 0 0 16px var(--brand); }
    50%     { box-shadow: 0 0 0 8px rgba(233,78,26,0), 0 0 16px var(--brand); }
}

.hero__title {
    font-size: clamp(38px, 5.6vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin: 0 0 22px;
    color: #fff;
}
.hero__title-accent {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 60%, var(--brand) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shiftGradient 6s ease-in-out infinite;
}
@keyframes shiftGradient {
    0%,100% { background-position: 0% 50%; }
    50%     { background-position: 100% 50%; }
}

.hero__lead {
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.65;
    color: #c4c9d0;
    margin: 0 0 32px;
    max-width: 560px;
}
.hero__lead strong { color: #fff; font-weight: 600; }

/* Stats row (zamiast bulletów - B2B credibility) */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 0 36px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);
}
.hero__stat {
    position: relative;
    padding: 0 18px;
    text-align: left;
}
.hero__stat + .hero__stat::before {
    content: "";
    position: absolute;
    left: 0; top: 14%; bottom: 14%;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,.12), transparent);
}
.hero__stat:first-child { padding-left: 0; }
.hero__stat strong {
    display: block;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    line-height: 1.1;
    margin-bottom: 4px;
    background: linear-gradient(135deg, #fff 0%, #b8bcc2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__stat span {
    display: block;
    font-size: 12px;
    color: #888d94;
    letter-spacing: .3px;
    line-height: 1.3;
}

.hero__ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

/* Hero visual - real product photo with depth */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 460px;
}

/* Orange glow blob behind photo - depth effect */
.hero__visual-glow {
    position: absolute;
    width: 540px; height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--brand) 0%, transparent 60%);
    filter: blur(60px);
    opacity: .35;
    z-index: 0;
    animation: glowPulse 5s ease-in-out infinite;
}
@keyframes glowPulse {
    0%,100% { opacity: .35; transform: scale(1); }
    50%     { opacity: .50; transform: scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .hero__visual-glow { animation: none; } }

.hero__photo {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 32px 80px rgba(0,0,0,.45),
        0 16px 32px rgba(0,0,0,.25),
        0 0 0 1px rgba(255,255,255,.10),
        inset 0 1px 0 rgba(255,255,255,.08);
    transform: rotate(-1deg);
    transition: transform .5s cubic-bezier(.2,.8,.2,1);
    z-index: 1;
}
.hero__photo:hover { transform: rotate(0deg) scale(1.02); }
.hero__photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    display: block;
}
.hero__photo-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(26,29,32,.55) 100%);
    pointer-events: none;
}

/* Glass badge over photo - bottom left */
.hero__photo-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    color: #fff;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 8px 24px rgba(0,0,0,.30);
    z-index: 2;
}
.hero__photo-badge svg { color: var(--accent); flex-shrink: 0; }
.hero__photo-badge strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2px;
}
.hero__photo-badge span {
    display: block;
    font-size: 11.5px;
    color: rgba(255,255,255,.70);
    letter-spacing: .3px;
}

/* Floating sticker - top right of photo */
.hero__sticker {
    position: absolute;
    top: 24px;
    right: -24px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #fff;
    color: var(--dark);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,.35), 0 4px 12px rgba(0,0,0,.15);
    transform: rotate(3deg);
    transition: transform .4s cubic-bezier(.2,.8,.2,1);
    z-index: 3;
    border: 1px solid rgba(0,0,0,.04);
}
.hero__sticker:hover { transform: rotate(0deg) translateY(-4px); }
.hero__sticker svg { color: var(--brand); flex-shrink: 0; }
.hero__sticker-label {
    display: block;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gray-500);
    line-height: 1;
    margin-bottom: 3px;
}
.hero__sticker strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

/* Scroll hint at bottom of hero */
.hero__scroll-hint {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255,255,255,.22);
    border-radius: 14px;
    z-index: 1;
}
.hero__scroll-hint span {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
    0%,100% { transform: translate(-50%, 0); opacity: 1; }
    50%     { transform: translate(-50%, 14px); opacity: .3; }
}
@media (prefers-reduced-motion: reduce) { .hero__scroll-hint span { animation: none; } }

/* ===== TRUST STRIP ===== */
.trust {
    background: var(--gray-50);
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.trust__item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: var(--gray-700);
}
.trust__item svg { color: var(--brand); flex-shrink: 0; }
.trust__item strong { color: var(--dark); font-weight: 700; }

/* ===== SECTIONS ===== */
.section { padding: 72px 0; }
.section--dark { background: var(--dark); color: #fff; }
.section__title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0 0 12px;
    text-align: center;
    color: var(--dark);
}
.section__title--light { color: #fff; }
.section__lead {
    font-size: 16px;
    color: var(--gray-700);
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section__lead--light { color: #b6b9bd; }

/* ===== USP ===== */
.usp__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.usp__card {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
    transition: all .2s;
}
.usp__card:hover {
    border-color: var(--brand);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.usp__num {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--brand);
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(233,78,26,.30);
}
.usp__title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--dark);
    padding-right: 40px;
}
.usp__desc {
    font-size: 14px;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.6;
}

/* ===== OFFER ===== */
.offer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.offer__card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .2s;
    display: flex;
    flex-direction: column;
}
.offer__card:hover {
    background: rgba(255,255,255,.06);
    border-color: var(--brand);
    transform: translateY(-3px);
}
.offer__image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--dark-2);
}
.offer__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.offer__card:hover .offer__image img { transform: scale(1.05); }
.offer__image .offer__icon {
    position: absolute;
    top: 14px;
    right: 14px;
    margin: 0;
    width: 48px;
    height: 48px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.offer__body {
    padding: 22px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.offer__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.offer__title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
}
.offer__short {
    color: #b6b9bd;
    font-size: 14px;
    margin: 0 0 18px;
    line-height: 1.6;
}
.offer__specs {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}
.offer__specs dt { color: var(--accent); font-weight: 600; margin-top: 8px; }
.offer__specs dd { margin: 2px 0 0 0; color: #ddd; }

.offer__cta {
    text-align: center;
    color: #ddd;
}
.offer__cta p { margin: 0 0 20px; font-size: 16px; }
.offer__cta .btn { margin: 0 6px 8px; }

/* ===== EXTRAS - szerszy asortyment ===== */
.extras { background: var(--gray-50); }
.extras__head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.extras__eyebrow {
    color: var(--brand);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 8px;
}
.extras__gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}
.extras__photo {
    position: relative;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/10;
    box-shadow: var(--shadow-md);
    transition: transform .35s;
}
.extras__photo:hover { transform: translateY(-3px); }
.extras__photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.extras__photo:hover img { transform: scale(1.04); }
.extras__photo figcaption {
    position: absolute;
    bottom: 12px; left: 12px;
    padding: 6px 12px;
    background: rgba(26,29,32,.85);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 12px;
    letter-spacing: .3px;
    border-radius: 4px;
    border-left: 3px solid var(--brand);
}

.extras__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.extras__item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: all .2s;
}
.extras__item:hover {
    border-color: var(--brand);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.extras__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.extras__item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 8px;
}
.extras__item p {
    font-size: 13.5px;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.55;
}

/* ===== FORM EXTRA (always open section) ===== */
.form-extra {
    margin: 8px 0 16px;
    padding: 20px 0 6px;
    border-top: 1px dashed var(--gray-200);
    border-bottom: 1px dashed var(--gray-200);
}
.form-extra__title {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand);
}
.form-extra .optional { font-weight: 400; color: var(--gray-500); font-size: 12px; }

/* ===== PROCESS ===== */
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.process__step {
    text-align: center;
    padding: 28px 16px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    position: relative;
}
.process__num {
    width: 56px;
    height: 56px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    margin: 0 auto 14px;
    box-shadow: 0 6px 16px rgba(233,78,26,.25);
}
.process__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--dark);
}
.process__desc {
    font-size: 13px;
    color: var(--gray-700);
    margin: 0;
    line-height: 1.55;
}

/* ===== QUOTE FORM ===== */
.quote { background: linear-gradient(180deg, #fff 0%, var(--gray-50) 100%); }
.quote__inner { max-width: 880px; }
.quote__intro { text-align: center; margin-bottom: 32px; }

.quote__contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 28px auto 0;
    max-width: 600px;
}
.quote__contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--dark);
    transition: all .15s;
}
.quote__contact-card:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.quote__contact-card svg { color: var(--brand); flex-shrink: 0; }
.quote__contact-card span { display: block; font-size: 12px; color: var(--gray-500); }
.quote__contact-card strong { display: block; font-size: 15px; }

.quote-form {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
    margin-top: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-field--full { grid-column: 1 / -1; }
.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}
.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    background: #fff;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    transition: border-color .15s, box-shadow .15s;
    outline: none;
}
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(233,78,26,.15);
}
.form-field input.is-invalid,
.form-field textarea.is-invalid { border-color: var(--error); }
.form-field textarea { resize: vertical; min-height: 90px; }

.form-radios { display: flex; flex-wrap: wrap; gap: 8px; }
.form-radio {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.form-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.form-radio span {
    display: inline-block;
    padding: 9px 18px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--gray-700);
    transition: all .15s;
}
.form-radio:hover span { border-color: var(--brand); }
.form-radio input:checked + span {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
    font-weight: 600;
}
.form-radios--pills .form-radio span { border-radius: 999px; padding: 8px 16px; font-size: 13px; }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 13.5px;
    line-height: 1.5;
    cursor: pointer;
    margin: 16px 0;
}
.form-check input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--brand); }
.form-check:has(input:checked) { background: var(--brand-light); border-color: var(--brand); }

.form-submit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}
.form-submit .btn { width: 100%; max-width: 360px; }
.form-hint { font-size: 12px; color: var(--gray-500); margin: 0; }

.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border: 1px solid;
}
.form-alert--error { background: #fef2f2; border-color: #fecaca; color: #991b1b; font-size: 14px; }
.form-alert ul { margin: 6px 0 0; padding-left: 20px; }

/* ===== FAQ ===== */
.faq__inner { max-width: 820px; }
.faq__list { display: flex; flex-direction: column; gap: 10px; }
.faq__item {
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color .15s;
}
.faq__item[open] { border-color: var(--brand); }
.faq__item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark);
    list-style: none;
    position: relative;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 300;
    color: var(--brand);
    transition: transform .2s;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
    margin: 0;
    padding: 0 22px 20px;
    color: var(--gray-700);
    font-size: 14.5px;
    line-height: 1.65;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    padding: 64px 0;
    text-align: center;
}
.final-cta h2 {
    font-size: clamp(26px, 3.5vw, 36px);
    margin: 0 0 12px;
    font-weight: 800;
}
.final-cta p {
    font-size: 16px;
    color: rgba(255,255,255,.92);
    margin: 0 0 28px;
}
.final-cta__buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.final-cta .btn--primary {
    background: #fff;
    color: var(--brand);
    box-shadow: 0 6px 24px rgba(0,0,0,.18);
}
.final-cta .btn--primary:hover { background: var(--gray-50); transform: translateY(-1px); }

/* ===== SUCCESS PAGE ===== */
.success-wrap { padding: 80px 0; min-height: 60vh; }
.success-card {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 56px 32px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}
.success-card h1 { font-size: 28px; color: var(--dark); margin: 16px 0 28px; }
.success-card__num-label { color: var(--gray-500); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; margin: 0 0 4px; }
.success-card__num { font-family: Consolas, monospace; font-size: 30px; font-weight: 800; color: var(--brand); margin: 0 0 24px; }
.success-card__info { color: var(--gray-700); margin: 0 0 28px; line-height: 1.65; }
.success-card__cta { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: #aab;
    padding: 36px 0 28px;
    font-size: 14px;
}
.footer__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__logo { max-height: 40px; filter: brightness(0) invert(1); opacity: .9; }
.footer__brand p { margin: 0; color: #ccc; }
.footer__contact { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__contact a { color: #ccc; text-decoration: none; }
.footer__contact a:hover { color: var(--brand); }
.footer__copy { grid-column: 1/-1; margin: 20px 0 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); text-align: center; font-size: 12px; color: #888; }

/* ===== FLOATING PHONE (mobile) ===== */
.floating-phone {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--brand);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(233,78,26,.40);
    text-decoration: none;
    z-index: 100;
    animation: floatPulse 2s infinite;
}
@keyframes floatPulse {
    0%,100% { box-shadow: 0 8px 24px rgba(233,78,26,.40), 0 0 0 0 rgba(233,78,26,.5); }
    50%     { box-shadow: 0 8px 24px rgba(233,78,26,.40), 0 0 0 14px rgba(233,78,26,0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
    .hero { padding: 56px 0 72px; }
    .hero__inner { grid-template-columns: 1fr; gap: 56px; }
    .hero__visual { min-height: auto; max-width: 480px; margin: 0 auto; }
    .hero__sticker { right: 8px; }
    .hero__stats { grid-template-columns: 1fr 1fr 1fr; }
    .usp__grid { grid-template-columns: repeat(2, 1fr); }
    .offer__grid { grid-template-columns: repeat(2, 1fr); }
    .extras__grid { grid-template-columns: repeat(2, 1fr); }
    .process__grid { grid-template-columns: repeat(2, 1fr); }
    .trust__grid { grid-template-columns: repeat(3, 1fr); }
    .hero__scroll-hint { display: none; }
}

@media (max-width: 720px) {
    :root { --gutter: 16px; }
    .topbar { font-size: 12px; padding: 6px 0; }
    .topbar__inner { justify-content: center; }
    .topbar__shop { display: none; }
    .header__nav a:not(.btn) { display: none; }

    .hero { padding: 36px 0 56px; }
    .hero__title { letter-spacing: -1px; }
    .hero__lead { font-size: 15px; }
    .hero__stats { grid-template-columns: 1fr; gap: 14px; padding: 16px 0; }
    .hero__stat { padding: 0; }
    .hero__stat + .hero__stat::before {
        left: 0; right: 0; top: -7px; bottom: auto;
        width: auto; height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,.10), transparent);
    }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; justify-content: center; }
    .btn--phone { justify-content: flex-start; padding-left: 50px; }

    .hero__sticker { right: 12px; top: 12px; padding: 8px 14px; }
    .hero__sticker svg { width: 16px; height: 16px; }
    .hero__photo-badge { padding: 10px 12px; }

    .trust__grid { grid-template-columns: repeat(2, 1fr); }
    .usp__grid, .offer__grid, .extras__grid, .process__grid { grid-template-columns: 1fr; }
    .extras__gallery { grid-template-columns: 1fr; }

    .section { padding: 48px 0; }
    .quote-form { padding: 24px 18px; }
    .form-grid { grid-template-columns: 1fr; }
    .quote__contact { grid-template-columns: 1fr; }

    .footer__inner { grid-template-columns: 1fr; text-align: center; }
    .footer__brand, .footer__contact { justify-content: center; }

    .floating-phone { display: flex; }
}
