/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== MENU ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 14px;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: rotate(25deg);
}

.logo-icon:hover {
    transform: scale(1.05) rotate(-2deg);
    box-shadow: 0 6px 30px rgba(249, 115, 22, 0.4);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin-left: 10px;
}

.logo-text .highlight {
    color: #f97316;
    position: relative;
}

.logo-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f97316, #fb923c, #f97316);
    border-radius: 4px;
    opacity: 0.3;
}

.logo-text .dot {
    color: #f97316;
    font-weight: 800;
}

.logo-sub {
    font-size: 0.55rem;
    font-weight: 400;
    color: #7a7a7a;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-top: -2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f97316;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #f97316;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.cta-nav {
    background: #f97316;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-links a.cta-nav::after {
    display: none;
}

.nav-links a.cta-nav:hover {
    background: #ea580c;
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* ===== HERO ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #fef9f5 0%, #ffffff 70%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: #f97316;
}

.hero-content p {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 28px;
    max-width: 520px;
    font-weight: 400;
}

.hero-content .keywords {
    font-size: 0.85rem;
    color: #7a7a7a;
    margin-bottom: 28px;
}

.hero-content .keywords strong {
    color: #f97316;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #f97316;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.25);
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.btn-primary:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #e5e5e5;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: #f97316;
    color: #f97316;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.hero-stats .stat {
    text-align: left;
}

.hero-stats .stat .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f97316;
    display: block;
}

.hero-stats .stat .label {
    font-size: 0.85rem;
    color: #7a7a7a;
}

/* ===== PRAWA KOLUMNA HERO ===== */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ===== BOX TELEFONICZNY ===== */
.phone-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.phone-box:hover {
    border-color: #f97316;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.08);
}

.phone-box .phone-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.phone-box .phone-content h4 {
    font-size: 0.85rem;
    color: #7a7a7a;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.phone-box .phone-content .number {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-box .phone-content .number:hover {
    color: #f97316;
}

.phone-box .phone-content .small-text {
    font-size: 0.8rem;
    color: #7a7a7a;
    margin-top: 2px;
}

.badge-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 32px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    width: 100%;
}

.badge-box .big-icon {
    font-size: 2.8rem;
    display: block;
    margin-bottom: 12px;
    color: #f97316;
}

.badge-box h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.badge-box p {
    color: #5a5a5a;
    font-size: 0.95rem;
}

.badge-box .highlight {
    color: #f97316;
    font-weight: 700;
}

.badge-box .city-list {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge-box .city-list span {
    background: #fef3ed;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    color: #f97316;
    font-weight: 600;
}

/* ===== SEKCJE ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.section-header .tag {
    display: inline-block;
    background: #fef3ed;
    color: #f97316;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section-header h2 span {
    color: #f97316;
}

.section-header p {
    color: #5a5a5a;
    font-size: 1.1rem;
    margin-top: 12px;
}

/* ===== KARTY ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.feature-card {
    background: #fafafa;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.06);
    border-color: #f97316;
}

.feature-card .icon {
    font-size: 2.4rem;
    display: block;
    margin-bottom: 16px;
    color: #f97316;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    color: #5a5a5a;
    font-size: 0.95rem;
}

.feature-card .keyword-tag {
    display: inline-block;
    background: #fef3ed;
    color: #f97316;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 12px;
    border-radius: 50px;
    margin-top: 10px;
}

/* ===== SEKCJA USZKODZONY SPRZĘT ===== */
.damaged-section {
    background: #fafafa;
}

.damaged-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .damaged-grid {
        grid-template-columns: 1fr;
    }
}

.damaged-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.damaged-content h3 span {
    color: #f97316;
}

.damaged-content ul {
    list-style: none;
    margin-top: 16px;
}

.damaged-content ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.damaged-content ul li:last-child {
    border-bottom: none;
}

.damaged-content ul li i {
    color: #f97316;
    width: 24px;
    text-align: center;
}

.damaged-image {
    display: flex;
    justify-content: center;
}

.damaged-image .icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.04);
}

.damaged-image .icon-grid .item {
    text-align: center;
}

.damaged-image .icon-grid .item i {
    font-size: 2.8rem;
    color: #f97316;
    display: block;
    margin-bottom: 8px;
}

.damaged-image .icon-grid .item span {
    font-size: 0.8rem;
    color: #5a5a5a;
    font-weight: 500;
}

/* ===== OBSZAR ===== */
.area-section {
    background: #fafafa;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.area-tag {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.area-tag:hover {
    border-color: #f97316;
    color: #f97316;
}

.area-tag .highlight {
    color: #f97316;
    font-weight: 700;
}

.area-description {
    text-align: center;
    margin-top: 30px;
    color: #5a5a5a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.area-description strong {
    color: #f97316;
}

/* ===== FORMULARZ ===== */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 820px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fafafa;
    border-radius: 14px;
    margin-bottom: 12px;
    border-left: 4px solid #f97316;
}

.info-list li .icon {
    font-size: 1.4rem;
    color: #f97316;
    width: 28px;
    text-align: center;
}

.contact-block {
    background: #fafafa;
    border-radius: 20px;
    padding: 28px 32px;
    margin-top: 28px;
    border: 1px solid #f0f0f0;
}

.contact-block p {
    margin-bottom: 6px;
}

.contact-block a {
    color: #f97316;
    text-decoration: none;
    font-weight: 600;
}

.contact-block a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f97316;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.06);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #f97316;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
}

.btn-submit:hover {
    background: #ea580c;
    transform: scale(1.01);
    box-shadow: 0 12px 40px rgba(249, 115, 22, 0.3);
}

.alert {
    padding: 14px 20px;
    border-radius: 14px;
    margin-top: 18px;
    display: none;
    font-weight: 500;
}

.alert-success {
    display: block;
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

.alert-error {
    display: block;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* ===== STOPKA ===== */
.footer {
    background: #1a1a1a;
    color: #a0a0a0;
    padding: 50px 0;
    text-align: center;
}

.footer .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
}

.footer .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
}

.footer .logo-text {
    font-size: 1.4rem;
    color: #ffffff;
    margin-left: 8px;
}

.footer .logo-text .highlight {
    color: #f97316;
}

.footer p {
    margin-top: 14px;
    font-size: 0.9rem;
}

.footer a {
    color: #f97316;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .keywords-footer {
    margin-top: 16px;
    font-size: 0.75rem;
    color: #5a5a5a;
    line-height: 2;
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 820px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 28px;
    }
    .hero-content .keywords {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-right {
        align-items: center;
    }
    .phone-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .badge-box {
        max-width: 100%;
    }
    .badge-box .city-list {
        justify-content: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        gap: 20px;
        border-top: 1px solid #f0f0f0;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a.cta-nav {
        text-align: center;
    }
    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    .logo-text {
        font-size: 1.2rem;
    }
    .logo-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
    }
    .phone-box .phone-content .number {
        font-size: 1.3rem;
    }
    .damaged-image .icon-grid {
        grid-template-columns: 1fr 1fr;
        padding: 20px;
    }
}