/* Critical CSS for Above-the-Fold Content */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Critical font loading optimization */

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

/* Optimized loading states - prevent layout shifts */
body {
    opacity: 1;
    visibility: visible;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Critical font loading fix for Thunderbold */
h1,
h2,
h3,
h4,
h5,
h6,
.thunderbold {
    font-family: 'Thunderbold LC', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: normal !important;
    font-style: normal !important;
}

/* Prevent layout shifts with proper dimensions */
#header-container {
    min-height: 80px;
    background: var(--black);
}

#footer-container {
    min-height: 200px;
    background: var(--orange);
}

/* Ensure images don't cause layout shifts */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent layout shifts for containers */
.hero,
.features,
.footer,
.container,
section {
    min-height: 1px;
}

/* Custom Fonts - Optimized */
@font-face {
    font-family: 'Thunderbold LC';
    src: url('../fonts/Thunder-BoldLC.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Thunderbold LC';
    src: url('../fonts/Thunder-BoldLCItalic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
    font-display: block;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Satoshi-Black';
    src: url('../fonts/Satoshi-Black.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Satoshi-Bold';
    src: url('../fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

/* CSS Custom Properties for Colors */
:root {
    --orange: #FF4134;
    --light-orange: #FFD2CF;
    --black: #0C0C0C;
    --white: #ffffff;
    --dark-gray: #1a1a1a;
    --light-gray: #f3f4f6;
    --text-muted: rgba(255, 255, 255, 0.8);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    /* Ensure page is visible by default */
    opacity: 1;
    visibility: visible;
}

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

/* Header/Navigation */
.header {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: none;
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.1s forwards;
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.cta-button {
    background-color: #00000062;
    backdrop-filter: blur(10px);
    color: var(--light-gray);
    border: 1px solid #ffffff;
    padding: 12px 24px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: -0.8px;
    border-radius: 7px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e63939;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    background: rgb(0, 0, 0);
    padding: 8px;
    border-radius: 6px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.582);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: 0.3s;
}

/* Hero Section Animations */
@keyframes heroFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroFadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroScaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes heroSlideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: transparent;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: -120px;
    left: 500px;
    right: 0;
    bottom: 0;
    background-image: url('../images/Gradientoverlay.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* Fix gradient overlay for 770px-1400px range */
@media (min-width: 770px) and (max-width: 1400px) {
    .hero-background {
        left: 0;
        right: 0;
        background-size: cover;
        background-position: center;
    }
}

/* Interactive Grid Background */
.hero-grid-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    display: grid;
    grid-template-columns: repeat(15, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: 0;
    opacity: 1;
    pointer-events: auto;
}

.grid-tile {
    background-color: #d9d9d92f;
    opacity: 0.03;
    border: 1px solid #ffffff4c;
    border-opacity: 0.05;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0;
}

.grid-tile:hover {
    background-color: #d9d9d924;
    opacity: 0.04;
    border: 1px solid #ffffff50;
    border-opacity: 0.1;
    transform: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12, 12, 12, 0);
    z-index: -1;
}

.hero-content {
    width: 100%;
    z-index: 2;
    margin-top: 150px;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: 100px;
    opacity: 0;
    animation: heroFadeInUp 1s ease-out 0.3s forwards;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    animation: heroFadeInLeft 1.2s ease-out 0.4s forwards;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    opacity: 0;
    animation: heroFadeInRight 1.2s ease-out 0.5s forwards;
}

.hero-title {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: normal;
    line-height: 82.7%;
    letter-spacing: 0%;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    opacity: 0;
    animation: heroSlideInUp 1.2s ease-out 0.6s forwards;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 1rem;
    opacity: 0;
    font-weight: 400;
    animation: heroFadeInLeft 1s ease-out 0.4s forwards;
}

.hero-cta {
    background-color: var(--orange);
    color: var(--white);
    font-family: 'Satoshi', sans-serif;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    letter-spacing: -0.8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    margin-top: -30px;
    opacity: 0;
    animation: heroScaleIn 1s ease-out 1s forwards;
    gap: 12px;
    width: fit-content;
}

.hero-cta:hover {
    background-color: #e63939;
}

.hero-description-box {
    background: rgba(12, 12, 12, 0.116);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 12px;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: heroFadeInRight 1s ease-out 0.8s forwards;
}

.hero-description-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Full Width Video Section */
.video-section {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.full-width-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Intro Section */
.intro {
    padding: 4rem 0;
    text-align: center;
}

.intro-text {
    font-size: 1.8rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Client Logos */
.clients {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.logo-carousel-container {
    position: relative;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
}

.logo-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.logo-carousel::before,
.logo-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 100%);
}

.logo-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--black) 0%, transparent 100%);
}

.logo-track {
    display: flex;
    align-items: center;
    height: 100%;
    animation: scrollLogos 30s linear infinite;
    will-change: transform;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
    height: 60px;
    width: 120px;
}

.client-logo-img {
    height: 40px;
    width: 100px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-item:hover .client-logo-img {
    opacity: 1;
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Features Grid */
.features {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
}

.feature-card {
    text-align: left;
    padding: 3rem 2rem;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.feature-card:nth-child(3n) {
    border-right: none;
}

.feature-card:nth-child(n+4) {
    border-bottom: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0 0 1.5rem 0;
    padding: 0;
}

.custom-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.feature-card:hover .custom-icon {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
    0% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(3deg);
    }

    100% {
        transform: scale(1.15) rotate(5deg);
    }
}

.feature-card:hover .feature-icon {
    animation: iconContainerBounce 0.4s ease-out;
}

@keyframes iconContainerBounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Specific animations for different icon types */
.feature-card:nth-child(1):hover .custom-icon {
    animation: appointmentShake 0.6s ease-in-out;
}

.feature-card:nth-child(2):hover .custom-icon {
    animation: isaFloat 0.8s ease-in-out infinite;
}

.feature-card:nth-child(3):hover .custom-icon {
    animation: nurturingGlow 1s ease-in-out infinite;
}

.feature-card:nth-child(4):hover .custom-icon {
    animation: crmSpin 0.8s ease-in-out;
}

.feature-card:nth-child(5):hover .custom-icon {
    animation: funnelFlash 0.6s ease-in-out;
}

.feature-card:nth-child(6):hover .custom-icon {
    animation: reportingPulse 0.8s ease-in-out infinite;
}

@keyframes appointmentShake {

    0%,
    100% {
        transform: scale(1.15) rotate(5deg);
    }

    25% {
        transform: scale(1.15) rotate(-3deg);
    }

    75% {
        transform: scale(1.15) rotate(8deg);
    }
}

@keyframes isaFloat {

    0%,
    100% {
        transform: scale(1.15) translateY(0) rotate(5deg);
    }

    50% {
        transform: scale(1.15) translateY(-5px) rotate(5deg);
    }
}

@keyframes nurturingGlow {

    0%,
    100% {
        transform: scale(1.15) rotate(5deg);
        filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    }

    50% {
        transform: scale(1.15) rotate(5deg);
        filter: brightness(0) invert(1) drop-shadow(0 0 25px rgba(255, 255, 255, 0.8));
    }
}

@keyframes crmSpin {
    0% {
        transform: scale(1.15) rotate(5deg);
    }

    50% {
        transform: scale(1.15) rotate(185deg);
    }

    100% {
        transform: scale(1.15) rotate(365deg);
    }
}

@keyframes funnelFlash {

    0%,
    100% {
        transform: scale(1.15) rotate(5deg);
        filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    }

    50% {
        transform: scale(1.15) rotate(5deg);
        filter: brightness(0) invert(1) drop-shadow(0 0 30px rgba(255, 255, 255, 1));
    }
}

@keyframes reportingPulse {

    0%,
    100% {
        transform: scale(1.15) rotate(5deg);
        filter: brightness(0) invert(1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
    }

    50% {
        transform: scale(1.2) rotate(5deg);
        filter: brightness(0) invert(1) drop-shadow(0 0 20px rgba(255, 255, 255, 0.7));
    }
}

.feature-card h3 {
    font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 1.7rem !important;
    font-weight: normal !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1rem !important;
    color: var(--white) !important;
}

.feature-card p {
    opacity: 0.7;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.1;
    color: rgba(255, 255, 255, 0.7);
}

/* Digital Solutions */
.digital-solutions {
    padding: 6rem 0;
}

.section-title {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: normal;
    line-height: 82.7%;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    opacity: 0.8;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    padding-left: 350px;
    padding-right: 350px;
    margin-bottom: 4rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    overflow: hidden;
}

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

.solution-card.red {
    background-color: var(--orange);
}

.solution-illustration {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.solution-card:nth-child(2) .solution-illustration {
    width: calc(100% + 10rem);
    margin-left: -5rem;
    margin-right: -4rem;
    margin-bottom: -0.1rem;
    margin-top: -1rem;
}

.solution-svg {
    width: 100%;
    margin-bottom: -5rem;
    height: 100%;
    object-fit: contain;
}

.solution-card h3 {
    font-size: 1.8rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.solution-card p {
    opacity: 0.7;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-family: 'Satoshi', sans-serif;
    margin-bottom: 1.5rem;
    text-align: left;
}

.solution-tags {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background-color: var(--orange);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    width: fit-content;
}

.new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.dashboard-stats {
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
}

.stat-time {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

/* Additional Solution Boxes */
.additional-solutions {
    padding: 4rem 0;
    margin-top: -8rem;
}

.additional-solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 0.8fr;
    gap: 2rem;
}

.additional-solution-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.save-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--orange);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.additional-solution-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.additional-solution-number {
    font-size: 4rem;
    letter-spacing: -0.04em;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.additional-solution-number.red {
    color: var(--orange);
}

.additional-solution-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 400;
}

.additional-solution-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.1;
    margin: 0;
}

.rocket-icon {
    position: absolute;
    top: 1.9rem;
    right: 1rem;
    width: 120px;
    height: 120px;
}

.rocket-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Statistics */
.stats {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-card .stat-number {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background-color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: lowercase;
}

/* Large Titles */
.large-titles {
    padding: 3rem 0;
    margin-top: 5rem;
    margin-bottom: 3rem;
}

.large-title {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: normal;
    line-height: 82.7%;
    letter-spacing: 0%;
    text-align: center;
    opacity: 0.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

/* Hide large titles section on mobile */
@media (max-width: 768px) {
    .large-titles {
        display: none;
    }
}

.scroll-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 1 !important;
}

.scroll-text .word {
    opacity: 0.3;
    transform: translateY(50px);
    transition: all 0.8s ease;
    display: inline-block;
    color: var(--white);
}

.scroll-text .word.revealed {
    opacity: 1;
    color: var(--white);
    transform: translateY(0);
    filter: brightness(1);
}

.scroll-text .word.bright {
    opacity: 1;
    color: var(--white);
    transform: translateY(0);
    filter: brightness(1.5);
}

/* Testimonial Slider */
.testimonial {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-track {
    display: flex;
    transition: transform 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 300%;
}

.testimonial-slide {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    min-width: 100%;
    opacity: 0.3;
    transform: scale(0.9);
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-quote {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    font-style: italic;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 800px;
    line-height: 1.2;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.author-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.author-company {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-left {
    text-align: left;
}

.cta-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-title {
    font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: normal !important;
    color: var(--white) !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
}

.cta-description {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
    line-height: 1;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.7;
    margin-top: 0.25rem;
}

.cta-right {
    display: flex;
    justify-content: center;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--light-orange));
}

.cta-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.cta-card-header h3 {
    font-size: 2rem;
    padding-top: 1rem;
    font-weight: 700;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    letter-spacing: 0.0.1em;
    line-height: 0.9;


    color: var(--white);
    margin: 0;
}

.cta-card-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.cta-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.cta-benefits li {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.cta-benefits li::before {
    content: '🏷️';
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.cta-button-modern {
    background: var(--orange);
    color: var(--white);
    border: none;
    font-family: 'Satoshi', sans-serif;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 1rem;
}

.cta-button-modern:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    filter: brightness(1.2);
}

.button-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button-modern:hover .button-arrow {
    transform: translateX(4px);
}

.cta-note {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.6;
    text-align: center;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--orange);
    color: var(--white);
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer-top {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background-color: #B9150A;
}

.footer-contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-left {
    text-align: left;
}

.contact-phone {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-phone-secondary {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1;
}

.contact-email a {
    color: var(--white);
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.contact-email a:hover {
    opacity: 0.8;
}

.contact-center {
    text-align: center;
}

.contact-address {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 700;
}

.contact-right {
    text-align: right;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.nav-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-column a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.nav-column a:hover {
    opacity: 0.8;
}

.footer-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.footer-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-title {
    font-family: 'Satoshi-Black', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: clamp(3rem, 8vw, 6rem) !important;
    font-weight: normal !important;
    line-height: 0.9 !important;
    margin-bottom: 0.5rem !important;
    color: var(--white) !important;
    letter-spacing: -0.02em !important;
}

/* Override general h3 rule for footer titles */
h3.footer-title {
    font-family: 'Satoshi-Black', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: normal !important;
    font-style: normal !important;
}

.footer-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 0.25rem;
}

.footer-cta-button {
    background: var(--white);
    color: var(--orange);
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 16px;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    letter-spacing: 0.01em;

    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    margin-bottom: 0;

}

.footer-cta-button:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);

}

.footer-arrow {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
    margin-left: 1rem;
}

.footer-cta-button:hover .footer-arrow {
    transform: translateX(6px);
}

/* Growth Section */
.growth-section {
    width: 100%;
    height: 25vh;

    position: relative;
    background: var(--orange);
    display: flex;
    align-items: center;
}

.growth-container {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.growth-scroll {
    display: flex;
    align-items: center;
    animation: scrollGrowthHorizontal 60s linear infinite;
    white-space: nowrap;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.growth-text {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(3rem, 8vw, 12rem);
    font-weight: normal;
    line-height: 0.8;
    letter-spacing: -0.02em;
    color: var(--white);
    opacity: 0.8;
    text-transform: uppercase;
    white-space: nowrap;
    margin-right: 3rem;
    flex-shrink: 0;
}

@keyframes scrollGrowthHorizontal {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Desktop Hero Styles */
@media (min-width: 769px) {
    .hero {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        background: transparent;
        overflow: hidden;
    }

    .hero-content {
        width: 100%;
        z-index: 2;
        margin-top: 150px;
        flex: 1;
        display: flex;
        align-items: center;
        padding-top: 100px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        z-index: 1000;
        margin-top: -60px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex !important;
    }

    /* Ensure mobile menu toggle is visible */
    .mobile-menu-toggle {
        display: flex !important;
    }

    .nav-links a {
        font-size: 1.2rem;
        font-weight: 600;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
        background: rgba(255, 255, 255, 0.1);
        padding: 8px;
        border-radius: 6px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    .cta-button {
        display: none;
    }

    .hero {
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 2;
    }

    .hero-background {
        left: 0;
        top: 0;
        background-position: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .hero-content {
        padding-top: 0;
        margin-top: 0;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description-box {
        padding: 1.5rem;
    }

    .video-section {
        height: 30vh;
        margin-top: 0;
        position: relative;
        z-index: 1;
        clear: both;
    }

    .full-width-video {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0;
    }

    .feature-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem 1.5rem;
        margin-bottom: 0;
    }

    .feature-card:last-child {
        border-bottom: none;
    }

    .feature-card:nth-child(4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-card:nth-child(5) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-card:nth-child(6) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-icon {
        margin-bottom: 1rem;
    }

    .custom-icon {
        width: 50px;
        height: 50px;
    }

    .feature-card h3 {
        font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: 1.6rem !important;
        font-weight: normal !important;
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    .feature-card p {
        font-size: 1.3rem;
        line-height: 1.4;
    }

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

    .additional-solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .testimonial-slider {
        height: 250px;
    }

    .testimonial-slide {
        padding: 0 1rem;
    }

    .testimonial-quote {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-stats {
        gap: 1.5rem;
    }

    .cta-stat .stat-number {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .logo-carousel-container {
        height: 120px;
    }

    .logo-item {
        margin: 0 2rem;
        width: 180px;
        height: 80px;
    }

    .client-logo-img {
        height: 60px;
        width: 160px;
    }

    .intro-text {
        font-size: clamp(1.4rem, 3vw, 1.8rem);
        text-align: center;
        line-height: 1.3;
        margin-bottom: 2rem;
    }

    .logo-carousel::before,
    .logo-carousel::after {
        width: 50px;
    }

    .logo-track {
        animation-duration: 20s;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        overflow-x: hidden;
    }

    .hero {
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-grid {
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-content {
        padding-top: 0;
        margin-top: 0;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video-section {
        height: 30vh;
        margin-top: 0;
        position: relative;
        z-index: 1;
        clear: both;
    }

    .hero-title {
        font-size: clamp(3.5rem, 9vw, 6rem);
        line-height: 0.9;
        letter-spacing: 0.01em;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        margin-bottom: 1.5rem;
    }

    .hero-description-box {
        padding: 2rem;
        margin-bottom: 1.5rem;
        background: #0f111577;
        margin-top: -10px;
    }

    .hero-description-box p {
        font-size: clamp(1.1rem, 2.4vw, 1.2rem);
        line-height: 1.4;
    }

    .hero-cta {
        padding: 1rem 2rem;
        font-size: clamp(1.1rem, 2.5vw, 1rem);
        font-family: 'Satoshi', sans-serif;
        letter-spacing: 0.01em;

    }

    .feature-card,
    .solution-card {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .feature-card {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1.5rem 1rem;
        margin-bottom: 0;
    }

    .feature-card:last-child {
        border-bottom: none;
    }

    .feature-card:nth-child(4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-card:nth-child(5) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-card:nth-child(6) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-icon {
        margin-bottom: 0.8rem;
    }

    .custom-icon {
        width: 45px;
        height: 45px;
    }

    .feature-card h3 {
        font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: normal !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.2 !important;
    }

    .feature-card p {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .section-subtitle {
        display: none;
    }

    .section-title {
        font-size: 3rem;
        line-height: 1;
        letter-spacing: 0.02em;
        margin-bottom: 3rem;
    }

    .section-subtitle {
        display: none;
    }

    .large-title {
        font-size: 3rem;
        line-height: 0.5;
        letter-spacing: 0.03em;
    }

    .large-titles {
        padding: 2rem 0;
        margin-top: 3rem;
        margin-bottom: 2rem;
    }

    .cta-title {
        font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: 1.8rem !important;
        font-weight: normal !important;
    }

    .footer-title {
        font-family: 'Satoshi-Black', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: normal !important;
    }

    h3.footer-title {
        font-family: 'Satoshi-Black', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-weight: normal !important;
        font-style: normal !important;
    }

    .footer-grow {
        font-size: 4rem;
    }

    .logo-carousel-container {
        height: 100px;
    }

    .logo-item {
        margin: 0 1.5rem;
        width: 140px;
        height: 60px;
    }

    .client-logo-img {
        height: 45px;
        width: 120px;
    }

    .intro-text {
        font-size: clamp(1.2rem, 2.5vw, 1.5rem);
        text-align: center;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .logo-carousel::before,
    .logo-carousel::after {
        width: 30px;
    }

    .logo-track {
        animation-duration: 15s;
    }

    .testimonial-slider {
        height: 200px;
    }

    .testimonial-slide {
        padding: 0 0.5rem;
    }

    .testimonial-quote {
        font-size: clamp(1.5rem, 3vw, 2rem);
    }

    @media (max-width: 480px) {
        .testimonial-quote {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
        }
    }

    .cta-title {
        font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: clamp(2rem, 4vw, 2.5rem) !important;
        font-weight: normal !important;
    }

    .cta-description {
        font-size: 1rem;
    }

    .cta-stats {
        gap: 1rem;
    }

    .cta-stat .stat-number {
        font-size: 1.2rem;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .footer-contact-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-left,
    .contact-center,
    .contact-right {
        text-align: center;
    }

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

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

    .footer {
        min-height: 50vh;
        padding-bottom: 2rem;
    }

    .footer-top {
        padding: 0.5rem 0;
    }

    .footer-main {
        padding: 1rem 0;
        padding-bottom: 2rem;
    }

    .footer {
        min-height: 70vh;
    }

    .footer-top {
        padding: 1rem 0;
    }

    .footer-main {
        padding: 1.5rem 0;
    }

    .growth-section {
        height: 20vh;
    }

    .growth-text {
        font-size: clamp(5rem, 12vw, 18rem);
        margin-right: 2rem;
    }

    .footer-title {
        font-family: 'Satoshi-Black', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: clamp(2rem, 6vw, 4rem) !important;
        font-weight: normal !important;
    }

    h3.footer-title {
        font-family: 'Satoshi-Black', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-weight: normal !important;
        font-style: normal !important;
    }

    .footer-subtitle {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .footer-cta-button {
        padding: 1.5rem 3rem;
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0;
    }

    .footer-grow {
        font-size: clamp(4rem, 12vw, 15rem);
    }

    .footer-contact-info {
        gap: 1rem;
    }

    .contact-phone {
        font-size: 1rem;
    }

    .contact-phone-secondary {
        font-size: 1rem;
    }

    .contact-email a {
        font-size: 1rem;
    }

    .contact-address {
        font-size: 1rem;
    }

    .nav-column a {
        font-size: 1rem;
    }

    .footer-grow-container {
        height: 100px;
    }

    .growth-section {
        height: 18vh;
    }

    .growth-text {
        font-size: clamp(4rem, 10vw, 12rem);
        margin-right: 1rem;
    }

    .footer-cta-button {
        padding: 1.3rem 2.5rem;
        font-size: 1.2rem;
        margin-top: 1rem;
        margin-bottom: 0;
    }

    .footer-arrow {
        font-size: 1.2rem;
    }

    .hero-background {
        left: 0;
        top: 0;
        background-position: center;
    }
}

/* Process Hero Section */
.process-hero {
    position: relative;
    min-height: 600px;
    max-height: 80vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
    padding: 2rem 0;
    margin-top: -50px;
}

.process-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.process-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.process-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-hero-card {
    background: var(--light-orange);
    background-image: url('../images/hero.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 9rem 6rem;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: -10rem;
    margin-top: -10rem;

}

.process-hero-subtitle {
    color: var(--orange);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    font-family: 'Satoshi', sans-serif;
    position: relative;
    z-index: 2;
}

.process-hero-title {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: normal;
    line-height: 0.79;
    letter-spacing: -0.01em;
    color: var(--black);
    text-transform: uppercase;
    margin: 0;
    position: relative;
    z-index: 2;

}

/* Process Hero Large Screen Styles */
@media (min-width: 1400px) {
    .process-hero {
        max-height: 700px;
        padding: 3rem 0;
    }

    .process-hero-card {
        padding: 6rem 5rem;
        margin-bottom: -6rem;
        margin-top: -6rem;
    }
}

/* Fix for hero section overlap between 1200px and 1400px */
@media (min-width: 1200px) and (max-width: 1399px) {
    .hero {
        padding-top: 120px;
    }

    .hero-content {
        margin-top: 180px;
        padding-top: 120px;
    }

    .process-hero {
        padding: 120px 0 80px;
    }

    .process-hero-content {
        margin-top: 100px;
    }

    /* Fix for popup button visibility */
    .popup-container {
        max-height: 90vh;
        overflow-y: auto;
        overflow-x: hidden;
        scrollbar-width: thin;
        scrollbar-color: #FF4134 #333;
    }

    .popup-container::-webkit-scrollbar {
        width: 8px;
    }

    .popup-container::-webkit-scrollbar-track {
        background: #333;
        border-radius: 4px;
    }

    .popup-container::-webkit-scrollbar-thumb {
        background: #FF4134;
        border-radius: 4px;
    }

    .popup-container::-webkit-scrollbar-thumb:hover {
        background: #e63946;
    }

    .popup-submit {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        margin-top: 1.5rem;
    }

    .popup-form {
        padding-bottom: 2rem;
        max-height: calc(90vh - 200px);
        overflow-y: auto;
    }
}

/* Process Hero Mobile Styles */
@media (max-width: 1200px) {
    .process-hero-card {
        max-width: 95%;
        padding: 7rem 4rem;
    }

    .process-hero-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .process-hero {
        min-height: 400px;
        max-height: 500px;
        padding: 1rem 0;
    }

    .process-hero-card {
        padding: 5rem 3rem;
        margin: 0 1rem;
        margin-top: 0;
        max-width: calc(100% - 2rem);
        border-radius: 12px;
    }

    .process-hero-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        line-height: 0.85;
    }

    .process-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-hero {
        min-height: 350px;
        max-height: 450px;
        margin-top: -30px;
        padding: 1rem 0;
    }

    .process-hero-card {
        padding: 3rem 2rem;
        margin: 0 0.5rem;
        margin-top: 0;
        max-width: calc(100% - 1rem);
        border-radius: 8px;
    }

    .process-hero-title {
        font-size: clamp(2.5rem, 5vw, 3rem);
        line-height: 0.9;
        margin-top: 1rem;
    }

    .process-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        font-family: 'Satoshi', sans-serif;
        font-weight: 600;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--orange);
    }
}

@media (max-width: 360px) {
    .hero {
        min-height: 100vh;
        max-height: 100vh;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .process-hero {
        min-height: 300px;
        max-height: 400px;
        padding: 0.5rem 0;
    }

    .process-hero-card {
        padding: 2.5rem 1.5rem;
        margin: 0 0.25rem;
        margin-top: 0;
        max-width: calc(100% - 0.5rem);
    }

    .process-hero-title {
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
        line-height: 0.95;
    }

    .process-hero-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0.8rem;
    }
}

/* Floating Process Section */
.floating-process {
    padding: 6rem 0;
    background: var(--black);
    margin-top: -5rem;
    position: relative;
    overflow: hidden;
}



.process-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
}

.process-intro p {
    color: var(--white);
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 500;
    max-width: 900px;
    font-family: 'Satoshi', sans-serif;
    letter-spacing: -0.01em;
    text-align: center;
    margin: 0 auto;
}

.floating-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 6rem;
    position: relative;
    z-index: 2;
}

.floating-item {
    position: relative;
    text-align: center;
    padding: 2rem;
    transition: all 0.4s ease;
}

.floating-item:hover {
    transform: translateY(-10px);
}

.floating-circle {
    width: 80px;
    height: 80px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 auto 2rem;
    box-shadow: 0 8px 30px rgba(255, 65, 52, 0.4);
    position: relative;
    z-index: 2;
}

.floating-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s infinite;
}

.floating-text {
    position: relative;
    z-index: 2;
}

.floating-text h3 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
    font-family: 'Satoshi', sans-serif;
    line-height: 1.2;
}

.floating-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 0;
    font-family: 'Satoshi', sans-serif;
}

.floating-item.highlight .floating-circle {
    background: var(--orange);
    box-shadow: 0 12px 40px rgba(255, 65, 52, 0.6);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 12px 40px rgba(255, 65, 52, 0.6);
    }

    100% {
        box-shadow: 0 12px 40px rgba(255, 65, 52, 0.8), 0 0 60px rgba(255, 65, 52, 0.3);
    }
}

/* Why This Process Works Section */
.why-process {
    padding: 6rem 0;
    background: var(--black);
}

.why-process-title {
    color: var(--white);
    font-size: 3rem;
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Thunderbold LC', sans-serif;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.why-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-process-card {
    background: rgba(197, 197, 197, 0.021);
    border: 1px solid rgba(255, 255, 255, 0.048);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.why-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 65, 52, 0.1), transparent);
    transition: left 0.6s ease;
}

.why-process-card:hover::before {
    left: 100%;
}

.why-process-card:hover {
    background: rgba(255, 255, 255, 0.055);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.why-process-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-process-icon img {
    width: 48px;
    height: 48px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.3));
}

.why-process-card:hover .why-process-icon img {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.6)) brightness(1.3);
    animation: iconPulse 0.6s ease-out;
}

.why-process-card:nth-child(1):hover .why-process-icon img {
    animation: iconFloat 2s ease-in-out infinite;
}

.why-process-card:nth-child(2):hover .why-process-icon img {
    animation: iconSpin 1.5s ease-in-out infinite;
}

.why-process-card:nth-child(3):hover .why-process-icon img {
    animation: iconBounce 1.2s ease-in-out infinite;
}

.why-process-card:nth-child(4):hover .why-process-icon img {
    animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0% {
        transform: scale(1.2) rotate(5deg);
    }

    50% {
        transform: scale(1.3) rotate(8deg);
    }

    100% {
        transform: scale(1.2) rotate(5deg);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) scale(1.2) rotate(5deg);
    }

    50% {
        transform: translateY(-8px) scale(1.2) rotate(5deg);
    }
}

@keyframes iconSpin {
    0% {
        transform: scale(1.2) rotate(5deg);
    }

    50% {
        transform: scale(1.2) rotate(185deg);
    }

    100% {
        transform: scale(1.2) rotate(365deg);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: scale(1.2) rotate(5deg);
    }

    25% {
        transform: scale(1.3) rotate(8deg);
    }

    50% {
        transform: scale(1.1) rotate(2deg);
    }

    75% {
        transform: scale(1.25) rotate(6deg);
    }
}

@keyframes iconGlow {

    0%,
    100% {
        transform: scale(1.2) rotate(5deg);
        filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.6)) brightness(1.3);
    }

    50% {
        transform: scale(1.25) rotate(7deg);
        filter: drop-shadow(0 12px 24px rgba(255, 255, 255, 0.8)) brightness(1.5);
    }
}

.why-process-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    font-family: 'Satoshi', sans-serif;
}

.why-process-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.2;
    margin: 0;
    padding-left: 2rem;
    padding-right: 2rem;
    font-family: 'Satoshi', sans-serif;
    transition: all 0.3s ease;
}

.why-process-card:hover p {
    color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

/* Icon Entrance Animations */
.why-process-icon {
    animation: iconEntrance 0.8s ease-out both;
}

.why-process-icon:nth-child(1) {
    animation-delay: 0.2s;
}

.why-process-icon:nth-child(2) {
    animation-delay: 0.4s;
}

.why-process-icon:nth-child(3) {
    animation-delay: 0.6s;
}

.why-process-icon:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes iconEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(-180deg);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1) rotate(-90deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* Responsive Design for Why Process Section */
@media (max-width: 768px) {
    .floating-grid {
        margin-top: 4rem;
        gap: 2.5rem;
        padding: 0 1rem;
    }

    .floating-item {
        padding: 1.5rem;
    }

    .floating-circle {
        width: 70px;
        height: 70px;
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .floating-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .floating-text p {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .why-process-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
        line-height: 1.1;
    }

    .why-process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .why-process-card {
        padding: 2rem;
    }

    .why-process-card h3 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .why-process-card p {
        font-size: 1.2rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .floating-grid {
        margin-top: 3rem;
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .floating-item {
        padding: 1rem;
    }

    .floating-circle {
        width: 60px;
        height: 60px;
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .floating-text h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .floating-text p {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .why-process-title {
        font-size: 2.8rem;
        margin-bottom: 2rem;
        line-height: 1.1;
    }

    .why-process-card {
        padding: 1.5rem;
    }

    .why-process-icon svg {
        width: 40px;
        height: 40px;
    }

    .why-process-card h3 {
        font-size: 1.4rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .why-process-card p {
        font-size: 1.1rem;
        line-height: 1.4;
    }
}

/* Key Features Section */
.key-features {
    padding: 4rem 0;
    background: var(--orange);
    border-radius: 20px;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.key-features-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6rem;
}

.key-features-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.key-features-title h2 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Thunderbold LC', sans-serif;
    letter-spacing: 0.02em;
    line-height: 0.9;
    margin: 0;
    position: relative;
    transition: all 0.3s ease;
}

.key-features-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--white);
    transition: width 0.4s ease;
}

.key-features-title:hover h2::after {
    width: 100%;
}

.key-features-grid {
    display: grid;
    grid-template-areas:
        "top-right top-right"
        "bottom-left bottom-right";
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
    width: 100%;
}

.key-feature-card:nth-child(1) {
    grid-area: top-right;
}

.key-feature-card:nth-child(2) {
    grid-area: bottom-left;
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.key-feature-card:nth-child(3) {
    grid-area: bottom-right;
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.key-feature-card {
    padding: 2rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transform: translateY(0);
}

.key-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.key-feature-card:hover::before {
    left: 100%;
}

.key-feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.key-feature-card.white:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

.key-feature-card.light-orange:hover {
    background: rgba(255, 65, 52, 0.8);
    box-shadow: 0 20px 40px rgba(255, 65, 52, 0.4);
}

/* Entrance Animations */
.key-features {
    animation: slideInUp 0.8s ease-out;
}

.key-features-title {
    animation: fadeInLeft 1s ease-out 0.2s both;
}

.key-feature-card {
    animation: fadeInUp 0.8s ease-out both;
}

.key-feature-card:nth-child(1) {
    animation-delay: 0.4s;
}

.key-feature-card:nth-child(2) {
    animation-delay: 0.6s;
}

.key-feature-card:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.key-feature-card.white {
    background: var(--white);
}

.key-feature-card.light-orange {
    background: #ffffff3f;
}

.key-feature-card h3 {
    font-size: 1.4rem;
    line-height: 0.9;
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    text-transform: Title;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.key-feature-card:hover h3 {
    transform: translateX(5px);
}

.key-feature-card.white h3 {
    color: var(--black);
}

.key-feature-card.light-orange h3 {
    color: var(--white);
}

.key-feature-card p {
    font-size: 1rem;
    line-height: 1.2;
    margin: 0;
    font-family: 'Satoshi', sans-serif;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.key-feature-card:hover p {
    opacity: 1;
    transform: translateX(5px);
}

.key-feature-card.white p {
    color: var(--black);
}

.key-feature-card.light-orange p {
    color: var(--white);
}

/* Responsive Design for Key Features Section */
@media (max-width: 1200px) {
    .key-features {
        max-width: 100%;
        margin-left: 2rem;
        margin-right: 2rem;
    }

    .key-features-container {
        padding: 0 3rem;
    }
}

@media (max-width: 768px) {
    .key-features {
        margin-left: 0;
        margin-right: 0;
        padding: 3rem 1rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
        border-radius: 0;
        max-width: 100%;
    }

    .key-features-container {
        padding: 0 1rem;
        max-width: 100%;
    }

    .key-features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .key-features-grid {
        gap: 1rem;
        width: 100%;
        max-width: 100%;
    }

    .key-features-title h2 {
        font-size: 3.5rem;
        text-align: center;
        line-height: 1;
    }

    .key-feature-card {
        padding: 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .key-feature-card h3 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .key-feature-card p {
        font-size: 1.3rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .key-features {
        margin-left: 0;
        margin-right: 0;
        padding: 2.5rem 0.5rem;
        margin-top: 2.5rem;
        margin-bottom: 2.5rem;
        border-radius: 0;
        max-width: 100%;
    }

    .key-features-container {
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .key-features-title h2 {
        font-size: 2.5rem;
        line-height: 1;
    }

    .key-feature-card {
        padding: 1.2rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .key-feature-card h3 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
    }

    .key-feature-card p {
        font-size: 1.2rem;
        line-height: 1.4;
    }
}

/* Modern Process Mobile Styles */
@media (max-width: 768px) {
    .modern-process {
        padding: 4rem 0;
        margin-top: -3rem;
    }

    .process-intro {
        margin-bottom: 2.5rem;
        padding: 0 1.5rem;
    }

    .process-intro p {
        font-size: 1.4rem;
        line-height: 1.3;
        max-width: 600px;
    }

    .process-timeline {
        gap: 2rem;
        padding: 0 1rem;
        max-width: 500px;
    }

    .process-timeline::before {
        left: 25px;
    }

    .timeline-step {
        gap: 1.5rem;
    }

    .step-marker {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.5rem;
    }

    .step-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .modern-process {
        padding: 3rem 0;
        margin-top: -2rem;
    }

    .process-intro {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .process-intro p {
        font-size: 1.1rem;
        line-height: 1.4;
        max-width: 500px;
    }

    .process-timeline {
        gap: 1.5rem;
        padding: 0 0.5rem;
        max-width: 400px;
    }

    .process-timeline::before {
        left: 20px;
    }

    .timeline-step {
        gap: 1rem;
    }

    .step-marker {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .step-content {
        padding: 1.2rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation for fade-in effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.solution-card,
.stat-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover effects for interactive elements */
.nav-links a,
.footer-links a,
.footer-contact a {
    position: relative;
}

.nav-links a::after,
.footer-links a::after,
.footer-contact a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--orange);
    transition: width 0.3s ease;
}

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

/* Appointments Section Styles */
.appointments-section {
    margin: 4rem 0;
    width: 100%;
    background: var(--black);
    padding: 4rem 2rem;
    border-radius: 20px;
}

.appointments-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin-bottom: -10rem;

}

.appointments-header {
    text-align: left;
    margin-bottom: 3rem;
}

.appointments-title {
    font-size: 3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: 'Satoshi', sans-serif;
}

.appointments-cta-button {
    background: var(--black);
    color: var(--white);
    border: none;
    font-family: 'Satoshi', sans-serif;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.appointments-cta-button:hover {
    background: var(--orange);
    transform: translateY(-2px);
}

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

.appointments-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 33.33%;
    height: 100%;
    width: 1px;
    background: #e0e0e0;
}

.appointments-features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 66.66%;
    height: 100%;
    width: 1px;
    background: #e0e0e0;
}

/* Hide vertical lines on mobile */
@media (max-width: 768px) {

    .appointments-features::before,
    .appointments-features::after {
        display: none;
    }

    /* Hide line break on mobile */
    .appointments-title br {
        display: none;
    }
}

.appointments-feature {
    text-align: left;
    padding: 2rem;
    border-radius: 15px;
    background: transparent;
    transition: all 0.3s ease;
}

.appointments-feature:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1.5rem 0;
}

.feature-icon img {
    width: 50px;
    height: 50px;
}

/* Black icons only for Why Us page appointments section */
.appointments-section .feature-icon img {
    filter: brightness(0) saturate(100%);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -0.02em;
    font-family: 'Satoshi', sans-serif;
}

.feature-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.1;
    margin: 0;
}

/* Mobile Responsive for Appointments Section */
@media (max-width: 768px) {
    .appointments-section {
        margin: 2rem 0;
        padding: 0;
    }

    .appointments-card {
        padding: 2rem 1.5rem;
        margin: 0;
        border-radius: 0;
        max-width: 100%;
    }

    .appointments-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        margin-top: 3rem;
    }

    .appointments-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .appointments-feature {
        padding: 1.5rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .appointments-section {
        margin: 1.5rem 0;
        padding: 0;
    }

    .appointments-card {
        padding: 1.5rem 1rem;
        margin: 0;
        border-radius: 0;
    }

    .appointments-title {
        font-size: 1.8rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }
}

/* Growth Engine Section Styles */
.growth-engine-section {
    margin: 6rem 0;
    width: 100%;
}

.growth-engine-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    padding: 0 2rem;
}

.growth-engine-left {
    padding: 0 2rem;
    text-align: left;
}

.growth-engine-title {
    font-size: 2.2rem;
    letter-spacing: -0.02em;
    font-family: 'Satoshi', sans-serif;
    text-align: left;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.growth-engine-description {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.4;
    opacity: 0.9;
    text-align: left;
}

.growth-engine-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.growth-engine-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: flex-start;
}

.feature-bullet {
    width: 12px;
    height: 12px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
        transform: scale(1);
    }

    25%,
    75% {
        opacity: 0.3;
        transform: scale(0.8);
    }
}

.growth-engine-feature span {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
}

.growth-engine-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.growth-engine-svg {
    max-width: 100%;
    height: auto;
    width: 100%;
}

/* Mobile Responsive for Growth Engine Section */
@media (max-width: 768px) {
    .growth-engine-section {
        margin: 4rem 0;
    }

    .growth-engine-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .growth-engine-left {
        padding: 0;
        text-align: left;
        order: 2;
    }

    .growth-engine-right {
        order: 1;
    }

    .growth-engine-title {
        font-size: 2.8rem;
    }

    .growth-engine-description {
        font-size: 1.4rem;
    }

    .growth-engine-features {
        align-items: flex-start;
    }

    .growth-engine-feature {
        justify-content: flex-start;
    }

    .growth-engine-feature span {
        font-size: 1.3rem;
    }

    .growth-engine-svg {
        max-width: 80%;
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 480px) {
    .growth-engine-section {
        margin: 3rem 0;
    }

    .growth-engine-container {
        gap: 2rem;
        padding: 0 0.5rem;
    }

    .growth-engine-title {
        font-size: 2.2rem;
    }

    .growth-engine-description {
        font-size: 1.2rem;
    }

    .growth-engine-feature span {
        font-size: 1.1rem;
    }

    .growth-engine-svg {
        max-width: 90%;
    }
}

/* Comparison Table Styles */
.comparison-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.comparison-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.comparison-title {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.comparison-subtitle {
    font-family: 'Satoshi', sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    line-height: 1.4;
    margin-top: -5px;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    background: rgba(255, 65, 52, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.table-header>div {
    padding: 1.5rem 1rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
}

.feature-column {
    text-align: left !important;
    background: rgba(255, 65, 52, 0.15);
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table-row:last-child {
    border-bottom: none;
}

.table-row>div {
    padding: 1.5rem 1rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-cell {
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
}

.leads-edge-cell {
    color: #ffffff;
    background: rgba(0, 255, 0, 0.1);
    border-left: 3px solid #00ff00;
}

.zillow-cell,
.realtor-cell {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 0, 0, 0.1);
    border-left: 3px solid #ff0000;
}

.check-icon {
    color: #00ff00;
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 20px;
}

.cross-icon {
    color: #ff0000;
    font-size: 1.2rem;
    font-weight: bold;
    min-width: 20px;
}

.cell-text {
    flex: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .comparison-section {
        padding: 3rem 0;
    }

    .comparison-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .comparison-title {
        font-size: clamp(2.5rem, 5vw, 3rem);
        margin-bottom: 0.5rem;
    }

    .comparison-subtitle {
        font-size: clamp(1rem, 2vw, 1.2rem);
    }

    .comparison-table {
        margin: 0 1rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
    }

    .table-header {
        display: none;
    }

    .table-row {
        display: block;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .feature-cell {
        font-size: 1.2rem;
        font-weight: 700;
        color: #ffffff;
        background: rgba(255, 65, 52, 0.15);
        padding: 1rem 1.5rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 0.02em;
        border: 1px solid rgba(255, 65, 52, 0.3);
    }

    .leads-edge-cell,
    .zillow-cell,
    .realtor-cell {
        display: flex;
        align-items: flex-start;
        padding: 1rem 1.5rem;
        margin-bottom: 1rem;
        border-radius: 8px;
        border-left: 4px solid;
        position: relative;
        min-height: 60px;
    }

    .leads-edge-cell {
        background: rgba(0, 255, 0, 0.08);
        border-left-color: #00ff00;
    }

    .zillow-cell,
    .realtor-cell {
        background: rgba(255, 0, 0, 0.08);
        border-left-color: #ff0000;
    }

    .leads-edge-cell::before {
        content: 'LEADS EDGE';
        position: absolute;
        top: -0.75rem;
        left: 1rem;
        font-size: 0.75rem;
        font-weight: 700;
        color: #00ff00;
        background: rgba(0, 255, 0, 0.2);
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .zillow-cell::before {
        content: 'ZILLOW';
        position: absolute;
        top: -0.75rem;
        left: 1rem;
        font-size: 0.75rem;
        font-weight: 700;
        color: #ff0000;
        background: rgba(255, 0, 0, 0.2);
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .realtor-cell::before {
        content: 'REALTOR.COM';
        position: absolute;
        top: -0.75rem;
        left: 1rem;
        font-size: 0.75rem;
        font-weight: 700;
        color: #ff0000;
        background: rgba(255, 0, 0, 0.2);
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .check-icon,
    .cross-icon {
        font-size: 1.4rem;
        min-width: 24px;
        margin-right: 1rem;
        margin-top: 0.2rem;
    }

    .cell-text {
        font-size: 1rem;
        line-height: 1.4;
        flex: 1;
        font-weight: 500;
    }
}

@media (max-width: 480px) {
    .comparison-section {
        padding: 2rem 0;
    }

    .comparison-header {
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }

    .comparison-title {
        font-size: clamp(2.2rem, 4.5vw, 2.8rem);
        margin-bottom: 0.5rem;
    }

    .comparison-subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    }

    .comparison-table {
        margin: 0 0.5rem;
        border-radius: 10px;
    }

    .table-row {
        padding: 1.2rem;
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .feature-cell {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
        margin-bottom: 1rem;
        border-radius: 6px;
    }

    .leads-edge-cell,
    .zillow-cell,
    .realtor-cell {
        padding: 0.8rem 1rem;
        margin-bottom: 0.8rem;
        min-height: 50px;
        border-left-width: 3px;
    }

    .leads-edge-cell::before,
    .zillow-cell::before,
    .realtor-cell::before {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
        top: -0.6rem;
    }

    .check-icon,
    .cross-icon {
        font-size: 1.2rem;
        min-width: 20px;
        margin-right: 0.8rem;
    }

    .cell-text {
        font-size: 0.95rem;
        line-height: 1.3;
    }
}

/* Who This Is For Section Styles */
.who-this-for-section {
    padding: 6rem 0;
    background: transparent;
    position: relative;
}

.who-this-for-header {
    text-align: center;
    margin-bottom: 4rem;
}

.who-this-for-title {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 0.9;
    margin-bottom: 1rem;
}

.who-this-for-content {
    max-width: 800px;
    margin: 0 auto;
}

.who-this-for-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.who-this-for-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 65, 52, 0.2);
}

.who-this-for-item:last-child {
    margin-bottom: 0;
}

.who-this-for-icon {
    margin-right: 2rem;
    min-width: 60px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-this-for-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.who-this-for-item:hover .who-this-for-icon img {
    transform: scale(1.1);
    opacity: 1;
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.who-this-for-text {
    flex: 1;
}

.who-this-for-item-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.who-this-for-item-description {
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    font-weight: 400;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .who-this-for-section {
        padding: 4rem 0;
    }

    .who-this-for-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .who-this-for-title {
        font-size: clamp(2.5rem, 5vw, 3rem);
        margin-bottom: 0.5rem;
    }

    .who-this-for-content {
        padding: 0 1rem;
    }

    .who-this-for-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .who-this-for-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        min-width: auto;
    }

    .who-this-for-icon img {
        width: 36px;
        height: 36px;
    }

    .who-this-for-item:hover .who-this-for-icon img {
        transform: scale(1.05);
    }

    .who-this-for-item-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .who-this-for-item-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .who-this-for-section {
        padding: 3rem 0;
    }

    .who-this-for-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .who-this-for-title {
        font-size: clamp(2.2rem, 4.5vw, 2.8rem);
    }

    .who-this-for-content {
        padding: 0 0.5rem;
    }

    .who-this-for-item {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .who-this-for-icon {
        margin-bottom: 0.8rem;
    }

    .who-this-for-icon img {
        width: 32px;
        height: 32px;
    }

    .who-this-for-item:hover .who-this-for-icon img {
        transform: scale(1.05);
    }

    .who-this-for-item-title {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }

    .who-this-for-item-description {
        font-size: 0.9rem;
    }
}

/* Modern Popup Form Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    max-width: 480px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 65, 52, 0.4) transparent;
}

.popup-container::-webkit-scrollbar {
    width: 3px;
}

.popup-container::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 1px;
}

.popup-container::-webkit-scrollbar-thumb {
    background: rgba(255, 65, 52, 0.4);
    border-radius: 1px;
}

.popup-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 65, 52, 0.6);
}

.popup-container::-webkit-scrollbar-button {
    display: none;
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

.popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.popup-title {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
    line-height: 0.9;
    text-transform: uppercase;
    font-weight: 500;
}

.popup-subtitle {
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 0;
}

.popup-close {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: transparent;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
}

.popup-close:hover {
    background: rgba(255, 65, 52, 0.2);
    border-color: #FF4134;
    color: #FF4134;
    transform: scale(1.1);
}

.popup-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: #FF4134;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 65, 52, 0.1);
}

.popup-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #FF4134 0%, #ff6b5e 100%);
    border: none;
    border-radius: 12px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 65, 52, 0.3);
}

.popup-submit:active {
    transform: translateY(0);
}

.submit-arrow {
    transition: transform 0.3s ease;
}

.popup-submit:hover .submit-arrow {
    transform: translateX(3px);
}

.popup-benefits {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.benefit-item:last-child {
    margin-bottom: 0;
}

.benefit-item svg {
    color: #FF4134;
    flex-shrink: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .popup-container {
        padding: 1.5rem 1rem;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .popup-title {
        font-size: 2.8rem;
    }

    .popup-subtitle {
        font-size: 1rem;
    }

    .form-group input {
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
    }

    .popup-submit {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .popup-container {
        padding: 1.2rem 0.8rem;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .popup-title {
        font-size: 3rem;
        margin-top: 20px;
    }

    .popup-subtitle {
        font-size: 0.9rem;
    }


    .popup-close {
        position: absolute;
        top: -2rem;
        right: -0.5rem;

    }


    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group label {
        font-size: 0.8rem;
    }

    .form-group input {
        padding: 0.8rem 0.9rem;
        font-size: 0.9rem;
    }

    .popup-submit {
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }

    .benefit-item {
        font-size: 0.8rem;
    }
}

/* Consent Checkbox Styles */
.consent-checkbox {
    display: flex !important;
    align-items: flex-start !important;
    gap: 0.75rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    flex-direction: row !important;
    width: 100% !important;
    max-width: 100% !important;
}

.form-checkbox {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    accent-color: #FF4134 !important;
    flex-shrink: 0 !important;
    margin-top: 3px !important;
    align-self: flex-start !important;
}

.consent-label {
    color: #cccccc !important;
    font-size: 0.9rem !important;
    line-height: 1.4 !important;
    font-weight: 400 !important;
    cursor: pointer;
    user-select: none;
    text-transform: none !important;
    white-space: normal !important;
    text-align: left !important;
    display: block !important;
    letter-spacing: normal !important;
    margin-bottom: 0 !important;
    width: calc(100% - 30px) !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    max-width: 100% !important;
}

.consent-label:hover {
    color: #ffffff !important;
}

.consent-label a {
    color: #FF4134 !important;
    text-decoration: underline !important;
    transition: opacity 0.3s ease !important;
}

.consent-label a:hover {
    opacity: 0.8 !important;
}

/* Why Us Page Specific Styles */
.why-us-page .process-hero-background {
    background: #0c0c0c !important;
}

.why-us-page .process-hero-overlay {
    background: rgba(12, 12, 12, 0.8) !important;
}

.why-us-page .process-hero-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.why-us-page .process-hero-title {
    color: #ffffff !important;
}

/* Pricing Page Styles */
.pricing-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.pricing-card-link:hover {
    transform: translateY(-5px);
}

.pricing-card-link .pricing-card {
    cursor: pointer;
}

.pricing-card-link .cta-button-modern {
    pointer-events: none;
}

.pricing-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    overflow: hidden;
}

.pricing-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/Gradientoverlay.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.3;
}

.pricing-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.pricing-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.pricing-hero-card {
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.pricing-hero-title {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: normal;
    line-height: 1.1;
    margin-bottom: 1rem;
    margin-top: 5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.pricing-hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.pricing-section {
    padding: 5rem 0;
    background: #0c0c0c;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-intro h2 {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.pricing-intro p {
    font-size: 1.1rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    perspective: 1000px;
    height: 500px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: left;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.pricing-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-front {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.card-back {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transform: rotateY(180deg);
}

/* Plan Badges */
.plan-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 1rem;
}

.essentials-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.pro-badge {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.executive-badge {
    background: rgba(255, 65, 52, 0.2);
    color: #ffffff;
    border: 1px solid rgba(232, 232, 232, 0.3);
}

/* Executive Card Special Styling */
.pricing-card.executive .card-front {
    background: linear-gradient(135deg, #FF4134 0%, #e63946 100%);
    border: 2px solid #FF4134;
}

.pricing-card.executive .card-back {
    background: linear-gradient(135deg, #FF4134 0%, #e63946 100%);
    border: 2px solid #FF4134;
}

.pricing-card.executive .plan-name {
    color: #ffffff;

}

.pricing-card.executive .price {
    color: #ffffff;

}

.pricing-card.executive .period {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.executive .discount {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-weight: 600;
}

.pricing-card.executive .original-price {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 2.5rem;
    line-height: 1;
    order: 1;
}

.pricing-card.executive .appointments {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);

}

.pricing-card.executive .card-back h4 {
    color: #ffffff;

}

.pricing-card.executive .card-back p {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.executive .back-feature strong {
    color: #ffffff;

}

.pricing-card.executive .back-feature p {
    color: rgba(255, 255, 255, 0.8);
}

/* Executive Card CTA Button - White */
.pricing-card.executive .cta-button-modern {
    background: #ffffff !important;
    color: #FF4134 !important;
    border: 2px solid #ffffff !important;
}

.pricing-card.executive .cta-button-modern:hover {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #FF4134 !important;
    border: 2px solid rgba(255, 255, 255, 0.9) !important;
}

.plan-name {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.price {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    order: 2;
}

.period {
    display: block;
    font-size: 1rem;
    color: #cccccc;
    margin-top: 0.25rem;
}

.discount {
    display: block;
    font-size: 0.8rem;
    color: #22c55e;
    margin-top: 0.25rem;
    font-weight: 600;
}

.original-price {
    text-decoration: line-through;
    color: #666666;
    font-weight: 400;
    font-size: 2.5rem;
    line-height: 1;
    order: 1;
}

.plan-highlight {
    margin-bottom: 1.5rem;
}

.appointments {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 65, 52, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 65, 52, 0.2);
}

.plan-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #cccccc;
}

.feature-icon {
    font-size: 1.1rem;
    min-width: 20px;
}

.plan-cta {
    margin-top: auto;
}

.plan-cta button {
    pointer-events: none;
}

/* Card Back Styles */
.card-back h4 {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 2.5rem;
    font-weight: normal;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.card-back p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.back-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.back-feature {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.back-feature strong {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.back-feature p {
    color: #cccccc;
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #0c0c0c;
}

.faq-section h2 {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 65, 52, 0.3);
    transform: translateY(-2px);
}

.faq-item h3 {
    font-family: satoshi, sans-serif;
    font-size: 1.3rem;
    font-weight: normal;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        height: auto;
        min-height: 450px;
    }

    .card-front,
    .card-back {
        position: relative;
        backface-visibility: visible;
        transform: none;
    }

    .card-back {
        display: none;
    }

    .pricing-card:hover .card-inner {
        transform: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-hero-card {
        padding: 2rem 1.5rem;
    }

    .pricing-hero-title {
        font-size: 2rem;
    }

    .pricing-hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        min-height: 400px;
    }

    .card-front,
    .card-back {
        padding: 1.5rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .price {
        font-size: 2rem;
    }

    .appointments {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }
}

/* Lead Generation & Qualification Section */
.lead-generation-section {
    padding: 4rem 0;
    background: var(--black);
    color: var(--white);
}

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

.tabs-header {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-button {
    background: transparent;
    border: 2px solid var(--orange);
    color: var(--orange);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Satoshi', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button:hover {
    background: var(--orange);
    color: var(--black);
    transform: translateY(-2px);
}

.tab-button.active {
    background: var(--orange);
    color: var(--black);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tab-content-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tab-content-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-content-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.tab-content-item:hover::before {
    transform: scaleX(1);
}

.tab-content-item h3 {
    color: var(--orange);
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.tab-content-item p {
    color: var(--white);
    font-family: 'Satoshi', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Responsive Design for Lead Generation Section */
@media (max-width: 768px) {
    .lead-generation-section {
        padding: 3rem 0;
    }

    .tabs-header {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .tab-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .tab-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tab-content-item {
        padding: 1.5rem;
    }

    .tab-content-item h3 {
        font-size: 1.1rem;
    }

    .tab-content-item p {
        font-size: 0.9rem;
    }
}

/* Disclaimer Card Styles */
.disclaimer-card {
    background: rgba(255, 65, 52, 0.1);
    border: 1px solid rgba(255, 65, 52, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.disclaimer-content h3 {
    color: #FF4134;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.disclaimer-content p {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

/* Responsive Disclaimer Card */
@media (max-width: 768px) {
    .disclaimer-card {
        padding: 1rem;
        margin: 1.5rem 0;
        flex-direction: column;
        text-align: center;
    }

    .disclaimer-icon {
        margin-top: 0;
        margin-bottom: 0.5rem;
    }

    .disclaimer-content h3 {
        font-size: 1.1rem;
    }

    .disclaimer-content p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .lead-generation-section {
        padding: 2rem 0;
    }

    .tabs-header {
        margin-bottom: 2rem;
    }

    .tab-button {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .tab-content-item {
        padding: 1.25rem;
    }

    .tab-content-item h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .tab-content-item p {
        font-size: 0.85rem;
    }
}

/* ========================================
   LISTINGS PAGE STYLES
   ======================================== */

/* Featured Realtor Section */
.featured-realtor-section {
    padding: 40px 0;
    background: #0f0f0f;
    margin-top: 0px;
}

.featured-realtor-card {
    display: flex;
    background: #FF4134;
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
}

.realtor-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #FF4134;
    position: relative;
}


.featured-badge {
    background: #000;
    color: #fff;
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 30px;
    width: fit-content;
}

.realtor-title {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 85px;
    font-weight: normal;
    color: #fff;
    line-height: 0.8;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0px;
}

.realtor-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.788);
    line-height: 1.1;
    max-width: 500px;
    margin-top: -20px;
}

.realtor-right {
    flex: 2;
    background: #FF4134;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.realtor-image-container {
    text-align: center;
    position: relative;
}

.realtor-specialty-badge {
    background: #FF4134;
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.realtor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.realtor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.realtor-name {
    font-family: 'Satoshi', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.realtor-company {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Realtor Slider Styles */
.realtor-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.realtor-slider-container:hover .slider-dots {
    opacity: 1;
}

.realtor-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.realtor-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.realtor-slide.active {
    opacity: 1;
}

.realtor-slide-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.full-cover-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

/* Ensure picture element works properly */
.realtor-slide-image picture {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.realtor-slide-image picture img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
}

/* Mobile and Desktop Image Control */
.desktop-image {
    display: block;
}

.mobile-image {
    display: none;
}

/* Show mobile images on smaller screens */
@media (max-width: 1024px) {
    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block;
    }

    .realtor-slide-image {
        height: 500px;
        background: transparent;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    .realtor-slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .realtor-slide-image {
        height: 500px;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        min-height: 500px;
    }

    .realtor-slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        border-radius: 15px;
        min-height: 500px;
    }
}


/* Slider Navigation Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FF4134;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active:hover {
    background: #e53935;
}

/* Featured Listings Section */
.featured-listings-section {
    padding: 80px 0;
    background: #0f0f0f;
}

.listings-header {
    text-align: center;
    margin-bottom: 60px;
}

.listings-title {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 65px;
    margin-top: -70px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.listings-subtitle {
    font-size: 18px;
    color: #888;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1;
    margin-top: -40px;
}


/* Search and Filter Bar */
.search-filter-bar {
    display: flex;
    gap: 20px;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 60px;
    border: 1px solid #333;
    align-items: end;
}

.search-field {
    flex: 1;
}

.search-field label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 15px 20px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: #FF4134;
    box-shadow: 0 0 0 3px rgba(255, 65, 52, 0.1);
}

.search-field input::placeholder {
    color: #888;
}

.search-field select {
    cursor: pointer;
}

.search-button {
    background: #FF4134;
    border: none;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
}

.search-button:hover {
    background: #e53935;
    transform: translateY(-2px);
}

/* Listings Grid */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.listing-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.listing-card:hover {
    transform: translateY(-5px);
    border-color: #FF4134;
    box-shadow: 0 20px 40px rgba(255, 65, 52, 0.2);
}

.listing-image {
    width: 100%;
    height: 250px;
    background: #2a2a2a;
    position: relative;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Lazy loading placeholder */
.listing-image img[data-src] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.listing-image img[data-src].loaded {
    opacity: 1;
}

/* Image Performance Optimizations */
.listing-image img,
.popup-main-image img,
.popup-thumbnail img,
.lightbox-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

/* WebP Support Detection */
.webp .listing-image img,
.webp .popup-main-image img,
.webp .popup-thumbnail img {
    image-rendering: auto;
}

/* Image Loading States */
.listing-image img:not([src]),
.popup-main-image img:not([src]) {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Popup Image Optimization */
.popup-main-image {
    position: relative;
    overflow: hidden;
}

.popup-main-image img {
    transition: opacity 0.3s ease;
    max-width: 100%;
    height: auto;
}

.popup-main-image img.loading {
    opacity: 0.7;
}

/* Mobile Image Optimizations */
@media (max-width: 768px) {
    .listing-image img {
        image-rendering: auto;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        will-change: auto;
    }

    .listing-image {
        min-height: 200px;
        background: #f5f5f5;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .listing-image img[data-src] {
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .listing-image img[data-src].loaded {
        opacity: 1;
    }
}

@media (max-width: 480px) {
    .listing-image {
        min-height: 180px;
    }

    .listing-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-content {
    padding: 25px;
}

.listing-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.listing-location {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.listing-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.listing-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ccc;
    font-size: 14px;
}

.listing-detail svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
}

.listing-price {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
    color: #FF4134;
    margin-bottom: 10px;
}

.listing-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.learn-more-btn {
    background: #2a2a2a;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 14px !important;
    font-weight: normal !important;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em !important;
}

.learn-more-btn:hover {
    background: #333;
    transform: translateY(-2px);
}


/* Listing Popup */
.listing-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.listing-popup-overlay.active {
    display: flex;
}

.listing-popup-container {
    background: #1a1a1a;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    min-height: 60vh;
    overflow: visible;
    border: 1px solid #333;
    position: relative;
    display: flex;
    flex-direction: column;
}

.listing-popup-header {
    position: sticky;
    top: 0;
    background: #1a1a1a;
    padding: 20px 60px 20px 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: flex-end;
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.popup-close {
    background: #2a2a2a;
    border: none;
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: 10;
}

.popup-close:hover {
    background: #FF4134;
    transform: rotate(90deg);
}

/* Loading and Error States */
.popup-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #333;
    border-top: 4px solid #FF4134;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.popup-loading p {
    color: #ccc;
    font-size: 16px;
    margin: 0;
}

.popup-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

.popup-error h3 {
    color: #FF4134;
    font-size: 24px;
    margin-bottom: 15px;
}

.popup-error p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 25px;
}

.error-close-btn {
    background: #FF4134;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.error-close-btn:hover {
    background: #e63946;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-dropdown-trigger {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    min-height: 48px;
}

.custom-dropdown-trigger:hover {
    border-color: #FF4134;
    background: #333;
}

.custom-dropdown-trigger.active {
    border-color: #FF4134;
    background: #333;
}

.custom-dropdown-trigger .dropdown-text {
    flex: 1;
    text-align: left;
    color: #ccc;
}

.custom-dropdown-trigger .dropdown-text.selected {
    color: #fff;
}

.custom-dropdown-trigger .dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    color: #888;
}

.custom-dropdown-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #FF4134;
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #2a2a2a;
    border: 1px solid #444;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Custom scrollbar for dropdown */
.custom-dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown-menu::-webkit-scrollbar-track {
    background: #333;
    border-radius: 3px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb {
    background: #FF4134;
    border-radius: 3px;
}

.custom-dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #e63946;
}

.custom-dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-dropdown-item {
    padding: 12px 16px;
    color: #ccc;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-dropdown-item:last-child {
    border-bottom: none;
}

.custom-dropdown-item:hover {
    background: #333;
    color: #fff;
}

.custom-dropdown-item.selected {
    background: rgba(255, 65, 52, 0.1);
    color: #FF4134;
}

.custom-dropdown-item .item-label {
    flex: 1;
}

.custom-dropdown-item .item-count {
    font-size: 12px;
    color: #888;
    background: #444;
    padding: 2px 6px;
    border-radius: 10px;
}

.custom-dropdown-item.selected .item-count {
    background: rgba(255, 65, 52, 0.2);
    color: #FF4134;
}

/* Price Range Dropdown */
.price-range-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-range-item .price-label {
    flex: 1;
}

.price-range-item .price-range {
    font-size: 12px;
    color: #888;
}

/* Location Search Input */
.location-search-input {
    width: 100%;
    padding: 12px 16px;
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    transition: all 0.3s ease;
    min-height: 48px;
    box-sizing: border-box;
}

.location-search-input::placeholder {
    color: #888;
}

.location-search-input:focus {
    outline: none;
    border-color: #FF4134;
    background: #333;
}


/* Smart Filter Bar */
.smart-filter-bar {
    display: flex;
    gap: 16px;
    align-items: end;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.smart-filter-field {
    flex: 1;
    min-width: 200px;
}

.smart-filter-field label {
    display: block;
    color: #ccc;
    font-size: 12px;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.smart-filter-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.clear-filters-btn {
    background: transparent;
    border: 1px solid #555;
    color: #888;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

.clear-filters-btn:hover {
    border-color: #FF4134;
    color: #FF4134;
}

/* No Results State */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #ccc;
}

.no-results h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #fff;
}

.no-results p {
    font-size: 16px;
    opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .smart-filter-bar {
        flex-direction: column;
        gap: 12px;
    }

    .smart-filter-field {
        min-width: 100%;
    }

    .smart-filter-actions {
        width: 100%;
        justify-content: space-between;
    }
}

.listing-popup-content {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 0;
    scrollbar-width: thin;
    scrollbar-color: #FF4134 #333;
    gap: 20px;
    position: relative;
    max-height: calc(90vh - 120px);
}

.listing-popup-content::-webkit-scrollbar {
    width: 6px;
}

.listing-popup-content::-webkit-scrollbar-track {
    background: #333;
    border-radius: 3px;
}

.listing-popup-content::-webkit-scrollbar-thumb {
    background: #FF4134;
    border-radius: 3px;
}

.listing-popup-content::-webkit-scrollbar-thumb:hover {
    background: #e63946;
}

/* Image Slider in Popup */
.popup-image-slider {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
    clear: both;
}

.popup-main-image {
    width: 100%;
    height: 300px;
    background: #2a2a2a;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.popup-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-image-nav:hover {
    background: rgba(255, 65, 52, 0.8);
}

.popup-image-nav.prev {
    left: 15px;
}

.popup-image-nav.next {
    right: 15px;
}

.popup-image-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 5px 0;
}

.popup-thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.popup-thumbnail.active,
.popup-thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.popup-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Popup Content */
.popup-listing-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0px;
}

.popup-listing-location {
    color: #888;
    font-size: 16px;
    margin-bottom: 0px;
}

.popup-listing-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.popup-detail-item {
    text-align: center;
    padding: 10px;
    background: #2a2a2a;
    border-radius: 8px;
}

.popup-detail-icon {
    width: 20px;
    height: 20px;
    margin: 0 auto 8px;
    color: #FF4134;
}

.popup-detail-value {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.popup-detail-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-listing-description {
    margin-bottom: 20px;
    flex: 1;
    min-height: 100px;
    clear: both;
    position: relative;
    z-index: 1;
    overflow: visible;
    padding-bottom: 10px;
}

.popup-description-title {
    font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 20px !important;
    font-weight: normal !important;
    color: #fff !important;
    margin-bottom: 15px !important;
    letter-spacing: -0.01em !important;
}

.popup-description-content {
    position: relative;
    clear: both;
    margin-bottom: 20px;
    padding-bottom: 10px;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
    overflow: visible;
}

.popup-description-text {
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 10px;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    max-width: 100%;
    display: block;
}



.popup-listing-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    flex-shrink: 0;
    margin-top: 20px;
    clear: both;
    position: relative;
    z-index: 2;
    background: #1a1a1a;
    min-height: 60px;
    width: 100%;
}

.popup-listing-price {
    font-size: 32px;
    font-weight: 700;
    color: #FF4134;
}

.book-now-btn {
    background: #FF4134;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 16px !important;
    font-weight: normal !important;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: -0.01em !important;
}

.book-now-btn:hover {
    background: #e53935;
    transform: translateY(-2px);
}

/* Responsive Design for Listings */
@media (max-width: 768px) {
    .featured-realtor-section {
        margin-top: 20px;
        padding-top: 30px;
    }

    .featured-realtor-card {
        flex-direction: column;
        min-height: auto;
    }

    .realtor-left,
    .realtor-right {
        padding: 50px 30px;
    }

    .realtor-slider-container {
        height: 550px;
    }

    .realtor-right {
        padding: 15px;
    }

    .full-cover-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .realtor-title {
        font-size: 42px;
    }

    .listings-title {
        font-size: 38px;
        margin-top: -20px;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .listings-subtitle {
        font-size: 16px;
        margin-top: -10px;
        line-height: 1.4;
        max-width: 90%;
    }

    .listings-header {
        margin-bottom: 40px;
    }

    .search-filter-bar {
        flex-direction: column;
        gap: 15px;
    }

    .listings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }

    .listing-card {
        margin: 0 5px;
        max-width: calc(100% - 10px);
    }

    .listing-cta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .learn-more-btn {
        flex: 1;
        max-width: 120px;
        padding: 12px 16px;
        font-size: 14px;
    }

    .listing-price {
        flex: 1;
        text-align: right;
        font-size: 16px;
    }

    .popup-listing-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-bottom: 15px;
    }

    .popup-listing-description {
        margin-bottom: 20px;
        overflow: visible;
    }

    .popup-description-text {
        font-size: 14px;
        line-height: 1.5;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        max-width: 100%;
        display: block;
    }


    .popup-listing-footer {
        flex-direction: row;
        gap: 15px;
        text-align: left;
        align-items: center;
        justify-content: space-between;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid #333;
        background: #1a1a1a;
        position: relative;
        z-index: 2;
    }

    .popup-listing-price {
        font-size: 24px;
        flex: 1;
    }

    .book-now-btn {
        padding: 12px 20px;
        font-size: 14px;
        flex-shrink: 0;
        font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-weight: normal !important;
    }
}

@media (max-width: 480px) {

    .featured-realtor-section,
    .featured-listings-section {
        padding: 20px 0;
        margin-top: 20px;
    }

    .listings-grid {
        padding: 0 15px;
        gap: 15px;
    }

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

    .listing-cta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }

    .learn-more-btn {
        flex: 0 0 auto;
        padding: 12px 16px;
        font-size: 14px;
        min-width: 100px;
    }

    .listing-price {
        text-align: left;
        font-size: 16px;
        font-weight: 700;
        flex: 1;
    }

    .featured-realtor-section {
        padding-top: 20px;
    }

    .realtor-left,
    .realtor-right {
        padding: 40px 20px;
    }

    .realtor-slider-container {
        height: 500px;
    }

    .realtor-right {
        padding: 10px;
    }

    .full-cover-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .slider-dots {
        bottom: 15px;
    }

    .dot {
        width: 6px;
        height: 6px;
    }

    .realtor-title {
        font-size: 58px;
        letter-spacing: 1px;
    }

    .listings-title {
        font-size: 42px;
        margin-top: -15px;
        margin-bottom: 12px;
        letter-spacing: 1px;
    }

    .listings-subtitle {
        font-size: 18px;
        margin-top: -8px;
        line-height: 1.3;
        max-width: 95%;
    }

    .listings-header {
        margin-bottom: 30px;
    }

    .listing-popup-overlay {
        padding: 10px;
    }

    .listing-popup-container {
        margin: 0;
        max-height: 90vh;
        min-height: 70vh;
        width: 100%;
        border-radius: 15px;
        overflow: hidden;
    }

    .listing-popup-content {
        padding: 15px 12px;
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        flex-direction: column;
        min-height: 0;
        scrollbar-width: thin;
        scrollbar-color: #FF4134 #333;
        max-height: calc(90vh - 100px);
    }

    .popup-main-image {
        height: 250px;
    }

    .popup-image-slider {
        margin-bottom: 15px;
    }

    .popup-listing-details {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
        margin-bottom: 12px;
    }

    .popup-detail-item {
        padding: 6px;
        font-size: 12px;
    }

    .popup-detail-item .detail-label {
        font-size: 10px;
    }

    .popup-detail-item .detail-value {
        font-size: 14px;
        font-weight: 600;
    }

    .popup-listing-description {
        margin-bottom: 15px;
    }

    .popup-description-title {
        font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: 18px !important;
        font-weight: normal !important;
    }

    .popup-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .listing-popup-header {
        padding: 15px 50px 15px 15px;
        position: relative;
        z-index: 10;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
    }

    .popup-close {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 11;
        background: rgba(0, 0, 0, 0.7);
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .popup-listing-description {
        margin-bottom: 15px;
        max-height: 250px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .popup-description-text {
        font-size: 13px;
        line-height: 1.4;
        word-wrap: break-word;
        word-break: break-word;
        white-space: normal;
        max-width: 100%;
        display: block;
    }


    .popup-listing-footer {
        flex-direction: row;
        gap: 10px;
        text-align: left;
        align-items: center;
        justify-content: space-between;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #333;
        background: #1a1a1a;
        position: relative;
        z-index: 2;
    }

    .popup-listing-price {
        font-size: 20px;
        flex: 1;
    }

    .book-now-btn {
        padding: 10px 16px;
        font-size: 13px;
        flex-shrink: 0;
        font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-weight: normal !important;
    }
}

/* Image Lightbox */
.image-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 20000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.image-lightbox-container {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1200px;
    max-height: 800px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    flex-shrink: 0;
}

.lightbox-counter {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Satoshi', sans-serif;
}

.lightbox-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
    overflow: hidden;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 65, 52, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lightbox-image:hover {
    transform: scale(1.02);
}

.lightbox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #333;
    border-top: 3px solid #FF4134;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.lightbox-thumbnails {
    display: flex;
    gap: 10px;
    padding: 20px 30px;
    background: #1a1a1a;
    border-top: 1px solid #333;
    overflow-x: auto;
    flex-shrink: 0;
}

.lightbox-thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.lightbox-thumbnail:hover {
    border-color: #FF4134;
    transform: scale(1.05);
}

.lightbox-thumbnail.active {
    border-color: #FF4134;
    box-shadow: 0 0 10px rgba(255, 65, 52, 0.5);
}

/* Mobile Lightbox Styles */
@media (max-width: 768px) {
    .image-lightbox-container {
        width: 95%;
        height: 95%;
        border-radius: 15px;
    }

    .lightbox-header {
        padding: 15px 20px;
    }

    .lightbox-counter {
        font-size: 14px;
    }

    .lightbox-content {
        padding: 15px;
    }

    .lightbox-nav {
        padding: 12px;
        width: 40px;
        height: 40px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-thumbnails {
        padding: 15px 20px;
        gap: 8px;
    }

    .lightbox-thumbnail {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .image-lightbox-container {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .lightbox-header {
        padding: 12px 15px;
    }

    .lightbox-content {
        padding: 10px;
    }

    .lightbox-nav {
        padding: 10px;
        width: 35px;
        height: 35px;
    }

    .lightbox-prev {
        left: 5px;
    }

    .lightbox-next {
        right: 5px;
    }

    .lightbox-thumbnails {
        padding: 12px 15px;
        gap: 6px;
    }

    .lightbox-thumbnail {
        width: 50px;
        height: 38px;
    }

    .popup-description-title {
        font-family: 'Satoshi-Bold', 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
        font-size: 16px !important;
        font-weight: normal !important;
    }
}

/* Cookie Consent Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.849);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 152, 152, 0.212);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    visibility: hidden;
}

.cookie-popup.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-popup-header {
    flex-shrink: 0;
}

.cookie-popup-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    white-space: nowrap;
}

.cookie-popup-body {
    flex: 1;
}

.cookie-popup-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #ccc;
    margin: 0;
}

.cookie-popup-link {
    color: #FF4134;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.cookie-popup-link:hover {
    color: #e63946;
    text-decoration: underline;
}

.cookie-popup-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-popup-btn {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-popup-btn-secondary {
    background: transparent;
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-popup-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-popup-btn-primary {
    background: #FF4134;
    color: #fff;
    border: 1px solid #FF4134;
}

.cookie-popup-btn-primary:hover {
    background: #e63946;
    border-color: #e63946;
    transform: translateY(-1px);
}

/* Mobile Optimizations for Cookie Popup */
@media (max-width: 768px) {
    .cookie-popup-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
    }

    .cookie-popup-header {
        text-align: center;
    }

    .cookie-popup-title {
        font-size: 16px;
        white-space: normal;
    }

    .cookie-popup-text {
        font-size: 13px;
        text-align: center;
    }

    .cookie-popup-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-popup-btn {
        flex: 1;
        min-width: 120px;
        padding: 14px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cookie-popup-content {
        padding: 12px;
        gap: 12px;
    }

    .cookie-popup-title {
        font-size: 15px;
    }

    .cookie-popup-text {
        font-size: 12px;
        line-height: 1.4;
    }

    .cookie-popup-actions {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-popup-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* Main Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.pricing-intro h2 {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.pricing-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.pricing-card {
    background: rgba(12, 12, 12, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff6b5a);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card:hover {
    border-color: rgba(255, 65, 52, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 65, 52, 0.15);
}

.pricing-card.pro::before {
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.pricing-card.pro:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.pricing-card.essentials::before {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.pricing-card.essentials:hover {
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 20px 40px rgba(34, 197, 94, 0.15);
}

.pricing-card.executive {
    background: rgba(255, 65, 52, 0.05);
    border: 1px solid rgba(255, 65, 52, 0.2);
}

.pricing-card.executive::before {
    background: linear-gradient(90deg, var(--orange), #ff6b5a);
}

.pricing-card.executive:hover {
    border-color: rgba(255, 65, 52, 0.5);
    box-shadow: 0 20px 40px rgba(255, 65, 52, 0.2);
}

.pricing-plan-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #60a5fa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.plan-badge.essentials-badge {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.plan-badge.executive-badge {
    background: rgba(255, 65, 52, 0.1);
    border-color: rgba(255, 65, 52, 0.3);
    color: var(--orange);
}

.plan-name {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.plan-price .price {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 3rem;
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

.plan-price .price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.plan-price .original-price {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 2.5rem;
    /* Increased from 1.8rem to match Executive plan */
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.appointments-highlight.essentials-highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(52, 211, 153, 0.15));
    border-color: rgba(34, 197, 94, 0.4);
}

.appointments-highlight.essentials-highlight .appointments-number {
    color: #4ade80;
}

.appointments-highlight.pro-highlight {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(96, 165, 250, 0.15));
    border-color: rgba(59, 130, 246, 0.4);
}

.appointments-highlight.pro-highlight .appointments-number {
    color: #60a5fa;
}

.appointments-highlight.executive-highlight {
    background: linear-gradient(135deg, rgba(255, 65, 52, 0.15), rgba(255, 107, 90, 0.15));
    border-color: rgba(255, 65, 52, 0.4);
}

.appointments-highlight.executive-highlight .appointments-number {
    color: var(--orange);
}

.pricing-card.executive .commission-highlight {
    background: linear-gradient(135deg, rgba(255, 65, 52, 0.15), rgba(255, 107, 90, 0.15));
    border-color: rgba(255, 65, 52, 0.4);
    color: var(--orange);
}

.plan-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 1rem;
}

.pricing-plan-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.pricing-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-pricing {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

.pricing-card.essentials .feature-icon-pricing {
    color: #4ade80;
}

.pricing-card.pro .feature-icon-pricing {
    color: #60a5fa;
}

.pricing-card.executive .feature-icon-pricing {
    color: var(--orange);
}

/* Pricing CTA */
.pricing-plan-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}

.pricing-cta-button {
    width: 100%;
    background-color: var(--orange);
    color: var(--white);
    font-family: 'Satoshi', sans-serif;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.pricing-cta-button:hover {
    background-color: #e63939;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 65, 52, 0.3);
}

.pricing-cta-button .button-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.pricing-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.pricing-cta-button.essentials-cta {
    background: linear-gradient(135deg, #22c55e, #4ade80);
}

.pricing-cta-button.essentials-cta:hover {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.pricing-cta-button.pro-cta {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.pricing-cta-button.pro-cta:hover {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.pricing-cta-button.executive-cta {
    background: linear-gradient(135deg, var(--orange), #ff6b5a);
}

.pricing-cta-button.executive-cta:hover {
    background: linear-gradient(135deg, #e63939, var(--orange));
    box-shadow: 0 8px 20px rgba(255, 65, 52, 0.3);
}

/* Responsive for Pricing */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .plan-name {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 0;
    }

    .pricing-intro {
        margin-bottom: 3rem;
    }

    .pricing-card {
        padding: 1.75rem;
    }

    .plan-name {
        font-size: 2rem;
    }

    .plan-price .price {
        font-size: 2.25rem;
    }

    .pricing-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .plan-name {
        font-size: 1.75rem;
    }

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

    .pricing-cta-button {
        padding: 13px 24px;
        font-size: 0.95rem;
    }
}

/* Rental Plans Section */
.rental-plans-section {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
}

.rental-plans-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.rental-plans-intro h2 {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.rental-plans-intro p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.rental-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.rental-plan-card {
    background: rgba(12, 12, 12, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rental-plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ff6b5a);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.rental-plan-card:hover::before {
    opacity: 1;
}

.rental-plan-card:hover {
    border-color: rgba(255, 65, 52, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 65, 52, 0.15);
}

.rental-plan-card.elite::before {
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
}

.rental-plan-card.elite {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-color: rgba(139, 92, 246, 0.3);
}

.rental-plan-card.elite:hover {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
}

.rental-plan-header {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rental-plan-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 65, 52, 0.1);
    border: 1px solid rgba(255, 65, 52, 0.3);
    border-radius: 50px;
    color: var(--orange);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.rental-plan-badge.elite-badge {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.rental-plan-name {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.rental-plan-price {
    margin-bottom: 1.5rem;
}

.rental-plan-price .price-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rental-plan-price .original-price {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.rental-plan-price .price {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: 3rem;
    color: var(--white);
    display: block;
    margin-bottom: 0.25rem;
}

/* Appointments Highlight */
.appointments-highlight {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 65, 52, 0.15), rgba(255, 107, 90, 0.15));
    border: 2px solid rgba(255, 65, 52, 0.4);
    border-radius: 12px;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
}

.appointments-highlight .appointments-number {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--orange);
    margin-right: 0.25rem;
}

.appointments-highlight.elite-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.15));
    border-color: rgba(139, 92, 246, 0.4);
}

.appointments-highlight.elite-highlight .appointments-number {
    color: #c084fc;
}

.commission-highlight {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(236, 72, 153, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 10px;
    color: #c084fc;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.rental-plan-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-top: 1rem;
}

.rental-plan-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.rental-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon-rental {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 0.25rem;
}

.rental-plan-card.elite .feature-icon-rental {
    color: #8b5cf6;
}

.feature-content h4 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.feature-content strong {
    color: var(--white);
    font-weight: 700;
}

/* Rental Plan CTA */
.rental-plan-cta {
    margin-top: auto;
    padding-top: 1.5rem;
}

.rental-cta-button {
    width: 100%;
    background-color: var(--orange);
    color: var(--white);
    font-family: 'Satoshi', sans-serif;
    border: none;
    padding: 16px 32px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.rental-cta-button:hover {
    background-color: #e63939;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 65, 52, 0.3);
}

.rental-cta-button .button-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.rental-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.rental-cta-button.elite-cta {
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    border: none;
}

.rental-cta-button.elite-cta:hover {
    background: linear-gradient(135deg, #7c3aed, #db2777);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .rental-plans-grid {
        gap: 2rem;
    }

    .rental-plan-card {
        padding: 2rem;
    }

    .rental-plan-name {
        font-size: 2.25rem;
    }

    .rental-plan-price .price {
        font-size: 2.5rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .rental-plans-section {
        padding: 4rem 0;
    }

    .rental-plans-intro {
        margin-bottom: 3rem;
    }

    .rental-plans-intro h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .rental-plans-intro p {
        font-size: 1rem;
    }

    .rental-plans-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rental-plan-card {
        padding: 1.75rem;
    }

    .rental-plan-name {
        font-size: 2rem;
    }

    .rental-plan-price .price {
        font-size: 2.25rem;
    }

    .appointments-highlight {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    .appointments-highlight .appointments-number {
        font-size: 1.35rem;
    }

    .commission-highlight {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }

    .feature-content h4 {
        font-size: 1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }

    .rental-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }

}

@media (max-width: 480px) {
    .rental-plans-section {
        padding: 3rem 0;
    }

    .rental-plan-card {
        padding: 1.5rem;
    }

    .rental-plan-header {
        padding-bottom: 1.5rem;
    }

    .rental-plan-badge {
        padding: 0.4rem 0.875rem;
        font-size: 0.85rem;
    }

    .rental-plan-name {
        font-size: 1.75rem;
    }

    .rental-plan-price .price {
        font-size: 2rem;
    }

    .rental-plan-tagline {
        font-size: 0.9rem;
    }

    .appointments-highlight {
        padding: 0.6rem 1.1rem;
        font-size: 0.9rem;
    }

    .appointments-highlight .appointments-number {
        font-size: 1.25rem;
    }

    .rental-plan-features {
        gap: 1.25rem;
    }

    .rental-feature-item {
        gap: 0.875rem;
    }

    .feature-icon-rental {
        width: 20px;
        height: 20px;
        font-size: 1rem;
    }

    .feature-content h4 {
        font-size: 0.95rem;
    }

    .feature-content p {
        font-size: 0.875rem;
    }

    .rental-cta-button {
        padding: 13px 24px;
        font-size: 0.95rem;
    }

}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--black);
    position: relative;
}

.faq-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.faq-header h2 {
    font-family: 'Thunderbold LC', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--white);
    text-transform: uppercase;
}

.faq-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-card {
    background: rgba(12, 12, 12, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-card:hover {
    border-color: rgba(255, 65, 52, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 65, 52, 0.1);
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 65, 52, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-family: 'Satoshi', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 65, 52, 0.3);
}

.faq-card h3 {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-card {
        padding: 2rem;
    }

    .faq-header {
        margin-bottom: 3rem;
    }
}

/* Pricing Page Hero Styles (Matching Why Us) */
.pricing-page .process-hero-background {
    background: #0c0c0c !important;
}

.pricing-page .process-hero-overlay {
    background: rgba(12, 12, 12, 0.8) !important;
}

.pricing-page .process-hero-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    text-align: center;
    max-width: 1170px;
    margin: 0 auto;
    margin-top: -10px;

}

.pricing-page .process-hero-title {
    color: #ffffff !important;
    margin-bottom: 1.5rem;
}

.pricing-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .pricing-page .process-hero-card {
        padding: 2rem;
    }

    .pricing-hero-description {
        font-size: 1rem;
    }
}

.pricing-page .process-hero-subtitle {
    margin-top: 3rem;
}

.pricing-section {
    padding-top: 3rem !important;
    margin-top: -50px;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .pricing-page .process-hero-card {
        margin-top: 30px;
        max-width: 500px;
        /* Reset hero margin */
    }

    .pricing-section {
        margin-top: 0;
        /* Reset section margin */
        padding-top: 2rem !important;
    }

    .plan-name {
        font-size: 2.5rem;
        /* Increased from 2rem */
    }

    .plan-price .price {
        font-size: 3rem;
        /* Increased from 2.25rem */
    }

    .rental-plans-intro h2 {
        font-size: 2.5rem;
        /* Increased to match main heading style */
        margin-bottom: 1rem;
    }

    .rental-plan-name {
        font-size: 2.5rem;
        /* Match main plan name size */
    }

    .rental-plan-price .price {
        font-size: 3rem;
        /* Match main plan price size */
    }
}

@media (max-width: 480px) {

    .plan-name,
    .rental-plan-name {
        font-size: 2.75rem;
    }

    .plan-price .price,
    .rental-plan-price .price {
        font-size: 2.75rem;
    }

    .rental-plans-intro h2 {
        font-size: 40px;
    }
}

/* ===================================
   Benchmarking Data Section - Simple Modern
   =================================== */

.benchmarking-section {
    padding: 80px 0 40px 0;
    /* Reduced bottom padding from 80px to 40px */
    background: var(--black);
}

.benchmarking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benchmarking-header {
    text-align: center;
    margin-bottom: 50px;
}

.benchmarking-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.benchmarking-title {
    font-family: 'Satoshi-Bold', 'Satoshi', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.2;
}

.benchmarking-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Data Cards */
.data-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    transition: border-color 0.3s ease;
}

.data-card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.data-card-title {
    font-family: 'Satoshi-Bold', 'Satoshi', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
}

/* Table Wrapper */
.table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-wrapper::-webkit-scrollbar {
    height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

.table-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Data Table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.95rem;
    min-width: 700px;
}

.data-table thead {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    transition: background-color 0.2s ease;
}

.data-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.data-table td {
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.5;
}

.data-table td strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* Highlight Stats */
.highlight-stat {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Price Indicators */
.price-high {
    color: #ef4444;
    font-weight: 600;
}

.price-medium {
    color: #f59e0b;
    font-weight: 600;
}

.price-low {
    color: #22c55e;
    font-weight: 600;
}

/* Chart Styles - Ultra Modern */
.chart-container {
    padding: 16px 0;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.chart-bar-wrapper {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.chart-bar-wrapper:hover {
    transform: translateX(4px);
}

.chart-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.chart-bar-wrapper:hover .chart-label {
    color: var(--white);
    font-weight: 700;
}

.chart-bar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    height: 36px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chart-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 12px;
    border-radius: 10px;
    position: relative;
    width: 0;
    /* Start at 0, JavaScript will set this */
    transform-origin: left center;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Enhanced gradient colors for bars */
.chart-bar[data-color="red"] {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #991b1b 100%);
    box-shadow:
        0 4px 12px rgba(239, 68, 68, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.chart-bar[data-color="red"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: 10px 10px 0 0;
}

.chart-bar[data-color="blue"] {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
    box-shadow:
        0 3px 10px rgba(59, 130, 246, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.chart-bar[data-color="blue"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
    border-radius: 10px 10px 0 0;
}

.chart-bar[data-color="darkblue"] {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 50%, #1e3a8a 100%);
    box-shadow:
        0 2px 8px rgba(30, 64, 175, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.chart-bar[data-color="darkblue"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 10px 10px 0 0;
}

.chart-bar:hover {
    transform: scaleY(1.08);
    filter: brightness(1.15) saturate(1.1);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.chart-bar[data-color="red"]:hover {
    box-shadow:
        0 6px 24px rgba(239, 68, 68, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        0 0 30px rgba(239, 68, 68, 0.3);
}

.chart-bar[data-color="blue"]:hover {
    box-shadow:
        0 6px 20px rgba(59, 130, 246, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        0 0 25px rgba(59, 130, 246, 0.25);
}

.chart-bar[data-color="darkblue"]:hover {
    box-shadow:
        0 6px 20px rgba(30, 64, 175, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.2),
        0 0 25px rgba(30, 64, 175, 0.25);
}

.chart-value {
    font-weight: 700;
    color: var(--white);
    font-size: 0.85rem;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 0 8px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

.chart-footer {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.chart-note {
    font-size: 0.85rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .benchmarking-section {
        padding: 60px 0 30px 0;
    }

    .benchmarking-container {
        padding: 0 16px;
    }

    .data-card {
        padding: 28px;
    }

    .chart-bar-wrapper {
        grid-template-columns: 110px 1fr;
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .benchmarking-section {
        padding: 50px 0 25px 0;
    }

    .benchmarking-container {
        padding: 0 16px;
    }

    .benchmarking-header {
        margin-bottom: 35px;
    }

    .benchmarking-badge {
        font-size: 0.7rem;
        padding: 7px 18px;
    }

    .benchmarking-title {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .benchmarking-subtitle {
        font-size: 1rem;
    }

    .data-card {
        padding: 20px;
        margin-bottom: 24px;
        border-radius: 10px;
    }

    .data-card-title {
        font-size: 1.35rem;
        margin-bottom: 20px;
    }

    /* Table responsive improvements */
    .table-wrapper {
        margin: 0 -20px;
        /* Extend to edges on mobile */
        padding: 0 20px;
    }

    .data-table {
        font-size: 0.8rem;
        min-width: 650px;
    }

    .data-table th,
    .data-table td {
        padding: 11px 10px;
    }

    .data-table th {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }

    /* Chart improvements for tablet */
    .chart-bar-wrapper {
        grid-template-columns: 95px 1fr;
        gap: 12px;
    }

    .chart-label {
        font-size: 0.85rem;
    }

    .chart-bar-track {
        height: 30px;
    }

    .chart-value {
        font-size: 0.8rem;
    }

    .chart-note {
        font-size: 0.85rem;
        padding: 0 10px;
    }

    /* Better scrollbar for mobile */
    .table-wrapper::-webkit-scrollbar {
        height: 5px;
    }
}

@media (max-width: 480px) {
    .benchmarking-section {
        padding: 40px 0 20px 0;
    }

    .benchmarking-container {
        padding: 0 16px;
    }

    .benchmarking-header {
        margin-bottom: 30px;
    }

    .benchmarking-badge {
        font-size: 0.65rem;
        padding: 6px 14px;
        letter-spacing: 0.8px;
    }

    .benchmarking-title {
        font-size: 1.65rem;
        line-height: 1.15;
    }

    .benchmarking-subtitle {
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .data-card {
        padding: 18px;
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .data-card-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    /* Table optimizations for small mobile */
    .table-wrapper {
        margin: 0 -18px;
        padding: 0 18px;
    }

    .data-table {
        font-size: 0.75rem;
        min-width: 600px;
    }

    .data-table th {
        padding: 10px 8px;
        font-size: 0.7rem;
        letter-spacing: 0.2px;
    }

    .data-table td {
        padding: 10px 8px;
    }

    .highlight-stat {
        padding: 3px 8px;
        font-size: 0.75rem;
        border-radius: 3px;
    }

    /* Chart optimizations for small mobile */
    .chart-container {
        padding: 12px 0;
    }

    .chart-bars {
        gap: 12px;
    }

    .chart-bar-wrapper {
        grid-template-columns: 80px 1fr;
        gap: 10px;
    }

    .chart-label {
        font-size: 0.75rem;
        font-weight: 500;
    }

    .chart-bar-track {
        height: 26px;
        border-radius: 5px;
    }

    .chart-bar {
        padding-right: 8px;
        border-radius: 5px;
    }

    .chart-value {
        font-size: 0.7rem;
    }

    .chart-footer {
        margin-top: 18px;
        padding-top: 14px;
    }

    .chart-note {
        font-size: 0.75rem;
        line-height: 1.4;
        padding: 0 5px;
    }

    /* Better scrollbar visibility on mobile */
    .table-wrapper::-webkit-scrollbar {
        height: 4px;
    }

    .table-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }

    .table-wrapper::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 2px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .benchmarking-section {
        padding: 35px 0 18px 0;
    }

    .benchmarking-title {
        font-size: 1.5rem;
    }

    .benchmarking-subtitle {
        font-size: 0.85rem;
    }

    .data-card {
        padding: 16px;
    }

    .data-card-title {
        font-size: 1.1rem;
    }

    .data-table {
        font-size: 0.7rem;
        min-width: 550px;
    }

    .data-table th,
    .data-table td {
        padding: 9px 6px;
    }

    .chart-bar-wrapper {
        grid-template-columns: 70px 1fr;
        gap: 8px;
    }

    .chart-label {
        font-size: 0.7rem;
    }

    .chart-bar-track {
        height: 24px;
    }

    .chart-value {
        font-size: 0.65rem;
    }
}

/* Landscape orientation improvements */
@media (max-width: 768px) and (orientation: landscape) {
    .benchmarking-section {
        padding: 40px 0;
    }

    .data-table {
        min-width: 700px;
        font-size: 0.85rem;
    }

    .chart-bar-track {
        height: 28px;
    }
}