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

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

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

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

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

/* Loading States */
body.loading {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.loaded {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Critical fix to prevent black screen */
body {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure all content is visible */
.hero, .features, .footer, .container, section {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Fallback for when components fail to load */
#header-container:empty::before {
    content: '';
    display: block;
    height: 80px;
    background: var(--black);
}

#footer-container:empty::before {
    content: '';
    display: block;
    height: 200px;
    background: var(--orange);
}

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

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

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

@font-face {
    font-family: 'Satoshi';
    src: url('../fonts/Satoshi-Bold.otf') format('opentype');
    font-weight: bold;
    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-Light.otf') format('opentype');
    font-weight: 300;
    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;
}

/* 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', 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;
}

.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 */
.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;
}

.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;
}

.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.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;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 1rem;
    opacity: 0.9;
    font-weight: 400;
}

.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;
    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;
}

.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-size: 1.7rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--white);
}

.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-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.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: '✓';
    color: var(--orange);
    font-weight: bold;
    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: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.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: 0.9rem;
    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: 0.9rem;
    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-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.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-size: 1.6rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .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;
    }
    
    .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-size: 1.5rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .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-size: 1.8rem;
    }
    
    .footer-title {
        font-size: 1.5rem;
    }
    
    .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-size: clamp(2rem, 4vw, 2.5rem);
    }
    
    .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-size: clamp(2rem, 6vw, 4rem);
    }
    
    .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-email a {
        font-size: 0.9rem;
    }
    
    .contact-address {
        font-size: 0.8rem;
    }
    
    .nav-column a {
        font-size: 0.8rem;
    }
    
    .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: 4rem 0;
}

.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: 2rem 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: 3rem;
        padding: 1.5rem 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: 1rem 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;
    }
}