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

    :root {
        --primary-red: #dc2626;
        --primary-orange: #ff6b35;
        --glass-bg: rgba(10, 10, 10, 0.7);
        --glass-border: rgba(255, 255, 255, 0.1);
        --text-primary: #ffffff;
        --text-secondary: #a0a0a0;
        --accent-gradient: linear-gradient(135deg, #ff6b35, #dc2626);
        --price-highlight: #22c55e;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        color: var(--text-primary);
        background: #000;
        overflow-x: hidden;
    }

    /* Fixed Background */
    .master-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: -1;
        background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.7)),
                    url('../images/p300-background.webp') center/cover;
        filter: brightness(0.6);
    }

    /* Header */
    .header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--glass-border);
        padding: 1rem 0;
    }

    .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo h1 {
        font-size: 1.8rem;
        font-weight: 800;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
        align-items: center;
    }

    .nav-menu a {
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }

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

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

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

    .btn-nav {
        background: var(--accent-gradient);
        padding: 0.8rem 1.8rem;
        border-radius: 50px;
        color: white !important;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
    }

    .btn-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
    }

.hamburger {
display: flex; /* Makes sure it's visible */
flex-direction: column;
cursor: pointer;
gap: 4px;
padding: 0.5rem;
z-index: 1002;
margin-left: auto; /* Pushes the burger to the far right */
}

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Main Content */
    .main-content {
        position: relative;
        z-index: 1;
        padding-top: 80px;
    }

    /* Hero Section - PRICE FOCUSED */
    .hero-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 4rem 2rem;
        position: relative;
    }

.hero-glass {
background: transparent;
border: none;
border-radius: 30px;
padding: 3rem;
max-width: 1200px;
margin: 0 auto;
box-shadow: none;
}

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 900;
        background: linear-gradient(135deg, #fff, #ff6b35, #dc2626);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        color: var(--text-secondary);
        margin-bottom: 2.5rem;
        font-weight: 300;
    }

    /* PRICE FOCUSED STATS */
    .price-stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }

    .price-card {
        background: rgba(34, 197, 94, 0.1);
        backdrop-filter: blur(8px);
        border: 2px solid var(--price-highlight);
        padding: 1.5rem;
        border-radius: 15px;
        transition: all 0.3s ease;
        text-align: center;
    }

    .price-card:hover {
        transform: translateY(-5px);
        background: rgba(34, 197, 94, 0.15);
        box-shadow: 0 15px 30px rgba(34, 197, 94, 0.2);
    }

    .price-number {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--price-highlight);
        display: block;
    }

    .price-label {
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin-top: 0.3rem;
    }

    .price-description {
        color: var(--text-primary);
        font-size: 0.85rem;
        margin-top: 0.5rem;
        font-weight: 500;
    }

    .hero-buttons {
        display: flex;
        gap: 1.5rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-primary {
        background: var(--accent-gradient);
        color: white;
        padding: 1rem 2.5rem;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(220, 38, 38, 0.6);
    }

    .btn-secondary {
        background: transparent;
        color: white;
        padding: 1rem 2.5rem;
        border: 2px solid var(--primary-orange);
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .btn-secondary:hover {
        background: var(--primary-orange);
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    }

.glass-section {
background: transparent;
border: none;
border-radius: 30px;
padding: 4rem 2.5rem;
margin: 3rem auto;
max-width: 1400px;
box-shadow: none;
}

    .section-title {
        font-size: 2.8rem;
        font-weight: 800;
        text-align: center;
        background: var(--accent-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.1rem;
        color: var(--text-secondary);
        margin-bottom: 3rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    /* PRICING GRID */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .pricing-card {
        background: rgba(30, 30, 30, 0.3);
        backdrop-filter: blur(8px);
        border: 1px solid var(--glass-border);
        padding: 2.5rem;
        border-radius: 20px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .pricing-card.featured {
        border-color: var(--price-highlight);
        transform: scale(1.05);
    }

    .pricing-card.featured::before {
        content: 'MOST POPULAR';
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--price-highlight);
        color: #000;
        padding: 0.4rem 1.2rem;
        border-radius: 20px;
        font-weight: 700;
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        background: rgba(40, 40, 40, 0.4);
        border-color: var(--primary-orange);
        box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px) scale(1.05);
    }

    .pricing-card h3 {
        color: var(--primary-orange);
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .big-price {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--price-highlight);
        margin-bottom: 0.5rem;
    }

    .price-period {
        color: var(--text-secondary);
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .pricing-card p {
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .pricing-card ul {
        list-style: none;
        margin-bottom: 2rem;
        text-align: left;
    }

    .pricing-card li {
        padding: 0.6rem 0;
        padding-left: 1.8rem;
        position: relative;
        color: var(--text-secondary);
        font-size: 0.9rem;
    }

    .pricing-card li::before {
        content: "✓";
        position: absolute;
        left: 0;
        color: var(--price-highlight);
        font-weight: bold;
        font-size: 1.1rem;
    }

    /* Price Comparison Table */
    .comparison-table {
        background: rgba(20, 20, 20, 0.4);
        backdrop-filter: blur(10px);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        overflow: hidden;
        margin: 2rem 0;
    }

    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
    }

    .comparison-table th {
        background: rgba(255, 107, 53, 0.1);
        color: var(--primary-orange);
        font-weight: 700;
    }

    .comparison-table td {
        color: var(--text-secondary);
    }

    .comparison-table .price-cell {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--price-highlight);
    }

    /* FAQ Section - PRICE FOCUSED */
    .faq-container {
        max-width: 1000px;
        margin: 0 auto;
    }

    .faq-item {
        background: rgba(30, 30, 30, 0.25);
        backdrop-filter: blur(8px);
        border: 1px solid var(--glass-border);
        border-radius: 15px;
        margin-bottom: 1.5rem;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-item:hover {
        border-color: var(--primary-orange);
    }

    .faq-question {
        width: 100%;
        background: transparent;
        border: none;
        padding: 1.5rem;
        text-align: left;
        font-weight: 600;
        font-size: 1rem;
        color: white;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
    }

    .faq-question:hover {
        background: rgba(255, 107, 53, 0.1);
    }

    .faq-question i {
        color: var(--primary-orange);
        transition: transform 0.3s ease;
    }

    .faq-question.active i {
        transform: rotate(180deg);
    }

    .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .faq-answer.active {
        padding: 1.5rem;
        max-height: 1000px;
    }

    .faq-answer p {
        color: var(--text-secondary);
        line-height: 1.7;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }

    /* Price Testimonials - Updated for Side Scroll */
    .testimonial-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-bottom: 2rem; /* Space for scrollbar and shadow */
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        /* Smooth scrolling */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: var(--primary-orange) rgba(255, 255, 255, 0.1);
    }

    /* Custom Scrollbar for Chrome/Safari/Edge */
    .testimonial-grid::-webkit-scrollbar {
        height: 8px;
    }
    .testimonial-grid::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
        border-radius: 4px;
    }
    .testimonial-grid::-webkit-scrollbar-thumb {
        background: var(--primary-orange);
        border-radius: 4px;
    }

    .testimonial-card {
        /* Fixed width for side scrolling */
        flex: 0 0 350px;
        min-width: 350px;
        
        background: rgba(30, 30, 30, 0.3);
        backdrop-filter: blur(8px);
        border: 1px solid var(--glass-border);
        padding: 2rem;
        border-radius: 20px;
        position: relative;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 1rem;
        left: 1.5rem;
        font-size: 3rem;
        color: var(--primary-orange);
        opacity: 0.3;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
        border-color: var(--primary-orange);
    }

    .testimonial-text {
        color: var(--text-secondary);
        line-height: 1.6;
        margin-bottom: 1.5rem;
        font-style: italic;
        font-size: 0.95rem;
    }

    .testimonial-author {
        background: rgba(34, 197, 94, 0.1);
        border-left: 3px solid var(--price-highlight);
        padding: 0.8rem;
        border-radius: 10px;
        margin-top: auto; /* Pushes author to bottom */
    }

    .testimonial-author strong {
        color: white;
        display: block;
        margin-bottom: 0.2rem;
        font-size: 0.95rem;
    }

    .testimonial-author span {
        color: var(--text-secondary);
        font-size: 0.85rem;
    }

    .price-highlight-text {
        color: var(--price-highlight);
        font-weight: 700;
    }

    /* Read More Container */
    .reviews-footer {
        margin-top: 2rem;
        text-align: center;
    }
    
    .btn-read-more {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 600;
        padding: 0.8rem 2rem;
        border: 1px solid var(--glass-border);
        border-radius: 50px;
        transition: all 0.3s ease;
        background: rgba(255,255,255,0.05);
    }
    
    .btn-read-more:hover {
        background: var(--accent-gradient);
        border-color: transparent;
        transform: translateY(-2px);
    }

    @media (max-width: 480px) {
        .testimonial-card {
            flex: 0 0 300px;
            min-width: 300px;
        }
    }

    .price-highlight-text {
        color: var(--price-highlight);
        font-weight: 700;
    }

    /* CTA Section */
    .cta-section {
        background: rgba(34, 197, 94, 0.08);
        backdrop-filter: blur(15px);
        border: 2px solid var(--price-highlight);
        border-radius: 30px;
        padding: 4rem 2.5rem;
        margin: 3rem auto;
        max-width: 1200px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
        animation: pulse 4s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.5; }
        50% { transform: scale(1.1); opacity: 0.8; }
    }

    .cta-content {
        position: relative;
        z-index: 1;
    }

    .cta-section h2 {
        font-size: 2.5rem;
        font-weight: 800;
        color: white;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1.2rem;
        color: var(--text-secondary);
        margin-bottom: 2.5rem;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    .breadcrumb {
        padding: 0.8rem 20px;
        font-size: 0.85rem;
        color: #888;
        max-width: 1400px;
        margin: 0 auto;
    }
    .breadcrumb a {
        color: #ff6b35;
        text-decoration: none;
    }
    .breadcrumb a:hover {
        text-decoration: underline;
    }
    .breadcrumb span {
        margin: 0 0.4rem;
        color: #555;
    }
    /* Footer */
    .footer {
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        border-top: 1px solid var(--glass-border);
        padding: 3rem 0 1.5rem;
        margin-top: 0;
    }

    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h4 {
        color: var(--primary-orange);
        margin-bottom: 1.2rem;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        color: var(--text-secondary);
        text-decoration: none;
        line-height: 1.7;
        font-size: 0.9rem;
    }

    .footer-section a:hover {
        color: var(--primary-orange);
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section li {
        margin-bottom: 0.6rem;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid var(--glass-border);
        color: var(--text-secondary);
        font-size: 0.85rem;
    }

    .social-link {
        color: var(--text-secondary);
        margin-right: 1rem;
        transition: color 0.3s ease;
    }

    .social-link:hover {
        color: var(--primary-orange);
    }

    /* Mobile menu styles */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        z-index: 1001;
        transition: right 0.3s ease;
        padding: 2rem;
        overflow-y: auto;
    }

    .mobile-menu.active {
        right: 0;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1000;
        display: none;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--glass-border);
    }

    .mobile-menu-close {
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .mobile-menu-list {
        list-style: none;
    }

    .mobile-menu-list a {
        color: white;
        text-decoration: none;
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .mobile-menu-list a:hover {
        color: var(--primary-orange);
        padding-left: 1rem;
    }
    .nav-menu {
        display: none !important;
    }
.results-gallery-section {
background: transparent;
border: none;
padding: 5rem 0;
margin: 4rem 0;
position: relative;
overflow: hidden;
}

.gallery-scroll-container {
position: relative;
width: 100%;
padding: 20px 0;
}

.gallery-track {
display: flex;
gap: 2rem;
overflow-x: auto;
padding: 2rem 20px;
scroll-snap-type: x mandatory;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* IE/Edge */
scroll-behavior: smooth;
}

.gallery-track::-webkit-scrollbar {
display: none; /* Chrome/Safari/Webkit */
}

.gallery-item {
flex: 0 0 auto;
width: 320px;
scroll-snap-align: center;
perspective: 1000px;
}

.gallery-card {
background: rgba(30, 30, 30, 0.6);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 15px;
overflow: hidden;
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
height: 100%;
display: flex;
flex-direction: column;
}

.gallery-card:hover {
transform: translateY(-10px) scale(1.02);
box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
border-color: var(--primary-orange);
background: rgba(40, 40, 40, 0.8);
}

.gallery-card img {
width: 100%;
height: 400px; /* Portrait aspect ratio for documents */
object-fit: cover;
object-position: top center;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
transition: all 0.5s ease;
cursor: pointer; /* Suggests it can be clicked/viewed */
}

.gallery-card:hover img {
filter: brightness(1.1);
}

.gallery-caption {
padding: 1.5rem;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.gallery-caption h3 {
color: var(--primary-orange);
font-size: 1.2rem;
margin-bottom: 0.5rem;
font-weight: 700;
}

.gallery-caption p {
color: #cbd5e1;
font-size: 0.9rem;
line-height: 1.5;
margin: 0;
}

/* Controls */
.gallery-controls {
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
margin-top: 1rem;
}

.scroll-btn {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
color: white;
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.2rem;
}

.scroll-btn:hover {
background: var(--primary-orange);
border-color: var(--primary-orange);
transform: scale(1.1);
}

.scroll-instruction {
color: var(--text-secondary);
font-size: 0.9rem;
display: flex;
align-items: center;
gap: 0.5rem;
opacity: 0.7;
}
.site-logo {
font-size: 1.8rem;
font-weight: 700;
line-height: 1;
margin-bottom: 0.25rem;
}

.site-logo a {
text-decoration: none;
background: linear-gradient(135deg, #ff6b35, #f9ca24);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}
    .comparison-image-wrap {
        text-align: center;
        margin-top: 2rem;
    }

    .comparison-image {
        max-width: 100%;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease;
    }

    .comparison-image:hover {
        transform: scale(1.015);
        border-color: #ff6b35;
    }

    .image-caption {
        font-size: 0.95rem;
        color: #cbd5e1;
        margin-top: 1rem;
        font-style: italic;
        opacity: 0.85;
    }
    .price-breakdown {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
        background: rgba(30, 30, 30, 0.3);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
    }

    .price-breakdown p {
        color: #c0c0c0;
        line-height: 1.8;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .price-breakdown p:last-child {
        margin-bottom: 0;
    }

    .price-breakdown strong {
        color: #ffffff;
    }

    .area-info {
        max-width: 800px;
        margin: 0 auto;
        padding: 2rem;
        background: rgba(30, 30, 30, 0.3);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
    }

    .area-info p {
        color: #c0c0c0;
        line-height: 1.8;
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .area-info p:last-child {
        margin-bottom: 0;
    }

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}
.promise-card {
    background: rgba(255, 107, 53, 0.04);
    border: 1px solid rgba(255, 107, 53, 0.25);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.promise-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-orange);
    background: rgba(255, 107, 53, 0.08);
}
.promise-tagline {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.promise-supporting {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
.promise-callback {
    text-align: center;
    max-width: 900px;
    margin: 2.5rem auto 0;
    padding: 0 1.5rem;
}
.promise-callback p {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1.4;
}
.promise-callback .accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 700px) {
    .promise-grid { grid-template-columns: 1fr; }
    .promise-tagline { font-size: 1.35rem; }
    .promise-callback p { font-size: 1.2rem; }
}
    /* Mobile Responsive */
    @media (max-width: 768px) {

        .hero-content h1 {
            font-size: 2.2rem;
        }

        .hero-glass {
            padding: 2rem;
        }

        .glass-section {
            padding: 2.5rem 1.5rem;
            margin: 2rem 1rem;
            border-radius: 20px;
        }

        .section-title {
            font-size: 2rem;
        }

        .price-stats {
            grid-template-columns: repeat(2, 1fr);
        }

        .pricing-grid,
        .testimonial-grid {
            grid-template-columns: 1fr;
        }

        .pricing-card.featured {
            transform: none;
        }

        .pricing-card.featured:hover {
            transform: translateY(-10px);
        }

        .hero-buttons {
            flex-direction: column;
            align-items: stretch;
        }

        .cta-section h2 {
            font-size: 1.8rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .comparison-table {
            font-size: 0.85rem;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 0.7rem 0.5rem;
        }
    }

    @media (max-width: 480px) {
        .hero-content h1 {
            font-size: 1.8rem;
        }

        .section-title {
            font-size: 1.6rem;
        }

        .price-stats {
            gap: 1rem;
        }

        .price-number {
            font-size: 2rem;
        }

        .big-price {
            font-size: 2.5rem;
        }

        .btn-primary, .btn-secondary {
            padding: 0.8rem 2rem;
            font-size: 1rem;
        }
    }
