/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.calendly-container {
    height: fit-content !important;
    border: none !important;
}
html {
    scroll-behavior: smooth;
}

span.highlight {
    -webkit-text-fill-color: #4fc3f7;
}

/* Preloader Styles - Cool Modern Design */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    overflow: hidden;
}

.preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.preloader-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(79, 195, 247, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 195, 247, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.preloader-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #4fc3f7 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #29b6f6 0%, transparent 70%);
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #4fc3f7 0%, transparent 70%);
    top: 60%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.preloader-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: contentFadeIn 0.8s ease;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preloader-logo-container {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    border-color: transparent;
    animation: ringRotate 3s linear infinite;
}

.logo-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    border-top-color: #4fc3f7;
    border-right-color: #4fc3f7;
    animation-duration: 3s;
}

.logo-ring:nth-child(2) {
    width: 120%;
    height: 120%;
    border-bottom-color: #29b6f6;
    border-left-color: #29b6f6;
    animation-duration: 4s;
    animation-direction: reverse;
}

.logo-ring:nth-child(3) {
    width: 140%;
    height: 140%;
    border-top-color: rgba(79, 195, 247, 0.5);
    border-right-color: rgba(79, 195, 247, 0.5);
    animation-duration: 5s;
}

@keyframes ringRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.logo-inner {
    position: relative;
    z-index: 5;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(79, 195, 247, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(79, 195, 247, 0.2);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(79, 195, 247, 0);
    }
}

.preloader-logo {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(79, 195, 247, 0.6));
}

.preloader-text {
    margin-bottom: 2.5rem;
}

.preloader-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffffff, #d3d3d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preloader-loading {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1rem;
}

.loading-dot {
    width: 8px;
    height: 8px;
    background: #4fc3f7;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.8);
}

.loading-dot:nth-child(1) {
    animation-delay: 0s;
}

.loading-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }
    40% {
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

.preloader-progress-container {
    width: 300px;
    margin: 0 auto;
    position: relative;
}

.progress-track {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4fc3f7, #29b6f6);
    border-radius: 2px;
    position: relative;
    box-shadow: 0 0 10px rgba(79, 195, 247, 0.8);
    animation: progressShimmer 2s linear infinite;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 1.5s linear infinite;
}

.progress-text {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: #4fc3f7;
    font-family: 'Inter', monospace;
    letter-spacing: 0.1em;
}

.progress-number {
    font-size: 1.2rem;
}

@keyframes progressShimmer {
    0% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    overflow-x: hidden;
    position: relative;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(192, 192, 192, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(168, 168, 168, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(128, 128, 128, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%, rgba(255, 255, 255, 0.01) 100%);
    pointer-events: none;
    z-index: -1;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #e8e8e8, #d3d3d3, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #d3d3d3, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #c0c0c0;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    text-shadow: 0 0 10px rgba(192, 192, 192, 0.2);
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #d3d3d3;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: #a0a0a0;
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.6;
    font-weight: 400;
}

/* Highlight Class - Cyan Blue Accent */
.highlight {
    color: #4fc3f7;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.15), rgba(79, 195, 247, 0.05));
    padding: 0.15em 0.3em;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.highlight:hover {
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.25), rgba(79, 195, 247, 0.1));
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    background: rgba(0, 0, 0, 0.89);
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 0;
}

.hero-main-title {
    margin-bottom: 2rem;
}

.hero-audience {
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-audience-text {
    font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    color: #4fc3f7;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.hero-subheadline {
    margin-bottom: 2rem;
}

.hero-subheadline-line-1 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.6;
}

.hero-guarantee {
    margin-top: 2rem;
    text-align: center;
}

.hero-guarantee-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    padding: 1rem 2rem;
    background: rgba(79, 195, 247, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(79, 195, 247, 0.3);
    display: inline-block;
}

/* Mouse Scroll Indicator */
.mouse-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 0.8;
        transform: translateX(-50%) translateY(0);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(192, 192, 192, 0.6);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: linear-gradient(135deg, #d3d3d3, #c0c0c0);
    border-radius: 2px;
    animation: mouseScroll 2s ease-in-out infinite;
}

@keyframes mouseScroll {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.scroll-arrow span {
    width: 6px;
    height: 6px;
    border-right: 2px solid rgba(192, 192, 192, 0.8);
    border-bottom: 2px solid rgba(192, 192, 192, 0.8);
    transform: rotate(45deg);
    animation: arrowBounce 1.5s ease-in-out infinite;
}

.scroll-arrow span:nth-child(1) {
    animation-delay: 0s;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrow span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrowBounce {
    0%, 100% {
        opacity: 0.3;
        transform: rotate(45deg) translateY(0);
    }
    50% {
        opacity: 1;
        transform: rotate(45deg) translateY(8px);
    }
}

.mouse-scroll-indicator:hover {
    opacity: 1;
    cursor: pointer;
}

.mouse-scroll-indicator:hover .mouse {
    border-color: rgba(192, 192, 192, 0.9);
}

/* Hero CTA */
.hero-cta {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-top: 2rem;
}

.hero-cta-btn,
.form-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #e8e8e8, #d3d3d3, #c0c0c0);
    background-size: 200% 200%;
    color: #000;
    padding: 1.4rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(192, 192, 192, 0.6),
        0 5px 15px rgba(168, 168, 168, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: ctaPulse 2s ease-in-out infinite, gradientMove 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    transform: translateY(-1px);
    white-space: nowrap;
    width: auto;
    min-width: auto;
    cursor: pointer;
}

@keyframes gradientMove {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-cta-btn::before,
.form-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    border-radius: 16px;
}

.hero-cta-btn:hover::before,
.form-submit-btn:hover::before {
    left: 100%;
}

.hero-cta-btn::after,
.form-submit-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.hero-cta-btn:hover::after,
.form-submit-btn:hover::after {
    width: 300px;
    height: 300px;
}

.hero-cta-btn:hover,
.form-submit-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(192, 192, 192, 0.7),
        0 8px 20px rgba(168, 168, 168, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8, #d3d3d3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-cta-btn:active,
.form-submit-btn:active {
    transform: translateY(-1px) scale(0.99);
    box-shadow: 
        0 5px 15px rgba(192, 192, 192, 0.7),
        0 2px 8px rgba(168, 168, 168, 0.6),
        inset 0 2px 4px rgba(0, 0, 0, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #d3d3d3, #c0c0c0);
    transition: all 0.1s ease;
}

.cta-text {
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.cta-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.hero-cta-btn:hover .cta-arrow,
.form-submit-btn:hover .cta-arrow {
    transform: translateX(8px) scale(1.1);
}

.cta-button {
    border: none;
    font-family: inherit;
}

@keyframes ctaPulse {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(192, 192, 192, 0.6),
            0 5px 15px rgba(168, 168, 168, 0.5),
            0 0 0 1px rgba(255, 255, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.5),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 12px 35px rgba(192, 192, 192, 0.8),
            0 6px 18px rgba(168, 168, 168, 0.7),
            0 0 0 1px rgba(255, 255, 255, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.6),
            inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    }
}

/* Geometric Grid Background */
.geometric-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.grid-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(192, 192, 192, 0.2), transparent);
    animation: gridPulse 4s ease-in-out infinite;
}

.grid-line-1 {
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    animation-delay: 0s;
}

.grid-line-2 {
    top: 0;
    left: 25%;
    width: 1px;
    height: 100%;
    animation-delay: 0.5s;
}

.grid-line-3 {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    animation-delay: 1s;
}

.grid-line-4 {
    top: 0;
    left: 75%;
    width: 1px;
    height: 100%;
    animation-delay: 1.5s;
}

.grid-line-5 {
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 2s;
}

.grid-line-6 {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    animation-delay: 2.5s;
}

@keyframes gridPulse {
    0%, 100% {
        opacity: 0.1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Floating Cubes */
.floating-cubes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cube {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(192, 192, 192, 0.3);
    animation: cubeFloat 20s infinite;
}

.cube-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.cube-2 {
    top: 20%;
    right: 15%;
    animation-delay: 4s;
}

.cube-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 8s;
}

.cube-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 12s;
}

.cube-5 {
    top: 50%;
    left: 50%;
    animation-delay: 16s;
}

@keyframes cubeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 30px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Energy Waves */
.energy-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.wave {
    position: absolute;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    border: 2px solid rgba(192, 192, 192, 0.1);
    animation: waveExpand 8s ease-in-out infinite;
}

.wave-1 {
    top: -50%;
    left: -50%;
    animation-delay: 0s;
}

.wave-2 {
    top: -50%;
    left: -50%;
    animation-delay: 2.5s;
}

.wave-3 {
    top: -50%;
    left: -50%;
    animation-delay: 5s;
}

@keyframes waveExpand {
    0% {
        transform: scale(0.5);
        opacity: 0.3;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Particle Field */
.particle-field {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #d3d3d3, #c0c0c0);
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp 5s linear infinite;
    z-index: 1;
}

.particle-1 {
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    left: 20%;
    animation-delay: 1s;
}

.particle-3 {
    left: 30%;
    animation-delay: 2s;
}

.particle-4 {
    left: 40%;
    animation-delay: 3s;
}

.particle-5 {
    left: 50%;
    animation-delay: 4s;
}

.particle-6 {
    left: 60%;
    animation-delay: 0.5s;
}

.particle-7 {
    left: 70%;
    animation-delay: 1.5s;
}

.particle-8 {
    left: 80%;
    animation-delay: 2.5s;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Page Background */
.page-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Main Content Section */
.main-content {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(15, 15, 15, 0.6) 100%);
    backdrop-filter: blur(20px);
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

p.quote-text-new {
    color: #ffffff !important;
}

.additional-results-section {
    color: black !important;
}

h3.additional-results-title {
    color: black !important;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.content-section {
    margin-bottom: 5rem;
}

.section-panel {
    border-radius: 32px;
    padding: clamp(2.5rem, 4vw, 3.5rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 10, 18, 0.85);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    position: relative;
    overflow: hidden;
}

.section-panel::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 28px;
    border: 1px dashed rgba(79, 195, 247, 0.15);
    pointer-events: none;
}

.section-panel + .section-panel {
    margin-top: 4rem;
}

.section-dark {
    background: rgba(5, 8, 15, 0.92);
    border-color: rgba(79, 195, 247, 0.15);
}

.section-light {
    background: #f6f8fd;
    border-color: rgba(20, 33, 61, 0.08);
    box-shadow: 0 25px 60px rgba(17, 24, 39, 0.12);
}

.section-light::before {
    border-color: rgba(15, 23, 42, 0.08);
}

.section-light .section-headline {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-light,
.section-light .content-text,
.section-light .content-emphasis,
.section-light .content-question,
.section-light .timeline-period,
.section-light .timeline-description,
.section-light .fix-title,
.section-light .fix-text,
.section-light .condition-title,
.section-light .condition-text,
.section-light .strategy-text,
.section-light .benefit-title,
.section-light .benefit-text,
.section-light .testimonial-role-new,
.section-light .stat-label,
.section-light .results-label-new {
    color: #0f172a;
}

.section-light .content-text span.highlight,
.section-light .content-emphasis span.highlight,
.section-light .content-highlight span.highlight,
.section-light .highlight {
    color: #0ea5e9;
    -webkit-text-fill-color: #0ea5e9;
}

.section-light .content-highlight {
    background: rgba(15, 23, 42, 0.05);
    border-left-color: #0ea5e9;
}

.section-light .content-emphasis {
    color: #1e3a8a;
}

.section-light .timeline-item,
.section-light .fix-item,
.section-light .condition-item {
    background: rgba(226, 232, 240, 0.6);
    border-color: rgba(15, 23, 42, 0.12);
    border-left-color: #0ea5e9;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.section-light .timeline-item:hover,
.section-light .condition-item:hover {
    background: rgba(241, 245, 249, 0.95);
    border-color: rgba(14, 165, 233, 0.4);
    transform: translateX(5px);
}

.section-light .condition-number {
    background: linear-gradient(135deg, #1e3a8a, #0ea5e9);
    -webkit-text-fill-color: transparent;
}

.section-light .timeline-description,
.section-light .strategy-text {
    color: rgba(15, 23, 42, 0.85);
}

.section-light .hero-cta .cta-text {
    color: inherit;
}

.section-light .hero-cta .cta-button {
    border-color: rgba(15, 23, 42, 0.2);
}

.section-light .hero-cta .cta-button:hover {
    border-color: rgba(14, 165, 233, 0.6);
}

.proof-section {
    margin: 0;
    padding: 0;
}

.section-panel.proof-section {
    padding: clamp(2.5rem, 4vw, 3.5rem);
}

.section-light .testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.section-light .testimonial-card::before {
    background: linear-gradient(90deg, #0ea5e9, #0891b2, #0f172a);
}

.section-light .testimonial-company-new {
    color: #0f172a;
}

.section-light .testimonial-badge {
    background: rgba(14, 165, 233, 0.12);
    border-color: rgba(14, 165, 233, 0.25);
    color: #0f172a;
}

.section-light .testimonial-stats {
    background: rgba(15, 23, 42, 0.04);
    border-color: rgba(15, 23, 42, 0.1);
}

.section-light .stat-value {
    color: #0ea5e9;
}

.section-light .stat-label {
    color: rgba(15, 23, 42, 0.6);
}

.section-light .video-wrapper {
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.15);
}

.section-light .testimonial-quote-new {
    background: rgba(0, 0, 0, 0.89);
    border-left-color: #0ea5e9;
}

.section-light .testimonial-intro {
    color: rgba(15, 23, 42, 0.85);
}

.section-light .results-label-new {
    color: rgba(15, 23, 42, 0.6);
}

.section-light .results-image-new,
.section-light .additional-results-image {
    border-color: rgba(15, 23, 42, 0.08);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.section-light .additional-results-card {
    background: #0f172a;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.section-light .additional-results-title,
.section-light .additional-stat-label,
.section-light .additional-stat-time {
    color: #ffffff;
}

.section-light .additional-stat-value {
    color: #0ea5e9;
}

.section-light .fix-item {
    background: rgba(226, 232, 240, 0.8);
}

.section-light .strategy-icon {
    color: #0ea5e9;
    text-shadow: none;
}

.section-headline {
    font-size: clamp(2rem, 4vw, 2.8rem);
    text-align: left;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #d3d3d3, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.content-intro {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.content-text {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-question {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    color: #c0c0c0;
    font-weight: 700;
    margin: 2rem 0;
    text-align: center;
}

.content-emphasis {
    font-weight: 700;
    color: #d3d3d3;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.content-highlight {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(211, 211, 211, 0.2), rgba(192, 192, 192, 0.1));
    padding: 1.5rem;
    border-left: 4px solid #4fc3f7;
    border-radius: 8px;
    margin: 2rem 0;
    line-height: 1.7;
}

.content-mechanism {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #d3d3d3;
    font-weight: 600;
    background: rgba(79, 195, 247, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border: 1px solid rgba(79, 195, 247, 0.3);
}

/* Timeline Pattern */
.timeline-pattern {
    margin: 3rem 0;
}

.timeline-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #4fc3f7;
    transition: all 0.3s ease;
}

.timeline-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: #29b6f6;
    transform: translateX(5px);
}

.timeline-period {
    font-size: 1.1rem;
    font-weight: 700;
    color: #d3d3d3;
    margin-bottom: 0.5rem;
}

.timeline-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Fix List */
.fix-list {
    margin: 3rem 0;
}

.fix-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #4fc3f7;
}

.fix-title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #d3d3d3;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.fix-text {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Proof Section */
.proof-section {
    margin: 4rem 0;
    padding: 0;
}

/* New Testimonials Grid */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

/* Testimonial Card */
.testimonial-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(79, 195, 247, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4fc3f7, #29b6f6, #0288d1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79, 195, 247, 0.5);
    box-shadow: 0 20px 40px rgba(79, 195, 247, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Testimonial Badge */
.testimonial-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.2), rgba(79, 195, 247, 0.1));
    border: 1px solid rgba(79, 195, 247, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #4fc3f7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

/* Testimonial Header New */
.testimonial-header-new {
    margin-bottom: 1.5rem;
}

.testimonial-company-new {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.testimonial-role-new {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    margin: 0;
}

/* Testimonial Stats */
.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border: 1px solid rgba(79, 195, 247, 0.1);
}

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

.stat-value {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 800;
    color: #4fc3f7;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Video Wrapper */
.video-wrapper {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.video-container-new {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container-new iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Testimonial Results New */
.testimonial-results-new {
    margin-top: 2rem;
}

.results-label-new {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-align: center;
}


/* Testimonial Quote New */
.testimonial-quote-new {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.89);
    border-radius: 16px;
    border-left: 4px solid #4fc3f7;
    margin-bottom: 2rem;
    position: relative;
}

.testimonial-quote-new::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(79, 195, 247, 0.3);
    font-family: Georgia, serif;
    line-height: 1;
}

.quote-text-new {
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Results Grid New */
.results-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.result-card {
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.12), rgba(79, 195, 247, 0.06));
    border-radius: 20px;
    border: 2px solid rgba(79, 195, 247, 0.25);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.result-card:hover {
    border-color: rgba(79, 195, 247, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(79, 195, 247, 0.3);
}

.result-metric-new {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.result-label-new {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.section-light .result-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.section-light .result-card:hover {
    box-shadow: 0 12px 36px rgba(79, 195, 247, 0.2);
}

.section-light .result-metric-new {
    color: rgba(15, 23, 42, 0.9);
}

.section-light .result-label-new {
    color: rgba(15, 23, 42, 0.65);
}

/* Additional Results Section */
.additional-results-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(79, 195, 247, 0.2);
}

.additional-results-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #4fc3f7;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.additional-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 100%;
}

.section-light .additional-results-title {
    color: #0288d1;
}

.results-image-new {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid rgba(79, 195, 247, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

.section-light .results-image-new {
    border-color: rgba(79, 195, 247, 0.3);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Strategy List */
.strategy-list {
    margin: 2.5rem 0;
}

.strategy-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #4fc3f7;
}

.strategy-icon {
    font-size: 1.5rem;
    color: #4fc3f7;
    font-weight: 700;
    min-width: 30px;
}

.strategy-text {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    flex: 1;
}

/* CTA Section */
.cta-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(192, 192, 192, 0.2);
}

/* Conditions List */
.conditions-list {
    margin: 3rem 0;
}

.condition-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    transition: all 0.3s ease;
}

.condition-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(79, 195, 247, 0.4);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.2);
}

.condition-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    min-width: 60px;
}

.condition-content {
    flex: 1;
}

.condition-title {
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: #d3d3d3;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.condition-text {
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Results Section */
.results-section {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.results-headline {
    text-align: center;
    margin-bottom: 2.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.result-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(192, 192, 192, 0.2);
    text-align: center;
}

.result-company {
    font-size: 1.1rem;
    font-weight: 700;
    color: #c0c0c0;
    margin-bottom: 0.75rem;
}

.result-metric {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4fc3f7, #29b6f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.result-timeline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.results-note {
    text-align: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    margin: 0;
}

/* Benefits List */
.benefits-list {
    margin: 3rem 0;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #4fc3f7;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-left-color: #29b6f6;
    background: rgba(79, 195, 247, 0.05);
    box-shadow: 0 4px 15px rgba(79, 195, 247, 0.15);
}

.benefit-icon {
    font-size: 1.5rem;
    color: #4fc3f7;
    font-weight: 700;
    min-width: 30px;
    text-shadow: 0 0 10px rgba(79, 195, 247, 0.5);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: #d3d3d3;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.benefit-text {
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Lead Form Section */
.lead-form-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.6) 0%, rgba(26, 26, 26, 0.4) 50%, rgba(15, 15, 15, 0.6) 100%);
    backdrop-filter: blur(20px);
    padding: 8rem 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.08);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(192, 192, 192, 0.3);
    backdrop-filter: blur(30px);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.calendly-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(192, 192, 192, 0.2);
}

.calendly-inline-widget {
    border-radius: 12px;
}

.form-headline {
    background: linear-gradient(135deg, #d3d3d3, #c0c0c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    text-shadow: 0 0 20px rgba(192, 192, 192, 0.3);
}

.form-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.form-result {
    text-align: center;
    color: #c0c0c0;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    font-weight: 600;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.lead-form {
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 1px solid rgba(192, 192, 192, 0.3);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c0c0c0;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
    box-shadow: 0 0 0 3px rgba(192, 192, 192, 0.2), 0 0 20px rgba(192, 192, 192, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: #ffffff;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .content-section.proof-section.section-panel.section-light {
        padding: 0px !important;
    }
    
    .cta-button {
        padding: 17px;
    }

    .content-section.proof-section h2.section-headline {
        padding: 16px;
    }
    

    .hero {
        padding-top: 5rem;
        padding-bottom: 4rem;
    }

    .hero-content {
        padding: 1.25rem 0 0;
    }

    .hero-guarantee-text {
        padding: 0.85rem 1.25rem;
    }

    .main-content,
    .lead-form-section {
        padding: 3rem 0;
    }

    .content-wrapper {
        padding: 0;
    }

    .section-panel {
        padding: 1.65rem;
        border-radius: 20px;
    }

    .section-panel::before {
        display: none;
    }

    .section-panel + .section-panel {
        margin-top: 2.5rem;
    }

    .timeline-pattern,
    .fix-list,
    .conditions-list,
    .strategy-list {
        margin: 1.5rem 0;
    }

    .timeline-item,
    .fix-item,
    .strategy-item,
    .benefit-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }

    .condition-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    .condition-number {
        min-width: auto;
        text-align: left;
        font-size: 2rem;
    }

    .testimonials-grid {
        gap: 1.75rem;
        margin-top: 1.75rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .video-wrapper {
        margin-bottom: 1.5rem;
    }

    .results-grid,
    .additional-results-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .result-card,
    .results-section,
    .form-container {
        padding: 1.75rem;
    }

    .lead-form {
        margin-top: 1.25rem;
    }

    .form-container {
        border-radius: 16px;
    }

    .calendly-container iframe {
        min-height: 600px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 4rem;
    }

    .hero-main-title {
        margin-bottom: 1rem;
    }

    .hero-guarantee {
        margin-top: 1rem;
    }

    .hero-cta {
        margin-top: 1.25rem;
    }

    .timeline-item,
    .fix-item,
    .strategy-item,
    .benefit-item,
    .condition-item {
        padding: 1rem;
        border-radius: 12px;
    }

    .result-card,
    .results-section,
    .form-container {
        padding: 1.5rem 1.25rem;
    }

    .testimonials-grid {
        gap: 1.25rem;
    }

    .testimonial-quote-new {
        padding: 1.25rem;
    }

    .calendly-container iframe {
        min-height: 520px;
    }
}

/* Confirmation Checkmark */
.confirmation-checkmark {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    animation: checkmarkFadeIn 0.8s ease-out;
}

.checkmark-svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(79, 195, 247, 0.5));
}

.checkmark-circle {
    fill: none;
    stroke: #4fc3f7;
    stroke-width: 4;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: circleDraw 1s ease-out 0.3s forwards;
    transform-origin: center;
}

.checkmark-check {
    stroke: #4fc3f7;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: checkDraw 0.6s ease-out 1.2s forwards;
}

@keyframes checkmarkFadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes circleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@media (max-width: 768px) {
    .checkmark-svg {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .checkmark-svg {
        width: 80px;
        height: 80px;
    }
    
    .confirmation-checkmark {
        margin-bottom: 1.5rem;
    }
}

/* Footer */
.footer {
    background: rgba(5, 8, 15, 0.95);
    border-top: 1px solid rgba(79, 195, 247, 0.15);
    padding: 3rem 0 2rem;
    position: relative;
    z-index: 10;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #4fc3f7;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4fc3f7;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.95rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-separator {
        display: none;
    }
}

