:root {
            --primary: #f5c400;
            --primary-dark: #d9ae00;
            --dark: #111111;
            --dark-2: #1b1b1b;
            --text: #222222;
            --muted: #666666;
            --light: #f8f8f8;
            --white: #ffffff;
            --border: #e7e7e7;
            --shadow: 0 14px 35px rgba(0,0,0,0.08);
            --radius: 18px;
            --container: 1200px;
            --transition: all .25s ease;
        }

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

        .google-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 4px;
        }

        .google-icon svg {
            width: 16px;
            height: 16px;
            display: block;
        }

        html {
            scroll-behavior: smooth;
        }

        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            color: var(--text);
            background: var(--white);
            line-height: 1.6;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        img, iframe {
            display: block;
            max-width: 100%;
        }

        .container {
            width: min(92%, var(--container));
            margin: 0 auto;
        }

        .topbar {
            background: var(--primary);
            color: var(--dark);
            text-align: center;
            font-weight: 800;
            padding: 10px 15px;
            font-size: 14px;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
        }

        .topbar-track {
            display: inline-block;
            min-width: 100%;
            animation: topbarSlide 8s ease-in-out infinite;
        }

        .topbar-track span {
            display: inline-block;
            padding: 0 20px;
        }

        @keyframes topbarSlide {
            0% {
                opacity: 0;
                transform: translateX(100%);
            }
            15% {
                opacity: 1;
                transform: translateX(0);
            }
            70% {
                opacity: 1;
                transform: translateX(0);
            }
            100% {
                opacity: 0;
                transform: translateX(-100%);
            }
        }

        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(17,17,17,.96);
            backdrop-filter: blur(8px);
            box-shadow: 0 6px 20px rgba(0,0,0,.15);
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 16px 0;
        }

        .logo {
            display: none;
            flex-shrink: 0;
        }

        .logo img {
            height: 64px;
            width: auto;
            display: block;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 24px;
            align-items: center;
        }

        .nav-links a {
            color: var(--white);
            font-weight: 700;
            font-size: 15px;
            transition: var(--transition);
        }

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

        .nav-cta,
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            font-weight: 900;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            text-align: center;
        }

        .nav-cta {
            background: var(--primary);
            color: var(--dark);
            padding: 12px 18px;
        }

        .nav-cta:hover,
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }
        .hero {
            min-height: 92vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            color: var(--white);
            background:
                linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.72)),
                url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&w=1600&q=80') center center / cover no-repeat;
        }

        .hero::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 120px;
            background: linear-gradient(to top, #fff, transparent);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-main,
        .hero-card {
            position: relative;
            z-index: 2;
        }

        .hero-owl {
            position: absolute;
            right: 340px;
            bottom: 5px;
            width: 230px;
            height: auto;
            z-index: 1;
            pointer-events: none;
            filter: drop-shadow(0 14px 34px rgba(0,0,0,0.45));
            opacity: 0.96;
        }

        .badge {
            display: inline-block;
            background: rgba(245,196,0,.14);
            border: 1px solid rgba(245,196,0,.3);
            color: var(--primary);
            padding: 10px 16px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 900;
            margin-bottom: 18px;
        }

        .hero h1 {
            font-size: clamp(36px, 5vw, 66px);
            line-height: 1.05;
            margin-bottom: 18px;
            font-weight: 900;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 18px;
            color: rgba(255,255,255,.9);
            max-width: 650px;
            margin-bottom: 28px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 24px;
        }

        .btn {
            padding: 15px 22px;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--dark);
        }

        .btn-outline {
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.2);
            color: var(--white);
        }

        .btn-outline:hover {
            background: rgba(255,255,255,.12);
            transform: translateY(-2px);
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .hero-features span {
            background: rgba(255,255,255,.08);
            border: 1px solid rgba(255,255,255,.12);
            padding: 10px 14px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 800;
        }

        .hero-card {
            background: rgba(255,255,255,.09);
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 24px;
            padding: 28px;
            backdrop-filter: blur(10px);
            box-shadow: 0 12px 35px rgba(0,0,0,.18);
            max-width: 430px;
            margin-left: auto;
        }

        .hero-card h3 {
            font-size: 26px;
            margin-bottom: 10px;
        }

        .hero-card p {
            font-size: 15px;
            margin-bottom: 16px;
        }

        .hero-card ul {
            list-style: none;
            display: grid;
            gap: 12px;
            margin-bottom: 20px;
        }

        .hero-card li {
            position: relative;
            padding-left: 24px;
            font-size: 15px;
        }

        .hero-card li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary);
            font-weight: 900;
        }

        section {
            padding: 90px 0;
        }

        .section-head {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-head span {
            display: inline-block;
            color: #b68f00;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 13px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .section-head h2 {
            font-size: clamp(28px, 4vw, 42px);
            margin-bottom: 10px;
        }

        .section-head p {
            max-width: 760px;
            margin: 0 auto;
            color: var(--muted);
            font-size: 17px;
        }

        .services,
        .pricing {
            background: var(--light);
        }

        .grid {
            display: grid;
            gap: 24px;
        }

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

        .card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 28px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            overflow: hidden;
        }

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

       .icon-box {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: transparent;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    overflow: hidden;
    padding: 0;
}

.icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

        .card h3 {
            font-size: 22px;
            margin-bottom: 10px;
        }

        .card p {
            color: var(--muted);
            font-size: 15px;
        }

        .about-wrap,
        .contact-wrap {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 35px;
            align-items: center;
        }

        .about-image {
            min-height: 500px;
            border-radius: 24px;
            box-shadow: var(--shadow);
            background:
                linear-gradient(rgba(0,0,0,.28), rgba(0,0,0,.38)),
                url('home.webp') center center / cover no-repeat;
        }

        .about-content h2 {
            font-size: clamp(30px, 4vw, 42px);
            margin-bottom: 16px;
            line-height: 1.15;
        }

        .about-content p {
            color: var(--muted);
            margin-bottom: 16px;
            font-size: 16px;
        }

        .about-list {
            list-style: none;
            display: grid;
            gap: 14px;
            margin: 24px 0;
        }

        .about-list li {
            background: var(--white);
            border-left: 5px solid var(--primary);
            box-shadow: 0 8px 20px rgba(0,0,0,.06);
            border-radius: 14px;
            padding: 14px 16px;
            font-weight: 700;
        }

        .reviews {
            background: linear-gradient(180deg, #0b1220 0%, #111111 100%);
            color: #fff;
        }

        .reviews .section-head span,
        .faq .section-head span,
        .gallery .section-head span {
            color: var(--primary);
        }

        .reviews .section-head h2,
        .reviews .section-head p,
        .faq .section-head h2,
        .faq .section-head p,
        .gallery .section-head h2,
        .gallery .section-head p {
            color: #fff;
        }

        .reviews .section-head p,
        .faq .section-head p,
        .gallery .section-head p {
            color: rgba(255,255,255,.75);
        }

        

        .reviews .section-head {
            margin-bottom: 28px;
        }

        .reviews-summary-card {
            max-width: 860px;
            margin: 0 auto 34px;
            padding: 24px 26px;
            border-radius: 26px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            background:
                linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025)),
                rgba(255,255,255,0.035);
            border: 1px solid rgba(245,196,0,0.24);
            box-shadow: 0 22px 50px rgba(0,0,0,.28);
            backdrop-filter: blur(12px);
            position: relative;
            overflow: hidden;
        }

        .reviews-summary-card::before {
            content: "";
            position: absolute;
            inset: -1px;
            background: radial-gradient(circle at 18% 20%, rgba(245,196,0,.16), transparent 36%);
            pointer-events: none;
        }

        .reviews-summary-main,
        .reviews-summary-btn {
            position: relative;
            z-index: 1;
        }

        .reviews-summary-main {
            display: flex;
            align-items: center;
            gap: 18px;
            min-width: 0;
        }

        .reviews-summary-icon {
            width: 64px;
            height: 64px;
            border-radius: 20px;
            background: rgba(255,255,255,0.94);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 12px 26px rgba(0,0,0,.18);
        }

        .reviews-summary-icon svg {
            width: 36px;
            height: 36px;
            display: block;
        }

        .reviews-summary-content {
            min-width: 0;
        }

        .reviews-summary-label {
            display: inline-block;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1.1px;
            font-size: 12px;
            font-weight: 900;
            margin-bottom: 6px;
        }

        .reviews-summary-rating-row {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 8px;
            line-height: 1;
        }

        .reviews-summary-score {
            color: #fff;
            font-size: 48px;
            line-height: .95;
            font-weight: 900;
            letter-spacing: -1px;
        }

        .reviews-summary-stars {
            color: var(--primary);
            font-size: 22px;
            letter-spacing: 2px;
            line-height: 1;
            white-space: nowrap;
        }

        .reviews-summary-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .reviews-summary-pill {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(245,196,0,0.14);
            border: 1px solid rgba(245,196,0,0.26);
            color: #fff;
            padding: 7px 12px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 900;
            line-height: 1;
        }

        .reviews-summary-note {
            color: rgba(255,255,255,.72);
            font-size: 14px;
        }

        .reviews-summary-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 22px;
            border-radius: 999px;
            background: var(--primary);
            color: var(--dark);
            font-weight: 900;
            white-space: nowrap;
            box-shadow: 0 12px 28px rgba(245,196,0,.20);
            transition: var(--transition);
        }

        .reviews-summary-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .reviews-summary-card {
                flex-direction: column;
                align-items: stretch;
                padding: 22px 20px;
            }

            .reviews-summary-main {
                align-items: flex-start;
            }

            .reviews-summary-score {
                font-size: 42px;
            }

            .reviews-summary-btn {
                width: 100%;
            }
        }

        @media (max-width: 520px) {
            .reviews .section-head {
                margin-bottom: 24px;
            }

            .reviews-summary-main {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .reviews-summary-rating-row,
            .reviews-summary-meta {
                justify-content: center;
            }

            .reviews-summary-card {
                border-radius: 22px;
                margin-bottom: 28px;
            }
        }

        .review-source {
            display: block;
            color: var(--primary) !important;
            font-size: 13px !important;
            font-weight: 700;
            margin-top: 3px;
        }

        .reviews-mascot-wrap {
            display: flex;
            justify-content: center;
            margin: -6px 0 28px;
        }

        .reviews-mascot {
            width: min(100%, 420px);
            height: auto;
            filter: drop-shadow(0 16px 35px rgba(0,0,0,.28));
            pointer-events: none;
        }

.reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 25px;
        }

        .review-card {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 20px;
            padding: 30px 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,.2);
        }

        .review-stars {
            color: var(--primary);
            font-size: 22px;
            letter-spacing: 2px;
            margin-bottom: 14px;
        }

        .review-text {
            color: rgba(255,255,255,.88);
            line-height: 1.8;
            font-size: 16px;
            margin-bottom: 22px;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 14px;
            border-top: 1px solid rgba(255,255,255,.08);
            padding-top: 18px;
        }

        .review-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--primary);
            color: #111;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .review-author strong {
            display: block;
            color: #fff;
            font-size: 16px;
            margin-bottom: 4px;
        }

        .review-author span {
            color: rgba(255,255,255,.65);
            font-size: 14px;
        }

        .price-card {
            text-align: center;
            border: 2px solid transparent;
        }

        .price-card.highlight {
            border-color: var(--primary);
            transform: scale(1.02);
        }

        .price-value {
            font-size: 40px;
            font-weight: 900;
            margin: 12px 0;
        }

        .price-note {
            color: var(--muted);
            font-size: 15px;
            margin-bottom: 18px;
        }

        .price-list {
            list-style: none;
            display: grid;
            gap: 12px;
            color: var(--muted);
            margin: 20px 0 24px;
        }

        .faq {
            background: #0f172a;
            color: #fff;
        }

        .faq-wrap {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            gap: 18px;
        }

        .faq-item {
            background: rgba(255,255,255,0.04);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 18px;
            overflow: hidden;
        }

        .faq-question {
            width: 100%;
            background: transparent;
            color: #fff;
            border: 0;
            padding: 22px 24px;
            text-align: left;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .faq-question span:first-child {
            min-width: 0;
        }

        .faq-question span:last-child {
            color: var(--primary);
            font-size: 24px;
            line-height: 1;
            flex-shrink: 0;
            transition: transform .2s ease;
        }

        .faq-question.open span:last-child {
            transform: rotate(45deg);
        }

        .faq-answer {
            display: none;
            padding: 0 24px 22px;
            color: rgba(255,255,255,.82);
            line-height: 1.8;
            font-size: 16px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .faq-answer.show {
            display: block;
        }

        .contact-box {
            background: var(--white);
            border-radius: 22px;
            box-shadow: var(--shadow);
            padding: 30px;
            overflow: hidden;
        }

        .contact-box h3 {
            font-size: 26px;
            margin-bottom: 16px;
        }

        .contact-list {
            list-style: none;
            display: grid;
            gap: 16px;
            margin-top: 10px;
        }

        .contact-list li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
        }

        .contact-list strong {
            display: block;
            margin-bottom: 2px;
        }

        .contact-list p,
        .contact-list a {
            color: var(--muted);
            font-size: 15px;
            overflow-wrap: anywhere;
        }

        .contact-form {
            display: grid;
            gap: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 15px 16px;
            border: 1px solid var(--border);
            border-radius: 14px;
            font-size: 15px;
            outline: none;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #d1aa00;
            box-shadow: 0 0 0 4px rgba(245,196,0,.12);
        }

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

        .map-box {
            margin-top: 20px;
            width: 100%;
            overflow: hidden;
        }

        .map-box iframe {
            width: 100%;
            height: 250px;
            border: none;
            border-radius: 18px;
        }

        .gallery {
            background: #020617;
            color: #fff;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(12, minmax(0, 1fr));
            gap: 18px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,.25);
            background: #0b1220;
            min-height: 260px;
        }

        .gallery-item.large { grid-column: span 6; min-height: 340px; }
        .gallery-item.medium { grid-column: span 4; }
        .gallery-item.small { grid-column: span 3; }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        .gallery-item::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.1));
            z-index: 1;
            opacity: .85;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-caption {
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 16px;
            z-index: 2;
        }

        .gallery-caption strong {
            display: block;
            color: #fff;
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .gallery-caption span {
            color: rgba(255,255,255,.82);
            font-size: 14px;
        }

        footer {
            background: var(--dark);
            color: var(--white);
            padding: 35px 0;
        }

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

        .footer-title {
            font-size: 28px;
            font-weight: 900;
        }

        .footer-logo img {
            width: 110px;
            height: auto;
            display: block;
        }

        .footer-title span {
            color: var(--primary);
        }

        .footer-wrap p {
            color: rgba(255,255,255,.72);
        }

        .footer-links {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: rgba(255,255,255,.86);
        }

        .floating-call,
        .floating-whatsapp {
            position: fixed;
            right: 18px;
            width: 66px;
            height: 66px;
            border-radius: 50%;
            display: grid;
            place-items: center;
            box-shadow: 0 10px 30px rgba(0,0,0,.2);
            z-index: 999;
            overflow: hidden;
        }

        .floating-call {
            bottom: 88px;
            background: var(--primary);
            color: var(--dark);
            font-size: 24px;
        }

        .floating-whatsapp {
            bottom: 110px;
            background: transparent;
            color: #fff;
        }

        .floating-whatsapp img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .mobile-cta {
            display: none;
            position: fixed;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--dark);
            padding: 12px 14px;
            z-index: 998;
            box-shadow: 0 -8px 20px rgba(0,0,0,.16);
        }

        .mobile-cta a {
            display: block;
            text-align: center;
            background: var(--primary);
            color: var(--dark);
            padding: 15px;
            border-radius: 999px;
            font-weight: 900;
        }

        .cookie-banner {
            position: fixed;
            left: 18px;
            right: 18px;
            bottom: 18px;
            z-index: 1200;
            background: rgba(17,17,17,.98);
            color: var(--white);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 20px;
            box-shadow: 0 18px 40px rgba(0,0,0,.28);
            padding: 20px;
            display: none;
        }

        .cookie-banner.show {
            display: block;
        }

        .cookie-banner-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            flex-wrap: wrap;
        }

        .cookie-banner-text {
            flex: 1 1 420px;
        }

        .cookie-banner-text strong {
            display: block;
            font-size: 18px;
            margin-bottom: 6px;
            color: var(--primary);
        }

        .cookie-banner-text p {
            margin: 0;
            color: rgba(255,255,255,.85);
            font-size: 14px;
            line-height: 1.6;
        }

        .cookie-banner-actions {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .cookie-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            font-weight: 900;
            border: none;
            cursor: pointer;
            padding: 12px 18px;
            transition: var(--transition);
            font-size: 14px;
        }

        .cookie-btn-accept {
            background: var(--primary);
            color: var(--dark);
        }

        .cookie-btn-accept:hover {
            background: var(--primary-dark);
        }

        .cookie-btn-essential {
            background: transparent;
            color: var(--white);
            border: 1px solid rgba(255,255,255,.2);
        }

        .cookie-btn-essential:hover {
            background: rgba(255,255,255,.08);
        }

        .services,
        .pricing {
            position: relative;
            box-shadow: inset 0 1px 0 rgba(255,255,255,.7), inset 0 -1px 0 rgba(0,0,0,.03);
        }

        .hero h1 {
            text-shadow: 0 6px 22px rgba(0,0,0,.32);
        }

        .hero p {
            text-shadow: 0 2px 10px rgba(0,0,0,.18);
        }

        .hero-card {
            background: rgba(255,255,255,.10);
            border: 1px solid rgba(255,255,255,.16);
        }

        .card {
            border: 1px solid transparent;
        }

        .card:hover {
            transform: translateY(-8px);
            border-color: rgba(245,196,0,.28);
            box-shadow: 0 18px 38px rgba(0,0,0,.10);
        }

        .icon-box {
            margin-bottom: 20px;
            transition: all .25s ease;
        }

        .card:hover .icon-box {
            transform: scale(1.05);
            background: rgba(245,196,0,.22);
        }

        .review-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .review-text {
            flex-grow: 1;
        }

        .review-author {
            margin-top: auto;
        }

        .google-icon {
            margin-top: 6px;
            opacity: .95;
        }

        footer {
            padding: 28px 0 32px;
        }

        .footer-wrap {
            align-items: flex-end;
        }

        .footer-title.footer-logo img {
            width: 96px;
        }

        .footer-credit {
            letter-spacing: .2px;
        }

        .footer-credit {
    margin-top: 8px;
    color: #f5c400;
    font-weight: 700;
    font-size: 14px;
}

.footer-credit a {
    color: #f5c400;
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

#kontakt {
    background: #0f172a;
    color: #fff;
}

#kontakt .section-head h2 {
    color: #fff;
}

#kontakt .section-head span {
    color: #f5c400;
}

#kontakt .contact-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: #fff;
}

#kontakt .contact-box h3,
#kontakt .contact-list strong {
    color: #fff;
}

#kontakt .contact-list p,
#kontakt .contact-list a {
    color: rgba(255,255,255,.82);
}

#kontakt .contact-form input,
#kontakt .contact-form textarea {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
}

#kontakt .contact-form input::placeholder,
#kontakt .contact-form textarea::placeholder {
    color: rgba(255,255,255,.6);
}


.coverage-section {
    background: #0f172a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.coverage-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(245,196,0,.08), transparent 45%);
    pointer-events: none;
}

.coverage-section .container {
    position: relative;
    z-index: 1;
}

.coverage-section .section-head span {
    color: var(--primary);
}

.coverage-section .section-head h2 {
    color: #fff;
}

.coverage-section .section-head p {
    color: rgba(255,255,255,.78);
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.coverage-tags span {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    backdrop-filter: blur(6px);
}

.coverage-card {
    max-width: 1050px;
    margin: 0 auto;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 34px 32px;
    box-shadow: 0 14px 35px rgba(0,0,0,.22);
}

.coverage-card p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,.84);
    margin-bottom: 18px;
}

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

.coverage-cta {
    text-align: center;
    margin-top: 28px;
}


.news-section {
    background: linear-gradient(180deg, #111111 0%, #0f172a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(245,196,0,.10), transparent 38%);
    pointer-events: none;
}

.news-section .container {
    position: relative;
    z-index: 1;
}

.news-section .section-head span {
    color: var(--primary);
}

.news-section .section-head h2 {
    color: #fff;
}

.news-section .section-head p {
    color: rgba(255,255,255,.78);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.news-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 16px 36px rgba(0,0,0,.22);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245,196,0,.28);
}

.news-card.featured {
    grid-column: span 2;
    background:
        linear-gradient(135deg, rgba(245,196,0,.14), rgba(255,255,255,.04)),
        rgba(255,255,255,.05);
}

.news-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
    margin-bottom: 16px;
}

.news-badge-real {
    background: rgba(245,196,0,.18);
    color: var(--primary);
    border: 1px solid rgba(245,196,0,.26);
}

.news-badge-fun {
    background: rgba(255,255,255,.10);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
}

.news-badge-update {
    background: rgba(255,255,255,.08);
    color: #cbd5e1;
    border: 1px solid rgba(255,255,255,.12);
}

.news-card h3 {
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #fff;
}

.news-card p {
    color: rgba(255,255,255,.84);
    font-size: 15px;
    line-height: 1.8;
}

.news-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
}

.news-list li {
    position: relative;
    padding-left: 18px;
    color: rgba(255,255,255,.78);
    font-size: 14px;
}

.news-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 18px;
    line-height: 1;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.news-meta span {
    color: rgba(255,255,255,.64);
    font-size: 13px;
}

.news-link {
    color: var(--primary);
    font-weight: 900;
}

.news-link:hover {
    color: #fff;
}


        .waiting-owl {
            position: fixed;
            left: 18px;
            bottom: 22px;
            z-index: 1100;
            display: none;
            align-items: flex-end;
            gap: 12px;
        }

        .waiting-owl.show {
            display: flex;
        }

        .waiting-owl-bubble {
            background: rgba(17,17,17,.96);
            color: var(--white);
            border: 1px solid rgba(255,255,255,.10);
            border-radius: 18px;
            padding: 12px 14px;
            max-width: 235px;
            box-shadow: 0 14px 35px rgba(0,0,0,.22);
            font-size: 14px;
            line-height: 1.45;
        }

        .waiting-owl-bubble strong {
            display: block;
            color: var(--primary);
            margin-bottom: 4px;
        }

        .waiting-owl-button {
            width: 72px;
            height: 72px;
            border: none;
            border-radius: 50%;
            background: transparent;
            padding: 0;
            cursor: pointer;
            box-shadow: 0 10px 28px rgba(0,0,0,.22);
            overflow: hidden;
            flex-shrink: 0;
        }

        .waiting-owl-button img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .tap-game-modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.68);
            z-index: 1200;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .tap-game-modal.show {
            display: flex;
        }

        .tap-game-panel {
            width: min(100%, 420px);
            background: #08111f;
            color: var(--white);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: 24px;
            box-shadow: 0 20px 50px rgba(0,0,0,.28);
            overflow: hidden;
        }

        .tap-game-head {
            padding: 20px 20px 12px;
        }

        .tap-game-head h3 {
            font-size: 24px;
            margin-bottom: 6px;
        }

        .tap-game-head p {
            color: rgba(255,255,255,.78);
            font-size: 14px;
        }

        .tap-game-stats {
            display: flex;
            justify-content: space-between;
            gap: 12px;
            padding: 0 20px 16px;
            color: var(--primary);
            font-weight: 900;
        }

        .tap-game-arena {
            position: relative;
            margin: 0 20px 20px;
            height: 280px;
            border-radius: 20px;
            background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
            border: 1px solid rgba(255,255,255,.08);
            overflow: hidden;
        }

        .tap-target {
            position: absolute;
            width: 72px;
            height: 72px;
            border: none;
            border-radius: 50%;
            background: transparent;
            cursor: pointer;
            padding: 0;
            display: none;
        }

        .tap-target img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }

        .tap-target.show {
            display: block;
        }

        .tap-game-controls {
            display: flex;
            gap: 10px;
            padding: 0 20px 20px;
            flex-wrap: wrap;
        }

        .tap-game-message {
            padding: 0 20px 16px;
            color: rgba(255,255,255,.82);
            min-height: 24px;
            font-size: 14px;
        }

        .waiting-game-active .floating-whatsapp {
            display: none !important;
        }

        @media (max-width: 992px) {
            .navbar {
                justify-content: space-between;
            }

            .hero-grid,
            .about-wrap,
            .contact-wrap {
                grid-template-columns: 1fr;
            }

            .hero-card {
                margin-left: 0;
                max-width: 100%;
            }

            .grid-3,
            .reviews-grid,
            .news-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .news-card.featured {
                grid-column: span 2;
            }

            .gallery-item.large,
            .gallery-item.medium,
            .gallery-item.small {
                grid-column: span 6;
                min-height: 260px;
            }
            .nav-links {
                position: static;
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                width: 100%;
                gap: 10px;
                padding: 0;
                background: transparent;
                border-radius: 0;
                box-shadow: none;
                overflow-x: auto;
                white-space: nowrap;
                scrollbar-width: none;
                -webkit-overflow-scrolling: touch;
            }

            .nav-links::-webkit-scrollbar {
                display: none;
            }

            .nav-links a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 8px 10px;
                border-radius: 999px;
                background: rgba(255,255,255,.06);
                border: 1px solid rgba(255,255,255,.08);
                font-size: 13px;
                line-height: 1;
            }
.desktop-only {
                display: none;
            }

            .hero-main {
                padding-right: 0;
                text-align: center;
            }

            .hero-buttons,
            .hero-features {
                justify-content: center;
            }

            .hero-owl {
                top: 105px;
                right: 10px;
                bottom: auto;
                width: 130px;
                opacity: 1;
                z-index: 3;
            }

            .section-head {
                margin-bottom: 38px;
            }
        }

        @media (max-width: 640px) {
            .waiting-owl {
                left: 12px;
                right: 12px;
                bottom: 96px;
                justify-content: flex-start;
            }

            .coverage-tags {
                gap: 10px;
                margin-bottom: 22px;
            }

            .coverage-tags span {
                width: calc(50% - 5px);
                text-align: center;
                padding: 11px 12px;
            }

            .coverage-card {
                padding: 24px 22px;
            }

            .coverage-card p {
                font-size: 16px;
                line-height: 1.8;
            }

            .waiting-owl-bubble {
                max-width: calc(100vw - 120px);
                font-size: 13px;
            }

            .tap-game-panel {
                width: 100%;
            }

            .tap-game-arena {
                height: 240px;
            }

            section {
                padding: 70px 0;
            }

            .container {
                width: 100%;
                padding-left: 16px;
                padding-right: 16px;
            }

            
            .reviews-mascot {
                width: min(100%, 280px);
            }

.grid-3,
            .reviews-grid,
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .topbar {
                font-size: 12px;
                padding: 9px 12px;
            }

            .hero {
                min-height: auto;
                padding: 90px 0 70px;
            }

            .hero h1 {
                font-size: clamp(32px, 10vw, 44px);
            }

            .hero p {
                font-size: 16px;
            }

            .hero-owl {
                width: 90px !important;
                left: 50% !important;
                right: auto !important;
                top: 30px !important;
                bottom: auto !important;
                transform: translateX(-50%);
                opacity: 0.95;
            }

            .hero-main {
                padding-right: 0 !important;
                padding-top: 70px !important;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-features {
                justify-content: center;
            }

            .hero-features span {
                width: 100%;
                text-align: center;
            }

            .hero-card,
            .card,
            .contact-box,
            .review-card {
                padding: 22px;
            }

            .btn {
                width: 100%;
            }

            .mobile-cta {
                display: block;
            }

            body {
                padding-bottom: 88px;
            }

            .floating-call {
                bottom: 84px;
            }

            .floating-whatsapp {
                right: 16px;
                bottom: 108px;
                width: 72px;
                height: 72px;
            }

            .gallery-item.large,
            .gallery-item.medium,
            .gallery-item.small {
                grid-column: span 1;
                min-height: 240px;
            }

            .faq-question {
                font-size: 16px;
                padding: 20px;
            }

            .about-image {
                min-height: 420px;
                background-position: 56% center;
            }

            .logo img {
                height: 52px;
            }

            .footer-wrap {
                text-align: center;
                justify-content: center;
            }

            .footer-links {
                justify-content: center;
            }

            .footer-credit {
                text-align: center;
            }

            .cookie-banner {
                left: 12px;
                right: 12px;
                bottom: 96px;
                padding: 16px;
            }

            .cookie-banner-actions {
                width: 100%;
            }

            .cookie-btn {
                width: 100%;
            }
        }
    
.nav-links .fa-instagram,
.nav-links .instagram-icon {
    color: #f5c400;
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
}
.nav-links .fa-instagram:hover,
.nav-links .instagram-link:hover .instagram-icon {
    color: #ffffff;
}



/* ACCESSIBILITY WIDGET */
.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 3000;
    background: #ffffff;
    color: #111111;
    padding: 12px 18px;
    border: 3px solid var(--primary);
    border-radius: 10px;
    font-weight: 900;
    transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

:focus-visible {
    outline: 3px solid #0b74de !important;
    outline-offset: 4px !important;
}

.accessibility-trigger {
    position: fixed;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1450;
    width: 58px;
    height: 58px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: var(--primary);
    color: #111111;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
    display: grid;
    place-items: center;
    font-size: 25px;
    cursor: pointer;
}
.accessibility-trigger:hover { background: var(--primary-dark); }

.accessibility-panel {
    position: fixed;
    left: 88px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1450;
    width: min(340px, calc(100vw - 116px));
    max-height: min(680px, calc(100vh - 32px));
    overflow-y: auto;
    background: #ffffff;
    color: #111111;
    border: 2px solid var(--primary);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(0,0,0,.34);
    padding: 20px;
    display: none;
}
.accessibility-panel.open { display: block; }
.accessibility-panel h2 { font-size: 22px; margin: 0 35px 6px 0; }
.accessibility-panel > p { font-size: 14px; color: #555; margin-bottom: 16px; }
.accessibility-close {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #111111;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
}
.accessibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.accessibility-option {
    min-height: 72px;
    padding: 12px 8px;
    border: 1px solid #d8d8d8;
    border-radius: 13px;
    background: #f7f7f7;
    color: #111111;
    font-weight: 800;
    cursor: pointer;
    line-height: 1.25;
}
.accessibility-option:hover { border-color: #9a7c00; background: #fff8d7; }
.accessibility-option[aria-pressed="true"] { background: #111111; color: #ffffff; border-color: #111111; }
.accessibility-reset { grid-column: 1 / -1; background: var(--primary); border-color: #c49d00; }
.accessibility-status { margin-top: 14px; min-height: 22px; font-size: 13px; font-weight: 700; color: #333; }

html.a11y-font-large { font-size: 112.5%; }
html.a11y-font-xlarge { font-size: 125%; }
html.a11y-readable-font body,
html.a11y-readable-font button,
html.a11y-readable-font input,
html.a11y-readable-font textarea { font-family: Verdana, Arial, sans-serif !important; letter-spacing: .02em; }
html.a11y-underline-links a:not(.btn):not(.nav-cta):not(.floating-whatsapp) { text-decoration: underline !important; text-underline-offset: 3px; }
html.a11y-grayscale { filter: grayscale(100%); }
html.a11y-high-contrast body { background: #000 !important; color: #fff !important; }
html.a11y-high-contrast body * { border-color: #fff !important; text-shadow: none !important; box-shadow: none !important; }
html.a11y-high-contrast section,
html.a11y-high-contrast header,
html.a11y-high-contrast footer,
html.a11y-high-contrast .card,
html.a11y-high-contrast .contact-box,
html.a11y-high-contrast .review-card,
html.a11y-high-contrast .news-card,
html.a11y-high-contrast .coverage-card { background: #000 !important; color: #fff !important; }
html.a11y-high-contrast p,
html.a11y-high-contrast span,
html.a11y-high-contrast h1,
html.a11y-high-contrast h2,
html.a11y-high-contrast h3,
html.a11y-high-contrast li,
html.a11y-high-contrast a { color: #fff !important; }
html.a11y-high-contrast .btn,
html.a11y-high-contrast .nav-cta,
html.a11y-high-contrast .accessibility-trigger { background: #ffff00 !important; color: #000 !important; border-color: #ffff00 !important; }
html.a11y-stop-animations *,
html.a11y-stop-animations *::before,
html.a11y-stop-animations *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

@media (max-width: 640px) {
    .accessibility-trigger { left: 10px; top: auto; bottom: 178px; transform: none; width: 54px; height: 54px; }
    .accessibility-panel { left: 10px; right: 10px; top: auto; bottom: 92px; transform: none; width: auto; max-height: calc(100vh - 120px); }
}

/* =========================================================
   ZAJEDNIČKE LANDING PAGE KOMPONENTE
   Koriste ih /vucna-sluzba-rijeka/, /pomoc-na-cesti-rijeka/,
   /najam-prikolica-rijeka/ i buduće landing stranice.
   ========================================================= */

.landing-hero {
    min-height: 72vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(0,0,0,.82), rgba(0,0,0,.58)),
        url('home.webp') center center / cover no-repeat;
}

.landing-hero .container {
    position: relative;
    z-index: 2;
}

.landing-hero-copy {
    max-width: 800px;
    padding: 90px 0;
}

.landing-hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.04;
    margin-bottom: 20px;
    font-weight: 900;
    text-shadow: 0 6px 22px rgba(0,0,0,.32);
}

.landing-hero h1 span {
    color: var(--primary);
}

.landing-hero p {
    max-width: 690px;
    margin-bottom: 28px;
    font-size: 18px;
    color: rgba(255,255,255,.90);
}

.landing-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.landing-proof span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    font-size: 14px;
    font-weight: 800;
}

.breadcrumbs {
    padding: 18px 0;
    background: var(--light);
    border-bottom: 1px solid var(--border);
    color: var(--muted);
    font-size: 14px;
}

.breadcrumbs a {
    font-weight: 800;
    color: var(--dark);
}

.breadcrumbs a:hover {
    color: #b68f00;
}

.service-intro-grid,
.service-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 44px;
    align-items: center;
}

.service-photo {
    min-height: 470px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #111;
}

.service-photo img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.service-copy h2 {
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    margin-bottom: 18px;
}

.service-copy p {
    color: var(--muted);
    margin-bottom: 16px;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.feature-list li {
    position: relative;
    padding: 14px 16px 14px 46px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0,0,0,.05);
    font-weight: 700;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 17px;
    top: 13px;
    color: #9a7a00;
    font-weight: 900;
}

.quick-info {
    background: var(--dark);
    color: var(--white);
}

.quick-info .section-head h2,
.quick-info .section-head p {
    color: var(--white);
}

.quick-info .section-head p {
    color: rgba(255,255,255,.76);
}

.quick-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 22px;
}

.quick-info-card {
    padding: 28px;
    border-radius: 20px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
}

.quick-info-card strong {
    display: block;
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 8px;
}

.quick-info-card p {
    color: rgba(255,255,255,.78);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 20px;
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 26px;
    box-shadow: var(--shadow);
}

.step-number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--dark);
    font-weight: 900;
    margin-bottom: 18px;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.step-card p {
    color: var(--muted);
    font-size: 15px;
}

.local-seo-copy {
    max-width: 920px;
    margin: 0 auto;
}

.local-seo-copy h2 {
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 18px;
    line-height: 1.15;
}

.local-seo-copy p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.85;
}

.landing-cta {
    background:
        radial-gradient(circle at top right, rgba(245,196,0,.11), transparent 36%),
        linear-gradient(180deg, #111111, #0f172a);
    color: var(--white);
    text-align: center;
}

.landing-cta h2 {
    color: var(--white);
    font-size: clamp(30px, 4vw, 46px);
    margin-bottom: 14px;
}

.landing-cta p {
    color: rgba(255,255,255,.78);
    max-width: 720px;
    margin: 0 auto 26px;
}

.landing-cta .hero-buttons {
    justify-content: center;
}

@media (max-width: 992px) {
    .service-intro-grid,
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .quick-info-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .landing-hero {
        min-height: auto;
    }

    .landing-hero-copy {
        padding: 86px 0 64px;
        text-align: center;
    }

    .landing-hero .hero-buttons,
    .landing-proof {
        justify-content: center;
    }

    .landing-hero p {
        font-size: 16px;
    }

    .service-photo,
    .service-photo img {
        min-height: 330px;
    }

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