/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #03449d;
    --accent-color: #0fc7dc;
    --text-dark: #1a1a1a;
    --text-gray: #666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #03449d 0%, #0fc7dc 100%);
    --gradient-soft: linear-gradient(135deg, rgba(3, 68, 157, 0.05) 0%, rgba(15, 199, 220, 0.05) 100%);
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1rem 2rem;
    border-radius: 60px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav .container {
    padding: 0;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-image {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    justify-content: center;
    margin-left: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #6366F1;
}

.pages-dropdown {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
}

.btn-schedule {
    background: #3B82F6;
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.btn-schedule:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
}

.btn-schedule svg {
    width: 18px;
    height: 18px;
}

/* Buttons */
.btn-primary {
    background: #3B82F6;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Gradient Section Wrapper */
.gradient-section-wrapper {
    position: relative;
    width: 100%;
    z-index: 0;
}

/* Shared Gradient Background */
.shared-gradient-bg {
    position: absolute;
    inset: 0;
    background: #f0f4f8;
    z-index: -1;
    overflow: visible;
    pointer-events: none;
}

/* Booking Page Styles */
.booking-page {
    position: relative;
    min-height: 100vh;
}

.booking-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f0f4f8;
    z-index: -1;
    overflow: visible;
    pointer-events: none;
}

/* Contact Page Styles */
.contact-page {
    position: relative;
    min-height: 100vh;
}

.contact-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f0f4f8;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 140px;
    background: transparent;
    z-index: 1;
}

/* Gradient Mesh Blobs */
.gradient-blob {
    position: absolute;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(80px);
    opacity: 0.25;
    will-change: transform, border-radius;
}

.blob-1 {
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    top: -200px;
    right: -150px;
    animation: morph1 10s ease-in-out infinite, float1 8s ease-in-out infinite;
}

.blob-2 {
    width: 900px;
    height: 900px;
    background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    top: calc(100vh - 650px);
    left: -200px;
    animation: morph2 9s ease-in-out infinite, float2 10s ease-in-out infinite;
}

.blob-3 {
    width: 650px;
    height: 650px;
    background: linear-gradient(135deg, #06B6D4 0%, #8B5CF6 100%);
    top: 35vh;
    left: 50%;
    transform: translateX(-50%);
    animation: morph3 8s ease-in-out infinite, float3 9s ease-in-out infinite;
}

.blob-4 {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #8B5CF6 0%, #06B6D4 50%, #3B82F6 100%);
    top: 10vh;
    right: 15%;
    animation: morph4 10s ease-in-out infinite, float4 8.5s ease-in-out infinite;
}

/* Morphing Animations */
@keyframes morph1 {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 50% 40% / 50% 60% 30% 60%;
    }
    75% {
        border-radius: 50% 30% 60% 40% / 40% 60% 50% 30%;
    }
}

@keyframes morph2 {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 70% 30% 40% 60% / 40% 70% 60% 30%;
    }
    75% {
        border-radius: 40% 70% 60% 30% / 60% 40% 50% 70%;
    }
}

@keyframes morph3 {
    0%, 100% {
        border-radius: 50% 50% 60% 40% / 60% 40% 50% 50%;
    }
    33% {
        border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
    }
    66% {
        border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
    }
}

@keyframes morph4 {
    0%, 100% {
        border-radius: 35% 65% 55% 45% / 45% 55% 35% 65%;
    }
    25% {
        border-radius: 65% 35% 45% 55% / 55% 45% 65% 35%;
    }
    50% {
        border-radius: 45% 55% 35% 65% / 35% 65% 45% 55%;
    }
    75% {
        border-radius: 55% 45% 65% 35% / 65% 35% 55% 45%;
    }
}

/* Floating Animations */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(40px, -30px);
    }
    66% {
        transform: translate(-25px, 35px);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(-45px, 40px);
    }
    66% {
        transform: translate(30px, -20px);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    33% {
        transform: translateX(-50%) translateY(-40px) translateX(calc(-50% + 30px));
    }
    66% {
        transform: translateX(-50%) translateY(25px) translateX(calc(-50% - 20px));
    }
}

@keyframes float4 {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(-35px, -45px);
    }
    66% {
        transform: translate(20px, 30px);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: #2d3748;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.fade-in-delay-1 {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.fade-in-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1F2937;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.15rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: #2d3748;
    line-height: 1.6;
    font-weight: 400;
}

/* Problem Section */
.problem-section {
    background: transparent;
    position: relative;
    z-index: 1;
    padding: 5rem 0 6rem;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 4rem;
    align-items: start;
    min-width: 0;
}

.problem-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    min-width: 0;
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
}

.problem-card.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.problem-card[data-card="1"].fade-in-visible {
    transition-delay: 0s;
}

.problem-card[data-card="2"].fade-in-visible {
    transition-delay: 0.15s;
}

.problem-card[data-card="3"].fade-in-visible {
    transition-delay: 0.3s;
}

.problem-card[data-card="4"].fade-in-visible {
    transition-delay: 0.45s;
}

.card-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-gradient-bg {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    z-index: 0;
}

.card-icon {
    width: 52px;
    height: 52px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.problem-card:hover .card-icon {
    transform: scale(1.1);
}

.card-headline {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-description {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.5;
    margin: 0;
}

/* Connecting Lines */
.connecting-line {
    position: relative;
    width: 100%;
    height: 2px;
    align-self: center;
    margin: 0 -0.5rem;
}

.connecting-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-top: 2px dashed rgba(139, 92, 246, 0.3);
    transition: width 1s ease;
}

.connecting-line.draw-line::before {
    width: 100%;
}

/* Solution Section */
.solution-section {
    background: #f0f4f8;
    color: #2d3748;
    position: relative;
    z-index: 1;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-content {
    text-align: left;
}

.solution-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solution-text {
    font-size: 1.15rem;
    text-align: left;
    max-width: 100%;
    margin: 0;
    line-height: 1.8;
    color: #2d3748;
}

.solution-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.solution-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Placeholder styling if no image yet */
.solution-graphic:has(img[src*="path/to/your/graphic"])::after {
    content: 'Graphic Placeholder\A(Add your image here)';
    white-space: pre-wrap;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    border: 2px dashed rgba(139, 92, 246, 0.3);
    font-size: 1.5rem;
    color: #6B7280;
    backdrop-filter: blur(10px);
    position: absolute;
}

.solution-graphic img[src*="path/to/your/graphic"] {
    opacity: 0;
}

/* Features Section */
.features-section {
    background: #f0f4f8;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Subtle gradient blobs for features background */
.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.features-section::before {
    width: 700px;
    height: 700px;
    background: linear-gradient(135deg, #3B82F6 0%, #06B6D4 100%);
    top: 10%;
    left: -150px;
    animation: featureFloat1 12s ease-in-out infinite;
}

.features-section::after {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
    bottom: 15%;
    right: -100px;
    animation: featureFloat2 14s ease-in-out infinite;
}

@keyframes featureFloat1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -40px); }
}

@keyframes featureFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 2.5rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1.5px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card[data-feature="1"].fade-in-visible {
    transition-delay: 0s;
}

.feature-card[data-feature="2"].fade-in-visible {
    transition-delay: 0.15s;
}

.feature-card[data-feature="3"].fade-in-visible {
    transition-delay: 0.3s;
}

.feature-card[data-feature="4"].fade-in-visible {
    transition-delay: 0.45s;
}

.feature-card[data-feature="5"].fade-in-visible {
    transition-delay: 0.6s;
}

.feature-card[data-feature="6"].fade-in-visible {
    transition-delay: 0.75s;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    border: 1.5px solid rgba(139, 92, 246, 0.35);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.feature-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
    z-index: 0;
}

.feature-icon {
    width: 68px;
    height: 68px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
}

.feature-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1F2937;
    line-height: 1.3;
}

.feature-card p {
    color: #4B5563;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* How It Works Section */
.how-it-works-section {
    background: #f0f4f8;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    padding: 2.5rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.step-duration {
    text-align: center;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.7;
    text-align: center;
}

/* Testimonials Section */
.testimonials-section {
    background: #f0f4f8;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial-card {
    padding: 2.5rem;
}

.testimonial-quote {
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.result-card {
    text-align: center;
    padding: 2rem;
}

.result-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    background: #f0f4f8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    padding: 2.5rem;
    text-align: center;
    position: relative;
}

.pricing-popular {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.price {
    margin-bottom: 2rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-guarantee {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-gray);
    font-style: italic;
}

/* Industries Section */
.industries-section {
    background: #f0f4f8;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.industry-tag {
    background: var(--gradient-soft);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    color: var(--primary-color);
    border: 1px solid rgba(3, 68, 157, 0.2);
    transition: all 0.3s ease;
}

.industry-tag:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
    background: #f0f4f8;
}

.cta-content {
    text-align: center;
    padding: 4rem 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-subtext {
    font-size: 0.95rem !important;
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

/* FAQ Section */
.faq-section {
    background: #f0f4f8;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    padding: 2rem;
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: #f0f4f8;
    color: var(--text-dark);
    padding: 3rem 0;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

/* Contact Page Styles */
.contact-hero {
    padding: 10rem 0 4rem;
    text-align: center;
}

.contact-hero-text {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 1rem auto 0;
}

.contact-section {
    padding: 4rem 0 6rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper {
    padding: 3rem;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 0;
    color: var(--text-dark);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ghl-form-container {
    width: 100%;
    height: 658px;
    min-height: 658px;
}

.ghl-form-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.5);
    background: white;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    padding: 2rem;
    text-align: center;
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-soft);
    border-radius: 16px;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-info-card a {
    color: #6366F1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #8B5CF6;
}

/* Booking Page Styles */
.booking-hero {
    padding: 10rem 0 4rem;
    text-align: center;
}

.booking-hero-text {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 1rem auto 0;
}

.booking-section {
    padding: 4rem 0 6rem;
}

.booking-layout {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.booking-calendar-wrapper {
    padding: 3rem;
    width: 100%;
}

.booking-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.booking-info-card {
    padding: 2rem;
}

.booking-info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.booking-info-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.booking-info-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.booking-info-list li span {
    color: var(--text-dark);
    line-height: 1.6;
}

.booking-info-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.booking-contact-link {
    display: inline-block;
    color: #3B82F6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.booking-contact-link:hover {
    color: #06B6D4;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    /* Contain gradient background overflow on tablet */
    .shared-gradient-bg,
    .contact-gradient-bg,
    .booking-gradient-bg {
        overflow: hidden;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Reduce navbar height on mobile */
    .nav {
        padding: 0.75rem 1.5rem;
        top: 1rem;
        left: 0;
        right: 0;
        transform: none;
        width: auto;
        margin: 0 1.5rem;
    }

    .logo-image {
        height: 40px;
    }

    /* Hide desktop menu items */
    .nav-links {
        display: none;
    }

    .btn-schedule {
        display: none;
    }

    /* Show hamburger menu button */
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        width: 40px;
        height: 40px;
        z-index: 1003;
        position: relative;
    }

    .hamburger {
        width: 24px;
        height: 2.5px;
        background: var(--text-dark);
        border-radius: 3px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
    }

    /* Mobile menu dropdown - Side panel */
    .mobile-menu {
        position: fixed !important;
        top: 0;
        right: -300px;
        left: auto;
        width: 280px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
        padding: 5rem 1rem 2rem;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1002;
        overflow-y: auto;
        border-radius: 0;
        display: block;
        margin: 0;
        transform: none;
    }

    .mobile-menu.active {
        right: 0 !important;
    }

    /* Mobile menu close button */
    .mobile-menu-close {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-dark);
        transition: all 0.3s ease;
        border-radius: 8px;
        z-index: 1003;
    }

    .mobile-menu-close:hover {
        background: rgba(0, 0, 0, 0.05);
        transform: rotate(90deg);
    }

    .mobile-menu-close:active {
        background: rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-close svg {
        width: 24px;
        height: 24px;
    }

    /* Mobile menu backdrop */
    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }

    .mobile-menu-backdrop.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }

    .mobile-menu .nav-links a {
        font-size: 1.1rem;
        padding: 0.5rem 1rem;
        text-align: center;
        position: static;
    }

    .mobile-menu .btn-schedule {
        display: block;
        text-align: center;
        width: 100%;
    }

    .features-grid,
    .steps-container,
    .pricing-grid,
    .problem-grid,
    .solution-grid {
        grid-template-columns: 1fr;
    }

    .connecting-line {
        display: none;
    }

    .solution-content {
        text-align: center;
    }

    .solution-text {
        text-align: center;
    }

    .solution-title {
        font-size: 2rem;
    }

    .pricing-popular {
        transform: scale(1);
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .cta-content {
        padding: 2rem 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-hero {
        padding: 8rem 0 3rem;
    }

    .booking-info-cards {
        grid-template-columns: 1fr;
    }

    .booking-calendar-wrapper {
        padding: 2rem;
    }

    .booking-hero {
        padding: 8rem 0 3rem;
    }

    /* Mobile-specific vertical-only float animations */
    @keyframes floatMobile1 {
        0%, 100% {
            transform: translate(0, 0);
        }
        50% {
            transform: translate(0, 15px);
        }
    }

    @keyframes floatMobile2 {
        0%, 100% {
            transform: translate(0, 0);
        }
        50% {
            transform: translate(0, -15px);
        }
    }

    @keyframes floatMobile3 {
        0%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        50% {
            transform: translateX(-50%) translateY(20px);
        }
    }

    @keyframes floatMobile4 {
        0%, 100% {
            transform: translate(0, 0);
        }
        50% {
            transform: translate(0, -20px);
        }
    }

    /* Scale down gradient blobs for tablet */
    .blob-1 {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -50px;
        animation: morph1 10s ease-in-out infinite, floatMobile1 8s ease-in-out infinite;
    }

    .blob-2 {
        width: 450px;
        height: 450px;
        top: 50vh;
        left: -120px;
        animation: morph2 9s ease-in-out infinite, floatMobile2 10s ease-in-out infinite;
    }

    .blob-3 {
        width: 350px;
        height: 350px;
        animation: morph3 8s ease-in-out infinite, floatMobile3 9s ease-in-out infinite;
    }

    .blob-4 {
        width: 400px;
        height: 400px;
        top: 20vh;
        right: -30px;
        animation: morph4 10s ease-in-out infinite, floatMobile4 8.5s ease-in-out infinite;
    }

    /* Scale down gradient blobs for contact page on tablet */
    .contact-gradient-bg .blob-1,
    .booking-gradient-bg .blob-1 {
        width: 400px;
        height: 400px;
        top: -100px;
        right: -50px;
        animation: morph1 10s ease-in-out infinite, floatMobile1 8s ease-in-out infinite;
    }

    .contact-gradient-bg .blob-2,
    .booking-gradient-bg .blob-2 {
        width: 450px;
        height: 450px;
        top: 50vh;
        left: -120px;
        animation: morph2 9s ease-in-out infinite, floatMobile2 10s ease-in-out infinite;
    }

    .contact-gradient-bg .blob-3,
    .booking-gradient-bg .blob-3 {
        width: 350px;
        height: 350px;
        animation: morph3 8s ease-in-out infinite, floatMobile3 9s ease-in-out infinite;
    }

    .contact-gradient-bg .blob-4,
    .booking-gradient-bg .blob-4 {
        width: 400px;
        height: 400px;
        top: 20vh;
        right: -30px;
        animation: morph4 10s ease-in-out infinite, floatMobile4 8.5s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 80px;
    }

    /* Level 1 - Page Hero */
    .hero-title {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Level 2 - Major Section Headers */
    .section-title {
        font-size: 1.65rem;
    }

    .solution-title {
        font-size: 1.65rem;
    }

    /* Level 3 - CTA Primary */
    .cta-content h2 {
        font-size: 1.5rem;
    }

    /* Level 4 - Sub-sections */
    .cta-content h3 {
        font-size: 1.25rem;
    }

    .step-card h3 {
        font-size: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }

    /* Level 5 - Card/Item Headers */
    .faq-item h4 {
        font-size: 1.1rem;
    }

    .problem-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }

    /* Contain gradient background overflow on mobile */
    .shared-gradient-bg,
    .contact-gradient-bg,
    .booking-gradient-bg {
        overflow: hidden;
    }

    /* Scale down gradient blobs further for small mobile */
    .blob-1 {
        width: 300px;
        height: 300px;
        top: -80px;
        right: -60px;
        animation: morph1 10s ease-in-out infinite, floatMobile1 8s ease-in-out infinite;
    }

    .blob-2 {
        width: 350px;
        height: 350px;
        top: 50vh;
        left: -100px;
        animation: morph2 9s ease-in-out infinite, floatMobile2 10s ease-in-out infinite;
    }

    .blob-3 {
        width: 250px;
        height: 250px;
        animation: morph3 8s ease-in-out infinite, floatMobile3 9s ease-in-out infinite;
    }

    .blob-4 {
        width: 300px;
        height: 300px;
        top: 20vh;
        right: -20px;
        animation: morph4 10s ease-in-out infinite, floatMobile4 8.5s ease-in-out infinite;
    }

    /* Scale down gradient blobs for contact page on mobile */
    .contact-gradient-bg .blob-1,
    .booking-gradient-bg .blob-1 {
        width: 300px;
        height: 300px;
        top: -80px;
        right: -60px;
        animation: morph1 10s ease-in-out infinite, floatMobile1 8s ease-in-out infinite;
    }

    .contact-gradient-bg .blob-2,
    .booking-gradient-bg .blob-2 {
        width: 350px;
        height: 350px;
        top: 50vh;
        left: -100px;
        animation: morph2 9s ease-in-out infinite, floatMobile2 10s ease-in-out infinite;
    }

    .contact-gradient-bg .blob-3,
    .booking-gradient-bg .blob-3 {
        width: 250px;
        height: 250px;
        animation: morph3 8s ease-in-out infinite, floatMobile3 9s ease-in-out infinite;
    }

    .contact-gradient-bg .blob-4,
    .booking-gradient-bg .blob-4 {
        width: 300px;
        height: 300px;
        top: 20vh;
        right: -20px;
        animation: morph4 10s ease-in-out infinite, floatMobile4 8.5s ease-in-out infinite;
    }
}

/* Extra narrow viewports - Fix form overflow */
@media (max-width: 422px) {
    .ghl-form-container {
        height: 678px;
        min-height: 678px;
    }
}

/* Extra extra narrow viewports - Add more height for form */
@media (max-width: 410px) {
    .ghl-form-container {
        height: 708px;
        min-height: 708px;
    }
}

/* Ultra narrow viewports - Add even more height for form */
@media (max-width: 390px) {
    .ghl-form-container {
        height: 738px;
        min-height: 738px;
    }
}

/* Extremely narrow viewports - Maximum height for smallest phones */
@media (max-width: 350px) {
    .ghl-form-container {
        height: 768px;
        min-height: 768px;
    }
}

/* Desktop - Hide all mobile menu elements */
@media (min-width: 769px) {
    /* Contain gradient background overflow on desktop */
    .shared-gradient-bg,
    .contact-gradient-bg,
    .booking-gradient-bg {
        overflow: hidden;
    }

    .mobile-menu-toggle {
        display: none !important;
    }

    .mobile-menu-backdrop {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }

    .mobile-menu-close {
        display: none !important;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--accent-color);
    color: white;
}
