:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --secondary: #6c757d;
    --success: #28a745;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --blob-1: rgba(0, 123, 255, 0.05);
    --blob-2: rgba(37, 211, 102, 0.05);
}

.text-primary {
    color: var(--primary) !important;
}

.bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--blob-1);
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

.bg-blob-1 {
    top: -200px;
    right: -200px;
}

.bg-blob-2 {
    bottom: -200px;
    left: -200px;
    background: var(--blob-2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light);
}

h1,
h2,
h3 {
    line-height: 1.2;
    font-weight: 700;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .nav-content {
        gap: 1rem;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .nav-actions {
        gap: 0.6rem;
    }

    .nav-call-btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem !important;
    }

    .nav-prices-btn {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.85rem !important;
    }

    .nav-phone-link {
        font-size: 0.85rem;
        padding: 0 0.8rem;
    }

    .whatsapp-nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        gap: 0.4rem;
    }

    .container {
        padding: 0 0.8rem;
    }
}

@media (max-width: 380px) {

    /* На очень маленьких экранах скрываем номер телефона для экономии места */
    .nav-phone-link {
        display: none;
    }
}

.whatsapp-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    flex-shrink: 0;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 42px;
    height: 42px;
}

.whatsapp-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
    background: #20BA5A;
}

.nav-phone-link {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.nav-phone-link:hover {
    color: var(--primary);
}

.nav-call-btn {
    padding: 0.7rem 1.5rem !important;
    font-size: 0.9rem !important;
    border-radius: 50px !important;
}

.nav-prices-btn {
    padding: 0.7rem 1.6rem !important;
    font-size: 0.9rem !important;
    border-radius: 50px !important;
    white-space: nowrap;
    font-weight: 600 !important;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

@media (max-width: 1100px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.65)), url('/static/img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 480px) {
    .hero {
        padding-top: 140px;
        /* Prevent overlap with fixed navbar on mobile */
    }
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 2rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--dark) 40%, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 3.5rem;
    color: #444;
    max-width: 650px;
    line-height: 1.5;
}

.btn-cta-prices {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    padding: 1.5rem 4rem !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    border-radius: 100px !important;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.25);
    border: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.btn-cta-prices:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 123, 255, 0.4);
}

.btn-cta-prices .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.btn-cta-prices:hover .arrow {
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .btn-cta-prices {
        padding: 1.2rem 2.5rem !important;
        font-size: 1.1rem !important;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero h1 {
        font-size: clamp(1.4rem, 7vw, 2.5rem);
        line-height: 1.15;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .hero p {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        line-height: 1.5;
    }
}

section {
    padding: 120px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20%;
    right: 20%;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.why-professional {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 123, 255, 0.08) !important;
    border-radius: 25px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: left;
}

.why-card.card-full {
    grid-column: 1 / -1;
}

.why-card:hover {
    transform: translateY(-8px);
    background: var(--white) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.1);
}

.why-card .icon {
    font-size: 2rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.2));
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.why-card:hover .icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.why-card-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--dark);
}

.why-card-content p {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
    }
}

/* Advantages Section - Marquee Effect */
.advantages {
    background: #fdfdfd;
    overflow: hidden;
    padding: 100px 0;
}

.advantages-slider-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    padding: 2rem 0;
}

.advantages-group {
    display: flex;
    gap: 2rem;
    animation: marquee 25s linear infinite;
    flex-shrink: 0;
}

.advantage-item {
    width: 350px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    border-radius: 30px;
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-100% - 2rem));
    }
}

.advantages-slider-track:hover .advantages-group {
    animation-play-state: paused;
}

.advantage-item .icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.pests {
    background: var(--white);
}

/* Pests Polish */
.pests-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 3.5rem auto 0;
}

.pest-item {
    flex: 1 1 280px;
    max-width: 350px;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 30px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 123, 255, 0.05) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pest-item:hover {
    transform: translateY(-12px);
    background: var(--white) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 25px 60px rgba(0, 123, 255, 0.08);
}

.pest-item .icon {
    font-size: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05), rgba(0, 123, 255, 0.15));
    width: 75px;
    height: 75px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.pest-item:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary);
    color: white;
}

.pest-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--dark);
}

.pest-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.pest-item .icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.objects {
    background: #fdfdfd;
}

.objects-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.object-card {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 123, 255, 0.08) !important;
    border-radius: 20px !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.object-card:hover {
    transform: translateX(15px);
    background: var(--white) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.08);
}

.object-card .icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.2));
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.object-card:hover .icon {
    transform: rotate(5deg) scale(1.1);
    background: var(--primary);
    color: white;
}

.object-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.object-content p {
    font-size: 1.05rem;
    color: #555;
    margin: 0;
}

@media (max-width: 768px) {
    .object-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .object-card:hover {
        transform: translateY(-5px);
    }
}

.roadmap {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.roadmap-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3.5rem;
    position: relative;
}

.roadmap-item::before {
    content: '';
    position: absolute;
    left: 45px;
    top: 90px;
    height: calc(100% - 40px);
    width: 2px;
    background: linear-gradient(to bottom, var(--primary) 0%, rgba(0, 123, 255, 0.05) 100%);
    z-index: 1;
}

.roadmap-item:last-child::before {
    display: none;
}

.roadmap-shape {
    width: 100px;
    height: 85px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.roadmap-item:hover .roadmap-shape {
    transform: scale(1.08);
    background: var(--primary);
    color: var(--white);
}

.roadmap-shape .icon {
    font-size: 2.22rem;
    font-style: normal;
}

.roadmap-content {
    flex: 1;
    padding: 2rem 2.5rem;
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.roadmap-item:hover .roadmap-content {
    transform: translateX(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 123, 255, 0.1);
}

.roadmap-content h3 {
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 800;
}

.roadmap-content p {
    color: #444;
    line-height: 1.6;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .roadmap-item {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .roadmap-item::before {
        display: none;
    }

    .roadmap-shape {
        width: 80px;
        height: 70px;
    }

    .roadmap-content {
        padding: 1.5rem;
    }
}

.services-detailed {
    background: var(--light);
}

.services-detailed .section-subtitle {
    margin-bottom: 4rem;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-main-card {
    padding: 3.5rem 2.8rem;
    text-align: left;
    background: var(--white);
    border: 1px solid rgba(0, 123, 255, 0.05);
    transition: var(--transition);
    border-radius: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-info {
    margin-bottom: 2.5rem;
}

.service-main-card h3 {
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    color: var(--primary);
    font-weight: 800;
}

.service-main-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

.btn-detail {
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.2));
    color: var(--primary) !important;
    padding: 1rem 2rem !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    width: fit-content;
    border: 1px solid rgba(0, 123, 255, 0.1) !important;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-detail:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}

.service-main-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
    border-color: var(--primary);
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 100px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--primary);
}

.logo-footer {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .nav-links {
        display: none;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .object-card,
    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* Prices Page Styles */
.page-hero {
    min-height: 50vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.95)), url('/static/img/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero .hero-content {
    margin: 0 auto;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--dark) 20%, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.page-hero p {
    font-size: 1.3rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.prices-section {
    padding: 80px 0;
    background: var(--light);
}

.price-category {
    margin-bottom: 5rem;
}

.price-category h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.price-category h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: rgba(0, 123, 255, 0.3);
    border-radius: 2px;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .prices-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    padding: 2rem;
    text-align: center;
    border-radius: 20px;
    background: var(--white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.15);
    border-color: rgba(0, 123, 255, 0.2);
}

.price-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.price-card .price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.price-card .guarantee,
.price-card .note {
    font-size: 0.9rem;
    color: var(--success);
    font-weight: 600;
}

.price-card .note {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* Premium Card Design for Bedbugs */
.category-title-accent {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    line-height: 1.2;
}

.category-title-accent .subtitle-text {
    display: block;
    font-size: 1.5rem;
    color: var(--secondary);
    font-weight: 500;
    margin-top: 0.8rem;
}

.premium-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 123, 255, 0.1) !important;
    background: #fff;
    padding: 0 !important;
    text-align: left !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-card:hover {
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(0, 123, 255, 0.3) !important;
}

.card-accent-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, #a1c4fd 0%, #c2e9fb 100%);
}

.card-content {
    padding: 1.8rem 1.8rem 1.8rem 2.2rem;
}

.premium-card h3 {
    font-size: 1.15rem;
    color: #556c80;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-row {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.price-label {
    font-size: 1rem;
    color: #8898aa;
}

.price-value {
    font-size: 1.7rem;
    font-weight: 700;
    color: #32325d;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #525f7f;
    background: #f6f9fc;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    width: 100%;
}

@media (max-width: 768px) {
    .category-title-accent {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .category-title-accent .subtitle-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .category-title-accent {
        font-size: 1.4rem;
    }
}

/* Info Table Layout for Cockroaches */
.info-table-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
}

.info-side {
    flex: 1 1 300px;
}

.description-text {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.features-list li::before {
    content: '•';
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.table-side {
    flex: 1.5 1 400px;
}

.pricing-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: transparent;
}

.pricing-table th,
.pricing-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-table th {
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    padding-bottom: 1.5rem;
}

.pricing-table td {
    color: var(--dark);
    font-weight: 500;
    font-size: 1.05rem;
}

.pricing-table tr:last-child td {
    border-bottom: none;
}

.pricing-table tr:hover td {
    background: rgba(0, 123, 255, 0.03);
}

@media (max-width: 768px) {
    .info-table-container {
        padding: 2rem;
        flex-direction: column;
        gap: 2rem;
    }

    .info-side,
    .table-side {
        width: 100%;
        flex: auto;
    }
}

/* Bento Grid for Smell & Fungus */
.smell-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.smell-card {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%) !important;
    padding: 2.5rem !important;
    border-radius: 24px !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    transition: transform 0.3s ease;
}

.smell-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(100, 100, 255, 0.1);
}

.smell-card.full-width {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #e3f2fd 0%, #e1f5fe 100%) !important;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.smell-card h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.smell-card .price {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.smell-card .note,
.smell-card .guarantee {
    font-size: 1rem;
    color: var(--secondary);
}

@media (max-width: 768px) {
    .smell-grid {
        grid-template-columns: 1fr;
    }
}

/* Rodent Section Layout */
.rodent-container {
    display: flex;
    align-items: stretch;
    background: #fff;
    overflow: hidden;
    padding: 0 !important;
}

.rodent-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rodent-image {
    flex: 1;
    min-height: 400px;
    position: relative;
}

.rodent-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.rodent-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.rodent-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.rodent-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.rodent-card.full {
    grid-column: 1 / -1;
}

.rodent-card .icon-small {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.rodent-card h3 {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.rodent-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}

.rodent-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-top: 1rem;
}

@media (max-width: 900px) {
    .rodent-container {
        flex-direction: column;
    }

    .rodent-image {
        min-height: 250px;
    }
}

/* Wasp & Ant Section Layout */
.wasp-ant-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.wasp-card,
.ant-card {
    padding: 2.5rem !important;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    background: linear-gradient(to bottom right, #ffffff, #fdfbf7);
}

.ant-card {
    background: linear-gradient(to bottom right, #ffffff, #f7f9fd);
}

.card-header-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.wasp-card h3,
.ant-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-desc {
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.price-block {
    margin-bottom: 1.5rem;
}

.price-main {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: 0.5rem;
}

.price-list-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.item-name {
    font-weight: 500;
    color: var(--secondary);
}

.item-price {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.1rem;
}

.mt-auto {
    margin-top: auto;
}

@media (max-width: 768px) {
    .wasp-ant-grid {
        grid-template-columns: 1fr;
    }
}

/* Rebranding Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.logo-footer {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
}

@media (max-width: 480px) {
    .logo-img {
        height: 60px;
    }

    .whatsapp-nav-btn {
        display: none;
    }
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-legal {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
    font-style: italic;
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem;
        display: none;
    }
}

/* Mobile Responsiveness for Prices Page */
@media (max-width: 768px) {
    .page-hero {
        padding-top: 100px;
        min-height: 40vh;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .info-table-container,
    .rodent-content,
    .wasp-card,
    .ant-card,
    .smell-card {
        padding: 1.5rem !important;
    }

    .rodent-image {
        min-height: 200px;
    }

    .category-title-accent {
        font-size: 1.8rem;
    }

    .category-title-accent .subtitle-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .prices-section {
        padding: 40px 0;
    }

    .price-category {
        margin-bottom: 3rem;
    }

    .category-title-accent {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .category-title-accent .subtitle-text {
        font-size: 1rem;
    }

    /* Tables on mobile */
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }

    .pricing-table th {
        font-size: 0.75rem;
    }

    /* Rodent grid on mobile */
    .rodent-cards-grid {
        grid-template-columns: 1fr;
    }

    /* Stack flex containers */
    .info-table-container,
    .rodent-container {
        flex-direction: column;
        padding: 1rem !important;
    }

    .info-side,
    .table-side {
        width: 100%;
    }

    .nav-content {
        padding: 0 1rem;
    }

    .wasp-ant-grid {
        grid-template-columns: 1fr;
    }
}