* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1565C0;
    --primary-light: #1976D2;
    --primary-dark: #0D47A1;
    --accent: #FF6F00;
    --accent-light: #FF8F00;
    --bg-cream: #FDF8F3;
    --bg-white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-gray: #70757a;
    --google-blue: #4285F4;
    --google-stars: #fbbc04;
    --nav-height: 80px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}


.nav-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
    text-decoration: none;
    z-index: 1100;
}

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right .btn-primary {
    background: linear-gradient(to bottom, #fefefe 0%, #f7f7f7 50%, #ebebec 100%);
    border: 1px solid #555;
    color: #555;
    box-shadow: none;
    min-width: unset;
    height: unset;
    padding: 10px 28px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}
.nav-right .btn-primary:hover {
    background: linear-gradient(to bottom,
        #e5e5e5  1.4%,
        #eeeeee  5.4%,
        #fbfbfb 10.8%,
        #ffffff 16.2%,
        #ffffff 21.6%,
        #fcfcfc 29.7%,
        #fafafa 40.5%,
        #f8f8f8 50.0%,
        #f5f5f5 60.8%,
        #f3f3f3 70.3%,
        #f1f1f1 79.7%,
        #ededed 89.2%,
        #e8e8e8 94.6%,
        #e2e2e2 98.6%);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.35), 0 9px 14px rgba(0,0,0,0.10);
    transform: none;
}
.nav-right .btn-primary:active {
    box-shadow:
        inset 0  8px 10px -2px rgba(0,0,0,0.30),
        inset 0 -8px 10px -2px rgba(0,0,0,0.30),
        0 0 5px rgba(0,0,0,0.20),
        0 4px 8px rgba(0,0,0,0.15);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.neo-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(345deg, #FFB347 0%, #FF6B00 50%, #CC3D00 100%);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.6rem 1.4rem;
    border-radius: 45px;
    box-shadow: 9px 9px 16px rgba(163, 177, 198, 0.6), -9px -9px 16px rgba(255, 255, 255, 0.7);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.neo-phone-btn:hover {
    box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6), -5px -5px 10px rgba(255, 255, 255, 0.7);
    transform: scale(0.98);
    color: #fff;
}

.neo-phone-btn:active {
    box-shadow: inset 5px 5px 10px rgba(163, 177, 198, 0.8), inset -5px -5px 10px rgba(255, 255, 255, 0.8);
    transform: scale(0.97);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-phone:hover {
    color: var(--primary);
}

.btn-primary, .btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    background: transparent;
    color: white;
    min-width: 190px;
    height: 56px;
}

.btn-primary {
    background: linear-gradient(165deg, #FFA030 0%, #FF6B00 52%, #EE5200 100%);
    box-shadow: 0 4px 20px rgba(255,111,0,0.38);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 0 0 2.5px rgba(255,255,255,0.88), 0 6px 32px rgba(255,111,0,0.55), 0 0 48px rgba(255,140,0,0.22);
}
.btn-primary:active { transform: scale(0.96); }

.btn-secondary:hover { transform: scale(1.04); }
.btn-secondary:active { transform: scale(0.96); }

/* Outer glass shell — like the glass of a snow globe */
.btn-glass-outer {
    position: absolute;
    inset: 0;
    border-radius: 50px;
    border: 1.5px solid rgba(255,255,255,0.35);
    background: transparent;
    box-shadow: 0 6px 24px rgba(0,0,0,0.18);
    pointer-events: none;
    z-index: 2;
}

/* Water inside the globe */
.btn-glass-inner {
    position: absolute;
    inset: 1.5px;
    border-radius: 49px;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}


.btn-secondary .btn-glass-inner {
    background: linear-gradient(180deg,
        rgba(180,215,255,0.55) 0%,
        rgba(100,160,255,0.45) 60%,
        rgba(30,80,200,0.40) 100%);
}

/* Glitter canvas — particles drawn here */
.btn-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: normal;
    pointer-events: none;
}

.btn-smoke {
    display: none;
}

.btn-label {
    position: relative;
    z-index: 10;
    white-space: nowrap;
    letter-spacing: 0.01em;
}


.btn-secondary .btn-label {
    color: #1A1A2E;
}

/* --- HAMBURGER --- */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1100;
    position: relative;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2.5px;
    background: var(--text-dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-20px); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 992px) {
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 80%; max-width: 400px; height: 100vh;
        background: white; flex-direction: column; justify-content: center; align-items: center;
        gap: 2rem; transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        z-index: 1050; padding: 2rem;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: block; }
    .nav-right .nav-phone, .nav-right .btn-primary { display: none; }
    .nav-links .mobile-cta { display: flex; flex-direction: column; gap: 1.5rem; width: 100%; margin-top: 2rem; }
}

/* --- HERO SECTION --- */
.hero {
    padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-size: 3.5rem; font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; color: var(--text-dark); display: flex; flex-direction: column; gap: 0.2rem; }
.h1-label { font-size: 3.2rem; font-weight: 800; line-height: 1.1; color: #000; }
.h1-main { font-size: 2.2rem; font-weight: 800; line-height: 1.1; color: var(--primary); white-space: nowrap; }
.h1-accent { color: #000; }
.h1-dark { color: var(--primary); }
.h1-sub {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
    line-height: 1.6;
}
.hero-subtitle { font-size: 1.15rem; color: var(--text-gray); margin-bottom: 2rem; max-width: 480px; }
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 3rem; }
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.9rem; color: var(--text-gray); }

/* Hero Visual */
.hero-visual { position: relative; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.2rem; }

/* Trust Badge */
.trust-badge {
    background: white;
    border-radius: 12px;
    padding: 0.55rem 0.9rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid rgba(0,0,0,0.06);
    margin-top: 10px;
}
.trust-badge-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.trust-badge-google-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
}
.trust-badge-divider {
    width: 1px;
    height: 16px;
    background: #ddd;
    margin: 0 0.2rem;
}
.trust-badge-score {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000;
}
.trust-badge-stars {
    color: #FBBC05;
    font-size: 1.7rem;
}
.trust-badge-bottom {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: #888;
}
.trust-badge-dot { color: #ccc; }
.trust-badge-count { font-weight: 600; color: #555; }
.trust-badge-family { color: #888; }
.trust-badge-middle { font-size: 1.1rem; font-weight: 800; color: #000; }
.floating-photos { position: absolute; width: 100%; height: 100%; pointer-events: none; }
.worker-photo { position: absolute; border-radius: 50%; border: 4px solid white; box-shadow: 0 10px 40px rgba(0,0,0,0.15); overflow: hidden; animation: float 6s ease-in-out infinite; }
.worker-photo svg { width: 100%; height: 100%; }
.worker-photo:nth-child(1) { width: 90px; height: 90px; top: 5%; left: 0; animation-delay: 0s; }
.worker-photo:nth-child(2) { width: 75px; height: 75px; top: 25%; right: 5%; animation-delay: 1s; }
.worker-photo:nth-child(3) { width: 85px; height: 85px; bottom: 30%; left: -5%; animation-delay: 2s; }
.worker-photo:nth-child(4) { width: 70px; height: 70px; bottom: 10%; right: 10%; animation-delay: 1.5s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }

.deco-line { position: absolute; stroke: var(--text-dark); stroke-width: 2; fill: none; opacity: 0.15; }
.deco-line-1 { top: 10%; right: -20px; width: 100px; }
.deco-line-2 { bottom: 20%; left: -30px; width: 80px; }

.phone-mockup {
            width: min(270px, 66vw);
            min-height: 389px;
            padding: 11px 12px;
            border-radius: 32px;
            background: #191b33;
            box-shadow: 0 27px 63px rgba(24, 27, 53, 0.24);
            position: relative;
            transform: rotate(1.5deg);
            transition: transform 0.45s ease;
        }

        .phone-mockup:hover {
            transform: rotate(0deg) translateY(-6px);
        }

        .phone-mockup__screen {
            min-height: 367px;
            border-radius: 23px;
            background: linear-gradient(180deg, #f4f5f7 0%, #eef0f3 100%);
            padding: 18px 16px;
            overflow: hidden;
            position: relative;
        }

        .phone-mockup__notch {
            position: absolute;
            top: 0;
            left: 50%;
            width: 96px;
            height: 19px;
            transform: translateX(-50%);
            border-radius: 0 0 13px 13px;
            background: #191b33;
            z-index: 2;
        }

        .app-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 17px;
        }

        .app-top small {
            display: block;
            color: var(--text-gray);
            font-weight: 700;
        }

        .app-top strong {
            display: block;
            margin-top: 3px;
            font-size: 16px;
        }

        .avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            color: #fff;
            font-size: 9px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), #1857a8);
            box-shadow: 0 7px 18px rgba(31, 111, 209, 0.20);
        }

        .search-pill {
            margin: 17px 0 14px;
            min-height: 33px;
            border-radius: 11px;
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 0 11px;
            color: #7c8494;
            background: #eef3fb;
            font-size: 10px;
            font-weight: 650;
        }

        .availability-bar {
            display: flex;
            align-items: center;
            gap: 11px;
            background: #f0fdf4;
            border: 1px solid #4dd07b;
            border-radius: 10px;
            padding: 6px 11px;
            margin: 8px 0 10px;
            font-size: 14px;
        }

        .availability-dot {
            width: 8px;
            height: 8px;
            background: #18e363;
            border-radius: 50%;
            flex-shrink: 0;
            animation: pulse-green 2s infinite;
        }

        @keyframes pulse-green {
            0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.3); }
            50%       { box-shadow: 0 0 0 5px rgba(34,197,94,0.1); }
        }

        .availability-text {
            flex: 1;
            font-weight: 700;
            color: #15803d;
        }

        .availability-time {
            font-weight: 800;
            color: #15803d;
            background: #dcfce7;
            padding: 2px 7px;
            border-radius: 6px;
        }

        .phone-call-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            background: linear-gradient(135deg, #FF6B00, #EE5200);
            color: white;
            text-decoration: none;
            border-radius: 12px;
            padding: 9px 10px;
            margin-top: 10px;
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.02em;
            box-shadow: 0 4px 14px rgba(255,107,0,0.35);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .phone-call-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255,107,0,0.5);
        }

        .app-alert {
            margin-top: 10px;
            border-radius: 17px;
            padding: 15px 16px;
            color: #fff;
            background: linear-gradient(135deg, #1f6fd1, #1557aa);
            box-shadow: 0 14px 32px rgba(31, 111, 209, 0.22);
        }

        .app-alert small {
            font-weight: 900;
            opacity: 0.8;
        }

        .app-alert h3 {
            margin: 5px 0 6px;
            font-size: 10px;
            letter-spacing: -0.035em;
        }

        .app-alert span {
            display: inline-flex;
            padding: 4px 7px;
            border-radius: 7px;
            color: var(--blue);
            background: #fff;
            font-size: 7px;
            font-weight: 900;
        }

        .step {
            position: relative;
            padding: 14px 15px 14px 54px;
            border-radius: 15px;
            background: #fff;
            border: 1px solid rgba(231, 222, 213, 0.72);
            transition: transform 0.25s ease, border-color 0.25s ease;
        }

        .step:hover {
            transform: translateX(5px);
            border-color: rgba(31, 111, 209, 0.18);
        }

        .step__num {
            position: absolute;
            left: 14px;
            top: 13px;
            width: 29px;
            height: 27px;
            border-radius: 10px;
            display: grid;
            place-items: center;
            color: #fff;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        }

        .step strong {
            display: block;
            margin-bottom: 4px;
            font-size: 12px;
        }

        .step span {
            color: var(--text-gray);
            line-height: 1.55;
            font-size: 10px;
        }

/* --- AI ASSISTANT SECTION --- */
#ai-assistant-section {
    display: none;
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    scroll-margin-top: 100px;
}
.ai-card {
    background: white;
    border-radius: 35px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border: 2px solid var(--primary-light);
    position: relative;
}
.ai-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.ai-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}
.ai-title h3 { font-size: 1.5rem; font-weight: 800; color: var(--primary-dark); }
.ai-query {
    background: var(--bg-cream);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--text-gray);
    border-left: 4px solid var(--accent);
}
.ai-response {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    min-height: 100px;
}
.ai-loader {
    display: flex;
    gap: 5px;
    align-items: center;
}
.dot { width: 8px; height: 8px; background: var(--primary); border-radius: 50%; animation: bounce 1.4s infinite ease-in-out; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); } }

/* --- CONTACT SECTION --- */
.contact-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-card-blue {
    background: var(--primary-dark);
    border-radius: 40px;
    padding: 3rem;
    color: white;
    box-shadow: 0 30px 60px rgba(13, 71, 161, 0.2);
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.contact-card-blue::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.card-header-label { font-size: 0.9rem; font-weight: 600; opacity: 0.8; margin-bottom: 0.5rem; display: block; }
.card-phone-number { font-size: 3rem; font-weight: 800; color: white; text-decoration: none; display: block; margin-bottom: 1rem; transition: transform 0.3s; }
.card-phone-number:hover { transform: scale(1.02); }
.card-tagline { font-size: 0.95rem; line-height: 1.6; margin-bottom: 2.5rem; opacity: 0.9; }

.card-details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
.detail-box { background: rgba(255,255,255,0.08); border-radius: 16px; padding: 1.25rem; }
.detail-box span { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.6; display: block; margin-bottom: 0.5rem; }
.detail-box strong { font-size: 0.95rem; display: block; }

.card-btn-cta {
    background: var(--accent);
    color: white;
    width: 100%;
    padding: 1.25rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s;
}
.card-btn-cta:hover { background: var(--accent-light); box-shadow: 0 10px 25px rgba(255, 111, 0, 0.3); }

.contact-info-content .section-tag { color: var(--accent); text-transform: uppercase; font-weight: 800; letter-spacing: 2px; font-size: 0.85rem; margin-bottom: 1rem; display: block; }
.contact-info-content h2 { font-size: 2.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; }
.contact-info-content p { color: var(--text-gray); margin-bottom: 2.5rem; font-size: 1.1rem; }

.contact-checklist {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: transform 0.2s;
}

.checklist-item:hover { transform: translateX(5px); color: var(--primary); }

.checklist-icon {
    width: 22px;
    height: 22px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* --- SERVICES SECTION --- */
.services-section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; color: var(--text-dark); }
.section-header p { font-size: 1.1rem; color: var(--text-gray); max-width: 600px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
    background: white; border-radius: 28px; padding: 2.5rem; text-align: center;
    transition: all 0.3s; border: 1px solid #F1F5F9; display: flex; flex-direction: column; height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.service-card-icon { width: 80px; height: 80px; background: #E3F2FD; border-radius: 20px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-size: 2.5rem; flex-shrink: 0; overflow: hidden; }
.service-card-icon img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--text-dark); }
.service-card p { font-size: 0.95rem; color: var(--text-gray); margin-bottom: 1.5rem; flex-grow: 1; }
.service-card .btn-link { color: var(--primary); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; transition: gap 0.3s; margin-top: auto; }
.service-card:hover .btn-link { gap: 0.75rem; }

/* --- GOOGLE REVIEWS SECTION --- */
.reviews-section {
    background: #f8f9fa;
    padding: 6rem 2rem;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    align-items: center;
}

.rating-big {
    text-align: center;
    min-width: 150px;
}

.rating-big .number {
    font-size: 4rem;
    font-weight: 700;
    color: #3c4043;
    line-height: 1;
}

.stars-gold {
    color: var(--google-stars);
    font-size: 1.5rem;
    margin: 0.5rem 0;
}

.reviews-count {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.rating-bars {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #3c4043;
}

.bar-bg {
    height: 8px;
    background: #e8eaed;
    border-radius: 4px;
    flex-grow: 1;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--google-stars);
    border-radius: 4px;
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1rem;
}

.google-icon-svg {
    width: 24px;
    height: 24px;
}

.reviews-grid-google {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #dadce0;
    transition: all 0.2s;
}

.review-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-user-info .name {
    font-weight: 500;
    font-size: 0.95rem;
    color: #3c4043;
    display: block;
}

.review-user-info .meta {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.review-stars {
    color: var(--google-stars);
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
}

.review-text {
    font-size: 0.9rem;
    color: #3c4043;
    line-height: 1.5;
}

/* --- BLOG SECTION --- */
.blog-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-tag {
    background: var(--bg-cream);
    color: var(--accent);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1rem;
    width: fit-content;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.blog-read-more {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

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

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

/* --- ORANGE FINAL CTA (Z OBRAZKA) - SKRÓCONA O POŁOWĘ --- */
.orange-cta-section {
    background: var(--accent);
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.orange-cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.orange-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -1px;
}

.orange-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    opacity: 0.95;
}

.orange-cta-phone {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.orange-cta-phone:hover {
    transform: scale(1.05);
}

.orange-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-dark-cta {
    background: #1A1A2E;
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
}

.btn-dark-cta:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-white-cta {
    background: white;
    color: var(--primary);
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    border: none;
}

.btn-white-cta:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

/* --- FOOTER --- */
.footer { background: var(--text-dark); color: white; padding: 5rem 2rem 2rem; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; }

@media (max-width: 1024px) {
    .hero, .contact-section { grid-template-columns: 1fr; text-align: center; }
    .hero-content { order: 1; }
    .hero-visual { order: 2; margin-top: 2rem; }
    .hero-stats, .contact-checklist { justify-content: center; }
    .card-phone-number { font-size: 2.5rem; }
    .floating-photos, .deco-line { display: none; }
    .contact-card-blue { position: static; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .orange-cta-content h2 { font-size: 1.8rem; }
    .orange-cta-phone { font-size: 2rem; }
}
@media (max-width: 768px) {
    .contact-checklist { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
    .card-details-grid { grid-template-columns: 1fr; }
    .orange-cta-buttons { flex-direction: column; width: 100%; align-items: center; }
    .btn-dark-cta, .btn-white-cta { width: 100%; max-width: 300px; }
}

/* --- HERO: fix nagłówka i przycisków na mobile --- */
@media (max-width: 768px) {
    .hero { padding: calc(var(--nav-height) + 2rem) 1.25rem 3rem; }
    .hero h1 { font-size: 2.3rem; }
    .h1-label { font-size: 2rem; }
    .h1-main { font-size: 1.55rem; white-space: normal; }
    .h1-sub { font-size: 1.2rem; line-height: 1.35; }
    .hero-stats { gap: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .hero-buttons { flex-wrap: wrap; gap: 0.75rem; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { min-width: 0; flex: 1 1 160px; }
}
@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { width: 100%; flex: 0 0 auto; }
    .hero-stats { gap: 1rem; }
    .stat-number { font-size: 1.75rem; }
    .stat-label { font-size: 0.82rem; }
}
@media (max-width: 380px) {
    .h1-label { font-size: 1.75rem; }
    .h1-main { font-size: 1.4rem; }
}
@media (max-width: 400px) {
    .phone-mockup__screen .step { display: none; }
}