/*
================================================
TABLE OF CONTENTS
================================================
1.  CSS Variables & Root Styles
2.  Reset & Base Styles
3.  Typography & Utility Classes
4.  Preloader
5.  Header & Navigation
6.  Buttons & Form Elements
7.  Hero Section
8.  Page Header Section
9.  Services Section
10. Results Section & Stats
11. Testimonials Section
12. Pricing Section
13. ROI Calculator Section
14. CTA Section
15. Footer
16. Contact & Legal Page Specifics
17. Popup Styles
18. Animation Keyframes & Effects
19. Responsive Design (Media Queries)
================================================
*/

/* 1. CSS Variables & Root Styles
------------------------------------------------*/
:root {
    --primary-color: #0052cc;
    --primary-dark: #0041a3;
    --secondary-color: #ff7b00;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --font-primary: 'Inter', sans-serif;
    --transition-speed: 0.3s ease;
    --header-height: 80px;
}

/* 2. Reset & Base Styles
------------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* 3. Typography & Utility Classes
------------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 5vw, 2.75rem);
}

h3 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.section-title-wrapper {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem auto;
}

.section-tagline {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
}

.animate-on-load,
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-load.visible,
.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

[data-animation="fade-in-up"] {
    transform: translateY(30px);
}

[data-animation="slide-in-left"] {
    transform: translateX(-50px);
}

[data-animation="slide-in-right"] {
    transform: translateX(50px);
}

/* 4. Preloader
------------------------------------------------*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-logo {
    margin-bottom: 20px;
}

.preloader-logo img {
    width: 80px;
    animation: pulse 1.5s infinite ease-in-out;
}

.preloader-bar {
    width: 150px;
    height: 4px;
    background-color: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    animation: preloader-fill 2s ease-in-out forwards;
}

/* 5. Header & Navigation
------------------------------------------------*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
    height: 70px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 70px;
    filter: invert(15%) sepia(87%) saturate(5458%) hue-rotate(210deg) brightness(85%) contrast(101%);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed);
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
    padding: 5px;
}

.menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px 0;
    border-radius: 3px;
    transition: all var(--transition-speed);
}

/* 6. Buttons & Form Elements
------------------------------------------------*/
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    color: white;
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: #e9ecef;
    border-color: #ced4da;
    transform: translateY(-2px);
}

/* Shine Effect */
.has-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 20%;
    height: 200%;
    opacity: 0;
    transform: rotate(30deg);
    background: rgba(255, 255, 255, 0.13);
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.13) 0%,
            rgba(255, 255, 255, 0.13) 77%,
            rgba(255, 255, 255, 0.5) 92%,
            rgba(255, 255, 255, 0.0) 100%);
}

.has-shine:hover::after {
    opacity: 1;
    left: 130%;
    transition-property: left, top, opacity;
    transition-duration: 0.7s, 0.7s, 0.15s;
    transition-timing-function: ease;
}

/* Form Styles */
.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
    flex: 1;
}

.form-group label {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-dark);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.2);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%230052cc' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* 7. Hero Section
------------------------------------------------*/
.hero-section {
    padding: 180px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-tagline {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1.5rem auto 2.5rem auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 82, 204, 0.1), rgba(255, 123, 0, 0.1));
    filter: blur(80px);
    z-index: 1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
}

.shape-3 {
    width: 250px;
    height: 250px;
    bottom: 20%;
    left: 10%;
}

/* 8. Page Header Section
------------------------------------------------*/
.page-header-section {
    padding: 160px 0 80px;
    text-align: center;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

/* 9. Services Section
------------------------------------------------*/
.services-section {
    background-color: var(--bg-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-speed);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: all var(--transition-speed);
}

.service-card:hover .service-icon-wrapper {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1) rotate(15deg);
}

.service-title {
    margin-bottom: 0.75rem;
}

/* 10. Results Section & Stats
------------------------------------------------*/
.results-section {
    background-color: var(--bg-light);
}

.results-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.results-content .section-title-wrapper,
.results-content .section-title {
    text-align: left;
    margin-left: 0;
}

.results-content .btn {
    margin-top: 1.5rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '%';
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.results-image-wrapper img {
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

/* 11. Testimonials Section
------------------------------------------------*/
.testimonials-section {
    background-color: var(--bg-color);
}

.testimonial-slider-wrapper {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0 2rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--border-color);
}

.testimonial-slider-wrapper::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider-wrapper::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 4px;
}

.testimonial-slider-wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.testimonial-card {
    flex: 0 0 31%;
    min-width: 320px;
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--text-dark);
    flex-grow: 1;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.testimonial-quote::before {
    content: '“';
    font-family: Georgia, serif;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    left: -10px;
    top: -20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    margin-bottom: 0;
    font-size: 1rem;
}

.author-company {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 12. Pricing Section
------------------------------------------------*/
.pricing-section {
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: all var(--transition-speed);
    position: relative;
}

.pricing-card.popular {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-header {
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.6rem;
}

.pricing-header p {
    min-height: 40px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 1rem 0;
}

.price sup {
    font-size: 1.5rem;
    font-weight: 600;
    top: -1em;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.features-list {
    text-align: left;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.features-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.features-list i {
    color: var(--secondary-color);
}

.pricing-card .btn {
    width: 100%;
    margin-top: auto;
}

/* 13. ROI Calculator Section
------------------------------------------------*/
.roi-calculator-section {
    background-color: var(--bg-color);
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.calculator-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.calculator-inputs .form-group {
    margin-bottom: 0;
}

.calculator-results {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calculator-results h4 {
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.75rem 0;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* 14. CTA Section
------------------------------------------------*/
.cta-section {
    background: var(--primary-color) url('https://www.transparenttextures.com/patterns/az-subtle.png');
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content p {
    max-width: 550px;
    margin: 1rem auto 2rem auto;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    transform: scale(1);
}

.cta-section .btn-primary:hover {
    background-color: var(--bg-light);
    transform: scale(1.05);
}

/* 15. Footer
------------------------------------------------*/
.footer {
    background-color: var(--bg-light);
    color: var(--text-light);
    padding-top: 80px;
    border-top: 1px solid var(--border-color);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1rem;
    filter: invert(15%) sepia(87%) saturate(5458%) hue-rotate(210deg) brightness(85%) contrast(101%);
}

.footer-about p {
    margin-bottom: 1rem;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.footer-contact-info i {
    color: var(--primary-color);
}

.footer h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px 0 0 8px;
    background-color: var(--white);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 0 15px;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    font-weight: 500;
}

/* 16. Contact & Legal Page Specifics
------------------------------------------------*/
.contact-page-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-info-block {
    padding-right: 2rem;
}

.contact-details-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-detail-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.contact-detail-item p {
    margin: 0;
}

.contact-form-wrapper {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 12px;
}

.legal-page .page-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-color);
    padding: 3rem;
    border-radius: 12px;
}

.legal-page h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-page strong {
    color: var(--text-dark);
}

/* 17. Popup Styles
------------------------------------------------*/
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 59, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.popup-overlay.visible .popup-content {
    transform: scale(1);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
}

.popup-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.popup-content h3 {
    font-size: 1.8rem;
}

.popup-content p {
    margin-bottom: 2rem;
}


/* 18. Animation Keyframes & Effects
------------------------------------------------*/
@keyframes pulse {
    50% {
        transform: scale(1.1);
    }
}

@keyframes preloader-fill {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

/* 19. Responsive Design
------------------------------------------------*/
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 1rem auto 0 auto;
    }

    .testimonial-card {
        flex-basis: 47%;
    }
}

@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(75vw, 350px);
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: var(--shadow-md);
        transition: right var(--transition-speed);
        z-index: 1001;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 40px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .results-wrapper {
        grid-template-columns: 1fr;
    }

    .results-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }

    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .calculator-results {
        text-align: center;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-about,
    .footer-subscribe {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 140px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card:last-child {
        max-width: 100%;
    }

    .testimonial-card {
        flex-basis: 80%;
    }

    .contact-page-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .calculator-inputs {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-info p {
        justify-content: center;
    }
}