/* Font Face Declaration */
@font-face {
    font-family: 'Vremena Grotesk';
    src: url('fonts/VremenaGroteskMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Vremena Grotesk', sans-serif;
    background-image: url('6900281513043eba724edc47_cloutprofit_testimonials_background_1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Keep background static for a parallax-like feel */
    background-color: #000;
    /* Fallback */
}

/* Hero Section */
.hero {
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 20px;
}

/* Logo Container */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Logo Image */
.logo {
    max-width: 80px;
    height: auto;
    object-fit: contain;
}

/* Brand Name */
.brand-name {
    font-family: 'League Spartan', sans-serif;
    font-weight: 100;
    font-size: 0.75rem;
    color: #9a9a9a;
    text-align: center;
    letter-spacing: 0.35em;
}

/* Hero Text Section */
.hero-text {
    text-align: center;
    margin-top: 80px;
}

.hero-headline {
    font-family: 'Vremena Grotesk', sans-serif;
    font-weight: 500;
    font-size: 4rem;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1;
    letter-spacing: -0.01em;
    word-spacing: -0.15em;
}

/* Desktop/Mobile visibility */
.hero-text-desktop {
    display: block;
}

.hero-text-mobile {
    display: none;
}

/* Mobile-only hero styles */
.hero-line-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.3em;
}

.hero-thats {
    font-family: 'Vremena Grotesk', sans-serif;
    font-weight: 500;
    font-size: 4rem;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.01em;
    word-spacing: -0.15em;
}

.rotating-text-wrapper-mobile {
    width: auto;
    min-width: 280px;
}

.rotating-text-wrapper-mobile .rotating-text-container {
    width: auto;
    min-width: 280px;
}

.rotating-text-wrapper-mobile .rotating-text-face {
    width: auto;
    min-width: 280px;
    justify-content: flex-start;
}

/* 3D Rotating Text Container */
.rotating-text-wrapper {
    perspective: 300px;
    height: 5.5rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.rotating-text-container {
    position: relative;
    width: 100%;
    height: 5.5rem;
    transform-style: preserve-3d;
    animation: rotateUp 15s infinite;
}

/* Each face of the 3D prism */
.rotating-text-face {
    position: absolute;
    width: 100%;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Vremena Grotesk', sans-serif;
    font-weight: 500;
    font-size: 4rem;
    background: linear-gradient(180deg, #f0f6ff 0%, #93c5fd 30%, #3b82f6 70%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.15));
    line-height: 1;
    letter-spacing: -0.01em;
    word-spacing: -0.15em;
    backface-visibility: hidden;
    opacity: 0;
}

/* Position each word and give it a synchronized opacity animation */
.rotating-text-face:nth-child(1) {
    transform: rotateX(0deg) translateZ(44px);
    animation: fade1 15s infinite;
}

.rotating-text-face:nth-child(2) {
    transform: rotateX(72deg) translateZ(44px);
    animation: fade2 15s infinite;
}

.rotating-text-face:nth-child(3) {
    transform: rotateX(144deg) translateZ(44px);
    animation: fade3 15s infinite;
}

.rotating-text-face:nth-child(4) {
    transform: rotateX(216deg) translateZ(44px);
    animation: fade4 15s infinite;
}

.rotating-text-face:nth-child(5) {
    transform: rotateX(288deg) translateZ(44px);
    animation: fade5 15s infinite;
}

/* Fade animations - fade happens exactly during rotation */
@keyframes fade1 {
    0% {
        opacity: 1;
    }

    14% {
        opacity: 1;
    }

    18% {
        opacity: 0;
    }

    96% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fade2 {
    0% {
        opacity: 0;
    }

    14% {
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    34% {
        opacity: 1;
    }

    38% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade3 {
    0% {
        opacity: 0;
    }

    34% {
        opacity: 0;
    }

    38% {
        opacity: 1;
    }

    54% {
        opacity: 1;
    }

    58% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade4 {
    0% {
        opacity: 0;
    }

    54% {
        opacity: 0;
    }

    58% {
        opacity: 1;
    }

    74% {
        opacity: 1;
    }

    78% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fade5 {
    0% {
        opacity: 0;
    }

    74% {
        opacity: 0;
    }

    78% {
        opacity: 1;
    }

    94% {
        opacity: 1;
    }

    98% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* Keyframes - rotates upward with pauses on each word */
@keyframes rotateUp {

    0%,
    14% {
        transform: rotateX(0deg);
    }

    18%,
    34% {
        transform: rotateX(-72deg);
    }

    38%,
    54% {
        transform: rotateX(-144deg);
    }

    58%,
    74% {
        transform: rotateX(-216deg);
    }

    78%,
    94% {
        transform: rotateX(-288deg);
    }

    98%,
    100% {
        transform: rotateX(-360deg);
    }
}

/* Video Wrapper */
.video-wrapper {
    width: 77%;
    max-width: 940px;
    margin: 40px auto 0;
    border-radius: 18px;
    position: relative;
    padding: 6px;
    background: linear-gradient(180deg, #2a2a35 0%, #18181f 50%, #111118 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 20px 50px rgba(0, 0, 0, 0.7),
        0 4px 12px rgba(0, 0, 0, 0.5);
    overflow: visible;
    z-index: 10;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 250%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.3) 0%, rgba(59, 130, 246, 0.12) 30%, rgba(59, 130, 246, 0.04) 50%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, #7dd3fc, #3b82f6, transparent);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.6), 0 0 35px rgba(59, 130, 246, 0.3);
    border-radius: 2px;
    z-index: 20;
}

.video-wrapper>div {
    border-radius: 13px;
    overflow: hidden;
    background: #000;
}

/* CTA Section */
.cta-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    padding-bottom: 80px;
}

.apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 80px;
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    border-radius: 100px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(59, 130, 246, 0.4);
    overflow: hidden;
}

/* Glassy outer effect */
.apply-button::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 100px;
    z-index: -1;
    transition: background 0.3s ease;
}

/* Inner highlight */
.apply-button::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 20px;
    right: 20px;
    height: 30%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
    border-radius: 100px 100px 0 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.apply-button svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 8px 24px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(59, 130, 246, 0.6);
    filter: brightness(1.1);
}

.apply-button:hover svg {
    transform: translateX(6px);
}

.apply-button:active {
    transform: translateY(0);
}

/* Info Section Styles */
.info-section {
    color: #ffffff;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.info-content {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.info-headline {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.info-text p {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: #a1a1a1;
    font-weight: 500;
}

.info-text .highlight-p {
    color: #ffffff;
    font-size: 1.75rem;
    line-height: 1.4;
}

/* Repurpose cta-container for the new section button */
.info-section .cta-container {
    margin-top: 20px;
    padding-bottom: 0;
}

/* Steps Section */
.steps-section {
    padding: 0 40px 60px;
    display: flex;
    justify-content: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    width: 100%;
}

.step-card {
    background: linear-gradient(180deg, #0d1018 0%, #080a10 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 0 0 36px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.step-card:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.step-card-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background:
        radial-gradient(circle at 12% 12%, rgba(125, 211, 252, 0.14) 0%, transparent 42%),
        radial-gradient(circle at 86% 82%, rgba(59, 130, 246, 0.1) 0%, transparent 48%),
        linear-gradient(180deg, #0b1020 0%, #070a12 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.step-card-image::before {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -18px 40px rgba(0, 0, 0, 0.45);
    pointer-events: none;
}

.step-card-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.65), transparent);
    pointer-events: none;
}

.step-card-image svg {
    width: 88%;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.35));
}

.step-badge {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #60a5fa;
    letter-spacing: 0.15em;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    margin-left: 28px;
}

.step-title {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.3;
    padding: 0 28px;
}

.step-desc {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #666;
    line-height: 1.6;
    padding: 0 28px;
}

/* Closing Section */
.closing-section {
    padding: 20px 20px 120px;
    display: flex;
    justify-content: center;
}

.closing-content {
    max-width: 700px;
    text-align: center;
}

.closing-bold {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1.55rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.55;
    margin-bottom: 36px;
}

.closing-muted {
    color: #a1a1a1;
}

.closing-quote {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: #a1a1a1;
    line-height: 1.55;
    margin-bottom: 0;
}

.closing-quote strong {
    color: #ffffff;
    font-weight: 500;
}

.closing-section .cta-container {
    margin-top: 50px;
    padding-bottom: 0;
}

/* Performance Section */
.performance-section {
    padding: 80px 40px 120px;
    display: flex;
    justify-content: center;
}

.performance-split {
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.performance-left,
.performance-right {
    padding-top: 0;
}

.performance-left {
    position: sticky;
    top: calc(50vh - 150px);
}

.performance-headline {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.headline-gradient {
    background: linear-gradient(180deg, #f0f6ff 0%, #93c5fd 30%, #3b82f6 70%, #1d4ed8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.performance-sub {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #a1a1a1;
    line-height: 1.6;
}

.performance-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.perf-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.metric-hero {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(180deg, #0d1018 0%, #080a10 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 44px 36px;
}

.metric-hero-number {
    font-family: 'Inter', sans-serif;
    font-size: 5.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, #f0f6ff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.metric-hero-label {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.metric-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    background: linear-gradient(180deg, #0d1018 0%, #080a10 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 36px 36px;
}

.metric-divider {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.08);
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    background: linear-gradient(180deg, #f0f6ff 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
}

.metric-label {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: linear-gradient(180deg, #0d1018 0%, #080a10 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 28px 32px;
}

.feature-accent {
    flex-shrink: 0;
    width: 3px;
    height: 44px;
    border-radius: 3px;
    background: linear-gradient(180deg, #60a5fa, #3b82f6);
    margin-top: 2px;
}

.feature-accent-green {
    background: linear-gradient(180deg, #4ade80, #22c55e);
}

.feature-accent-purple {
    background: linear-gradient(180deg, #c084fc, #8b5cf6);
}

.feature-title {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 6px;
}

.feature-desc {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    line-height: 1.6;
}

/* Integrations Section */
.integrations-section {
    padding: 80px 0 100px;
    overflow: hidden;
    text-align: center;
    max-width: 100vw;
}

.integrations-headline {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 50px;
    padding: 0 20px;
}

.integrations-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    display: none;
}

.marquee-inner {
    display: inline-flex;
    gap: 28px;
    white-space: nowrap;
    animation: marqueeScroll 40s linear infinite;
}

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

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

.marquee-item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.45);
    padding: 0;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.marquee-item:hover {
    color: rgba(255, 255, 255, 0.7);
}

.marquee-item img {
    width: 30px;
    height: 30px;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    background: transparent;
    mix-blend-mode: lighten;
}

.marquee-item:hover img {
    opacity: 0.65;
}

/* Final CTA Section */
.final-cta-section {
    position: relative;
    padding: 180px 20px 200px;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.5), rgba(125, 211, 252, 0.7), rgba(96, 165, 250, 0.5), transparent);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.25), 0 0 60px rgba(59, 130, 246, 0.1);
}

.final-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    background:
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 100%),
        radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, rgba(59, 130, 246, 0.04) 40%, transparent 70%);
    pointer-events: none;
    animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.12);
    }
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.final-cta-headline {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 5.5rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.final-cta-headline .headline-gradient {
    filter: drop-shadow(0 0 18px rgba(59, 130, 246, 0.4)) drop-shadow(0 0 60px rgba(59, 130, 246, 0.15));
}

.final-cta-sub {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: #888;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 52px;
}

/* Footer Styles */
.site-footer {
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.footer-brand {
    font-family: 'League Spartan', sans-serif;
    font-weight: 100;
    font-size: 0.65rem;
    color: #9a9a9a;
    letter-spacing: 0.35em;
}

.footer-disclaimer {
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 0.875rem;
    color: #666666;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 60px;
}

.footer-disclaimer a {
    color: #888888;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.footer-disclaimer a:hover {
    color: #3b82f6;
}

.footer-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-family: 'Vremena Grotesk', sans-serif;
    font-size: 0.75rem;
    color: #444444;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #444444;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* --- MOBILE OPTIMIZATION (NO PC CHANGES) --- */
@media (max-width: 1024px) {
    .video-wrapper {
        width: 90%;
    }

    .steps-grid {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 60px;
    }

    .brand-name {
        font-size: 0.65rem;
        letter-spacing: 0.25em;
    }

    .hero-text {
        margin-top: 60px;
        padding: 0 20px;
    }

    /* Show mobile layout, hide desktop layout */
    .hero-text-desktop {
        display: none;
    }

    .hero-text-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-headline {
        font-size: 1.6rem;
        word-spacing: -0.05em;
    }

    .rotating-text-wrapper-mobile {
        min-width: auto;
        width: 100%;
        padding: 0;
        overflow: visible;
        margin-top: 4px;
    }

    .rotating-text-wrapper-mobile .rotating-text-container,
    .rotating-text-wrapper-mobile .rotating-text-face {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }

    .rotating-text-wrapper {
        padding-left: 0;
        padding-right: 0;
        overflow: visible;
    }

    .rotating-text-wrapper,
    .rotating-text-container,
    .rotating-text-face {
        height: 2.6rem;
    }

    .rotating-text-face {
        font-size: 2rem;
        word-spacing: -0.05em;
        white-space: nowrap;
    }

    .rotating-text-face:nth-child(1) {
        transform: rotateX(0deg) translateZ(21px);
    }

    .rotating-text-face:nth-child(2) {
        transform: rotateX(72deg) translateZ(21px);
    }

    .rotating-text-face:nth-child(3) {
        transform: rotateX(144deg) translateZ(21px);
    }

    .rotating-text-face:nth-child(4) {
        transform: rotateX(216deg) translateZ(21px);
    }

    .rotating-text-face:nth-child(5) {
        transform: rotateX(288deg) translateZ(21px);
    }

    .video-wrapper {
        width: 92%;
        margin-top: 40px;
    }

    .cta-container {
        margin-top: 40px;
        padding-bottom: 60px;
    }

    .apply-button {
        padding: 14px 36px;
        font-size: 1.2rem;
        width: 90%;
        max-width: 320px;
    }

    .info-section {
        padding: 80px 24px;
    }

    .info-headline {
        font-size: 2.25rem;
        margin-bottom: 40px;
    }

    .info-text {
        gap: 24px;
        margin-bottom: 40px;
    }

    .info-text p {
        font-size: 1.1rem;
    }

    .info-text .highlight-p {
        font-size: 1.25rem;
    }

    .steps-section {
        padding: 0 16px 60px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
        gap: 20px;
    }

    .step-card {
        padding: 0 0 28px;
        border-radius: 16px;
    }

    .step-card-image {
        aspect-ratio: 4 / 3;
    }

    .step-card-image::before {
        inset: 10px;
        border-radius: 10px;
    }

    .step-card-image svg {
        width: 95%;
    }

    .step-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
        margin-left: 20px;
    }

    .step-title {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .step-desc {
        font-size: 0.9rem;
        padding: 0 20px;
    }

    .closing-section {
        padding: 20px 24px 80px;
    }

    .closing-bold {
        font-size: 1.2rem;
    }

    .closing-quote {
        font-size: 1.1rem;
    }

    .performance-section {
        padding: 60px 24px 80px;
    }

    .performance-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .performance-left {
        position: static;
        text-align: center;
    }

    .performance-headline {
        font-size: 2.25rem;
    }

    .performance-sub {
        font-size: 1.1rem;
    }

    .metric-hero-number {
        font-size: 3.5rem;
    }

    .metric-row {
        gap: 32px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .integrations-headline {
        font-size: 2rem;
        margin-bottom: 36px;
    }

    .final-cta-section {
        padding: 100px 24px 120px;
    }

    .final-cta-headline {
        font-size: 2.8rem;
    }

    .final-cta-sub {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .final-cta-glow {
        width: 450px;
        height: 450px;
    }

    .final-cta-section::before {
        left: 5%;
        right: 5%;
    }

    .site-footer {
        padding: 60px 20px 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 25px;
    }

    .footer-links {
        gap: 20px;
    }
}

@media (max-width: 480px) {

    .hero-headline {
        font-size: 1.4rem;
    }

    .rotating-text-face {
        font-size: 1.8rem;
    }

    .rotating-text-wrapper,
    .rotating-text-container,
    .rotating-text-face {
        height: 2.4rem;
    }

    .rotating-text-wrapper-mobile {
        min-width: auto;
        padding: 0;
    }

    .rotating-text-wrapper-mobile .rotating-text-container,
    .rotating-text-wrapper-mobile .rotating-text-face {
        min-width: auto;
    }

    .rotating-text-wrapper {
        padding: 0;
    }

    .rotating-text-face:nth-child(1) {
        transform: rotateX(0deg) translateZ(19px);
    }

    .rotating-text-face:nth-child(2) {
        transform: rotateX(72deg) translateZ(19px);
    }

    .rotating-text-face:nth-child(3) {
        transform: rotateX(144deg) translateZ(19px);
    }

    .rotating-text-face:nth-child(4) {
        transform: rotateX(216deg) translateZ(19px);
    }

    .rotating-text-face:nth-child(5) {
        transform: rotateX(288deg) translateZ(19px);
    }

    .info-headline {
        font-size: 1.6rem;
    }

    .apply-button {
        font-size: 1rem;
        padding: 12px 24px;
    }
}