/* ============================================
   AUTOMATDO FITNESS PAGE - "THE PULSE"
   Energetic, Dynamic Design
   Diagonal cuts, bold typography, motion
   ============================================ */

/* ---------- Hero Section ---------- */
.fit-hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem var(--space-xl) 12rem;
    overflow: hidden;
}

.fit-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fit-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.fit-hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-xl);
}

.fit-hero-title .title-word {
    display: block;
    animation: wordSlide 0.8s ease-out backwards;
}

.fit-hero-title .title-word:nth-child(1) { animation-delay: 0.1s; }
.fit-hero-title .title-word:nth-child(2) { animation-delay: 0.2s; }
.fit-hero-title .title-word:nth-child(3) { animation-delay: 0.3s; }

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

.fit-hero-title .accent {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.fit-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.fit-hero-subtitle strong {
    color: var(--text-primary);
}

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

/* Floating Phone Mockup */
.fit-hero-phone {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%) rotate(6deg);
    z-index: 1;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(-50%) rotate(6deg); }
    50% { transform: translateY(-52%) rotate(8deg); }
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: var(--bg-tertiary);
    border: 3px solid var(--border-strong);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(212, 165, 48, 0.15);
}

[data-theme="light"] .phone-frame {
    background: var(--bg-tertiary);
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.25),
        0 0 60px rgba(212, 165, 48, 0.1);
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: var(--bg-primary);
    border-radius: 20px;
    margin: 0 auto 16px;
}

.phone-screen {
    height: calc(100% - 44px);
    background: var(--bg-secondary);
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}

.phone-time {
    font-size: 0.875rem;
    font-weight: 600;
}

.phone-icons {
    display: flex;
    gap: 4px;
}

.phone-icons span {
    width: 16px;
    height: 10px;
    background: var(--text-tertiary);
    border-radius: 2px;
}

.phone-call-ui {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-xl);
    position: relative;
}

.caller-pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(212, 165, 48, 0.1);
    animation: callerPulse 2s ease-out infinite;
}

@keyframes callerPulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(2); opacity: 0; }
}

.caller-avatar {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 50%;
    color: white;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
}

.caller-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.caller-label {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-bottom: var(--space-xl);
}

.call-actions {
    display: flex;
    gap: var(--space-xl);
}

.call-decline,
.call-accept {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: transform var(--transition-base);
}

.call-decline {
    background: var(--error);
    color: white;
}

.call-accept {
    background: var(--success);
    color: white;
    animation: acceptPulse 1.5s ease-in-out infinite;
}

@keyframes acceptPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.phone-ai-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(212, 165, 48, 0.1);
    border-top: 1px solid var(--border-subtle);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.ai-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Diagonal */
.hero-diagonal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: var(--bg-secondary);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    z-index: 3;
}

/* ---------- Impact Numbers Section ---------- */
.fit-impact {
    position: relative;
    z-index: 10;
    background: var(--bg-secondary);
    padding: var(--space-4xl) 0;
    overflow: hidden;
}

.impact-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

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

.impact-stat .impact-number,
.impact-stat .impact-unit,
.impact-stat .impact-currency {
    font-family: var(--font-display);
    font-size: clamp(4rem, 12vw, 8rem);
    font-weight: 300;
    line-height: 1;
    color: var(--text-primary);
}

.impact-stat .impact-currency {
    font-size: clamp(2.5rem, 6vw, 4rem);
    vertical-align: top;
    margin-right: -0.5rem;
}

.impact-stat .impact-unit {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-tertiary);
    margin-left: 0.25rem;
}

.impact-stat.gold .impact-number,
.impact-stat.gold .impact-currency {
    color: var(--accent-primary);
}

.impact-label {
    display: block;
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

.impact-divider {
    color: var(--border-medium);
    opacity: 0.5;
}

/* ---------- Problem Timeline Section ---------- */
.fit-problem {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0 calc(var(--space-4xl) + 100px);
    background: var(--bg-primary);
}

.problem-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.problem-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 500;
    text-align: center;
    margin-bottom: var(--space-sm);
}

.problem-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-3xl);
}

.problem-timeline {
    position: relative;
}

.timeline-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

[data-theme="light"] .timeline-item {
    background: var(--bg-card-solid);
    box-shadow: var(--shadow-sm);
}

.timeline-item:hover {
    transform: translateX(8px);
    border-color: var(--border-medium);
}

.timeline-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    color: var(--accent-primary);
    flex-shrink: 0;
}

.timeline-icon.warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.timeline-icon.danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--error);
}

.timeline-content {
    flex: 1;
}

.timeline-time {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: var(--space-xs);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--space-xs);
}

.timeline-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.timeline-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-md) 0;
    margin-left: calc(28px + var(--space-lg));
}

.connector-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent-primary), var(--border-medium));
}

.connector-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--border-medium);
}

/* Problem Diagonal */
.problem-diagonal {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

/* ---------- Solution Split Section ---------- */
.fit-solution {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    padding: var(--space-4xl) 0;
    color: white;
}

.solution-split {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.solution-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0.8;
    margin-bottom: var(--space-md);
}

.solution-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.solution-title .accent {
    opacity: 0.9;
}

.solution-desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: var(--space-xl);
}

.fit-solution .btn-primary {
    background: white;
    color: var(--accent-tertiary);
}

.fit-solution .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.fit-solution .btn-primary::before {
    display: none;
}

/* Solution Conversation Card */
.solution-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
    color: var(--text-primary);
}

[data-theme="light"] .solution-card {
    background: var(--bg-card-solid);
}

.solution-card-header {
    padding: var(--space-md) var(--space-lg);
    border-bottom: 1px solid var(--border-subtle);
}

.card-status {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.card-status.live {
    color: var(--success);
}

.status-pulse {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.solution-conversation {
    padding: var(--space-lg);
    max-height: 320px;
    overflow-y: auto;
}

.convo-message {
    margin-bottom: var(--space-md);
}

.convo-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
    margin-bottom: 4px;
}

.convo-message.ai .convo-label {
    color: var(--accent-primary);
}

.convo-message p {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-secondary);
    padding: var(--space-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.convo-message.ai p {
    background: rgba(212, 165, 48, 0.1);
    border: 1px solid rgba(212, 165, 48, 0.2);
}

.convo-typing {
    display: flex;
    gap: 4px;
    padding: var(--space-md);
}

.convo-typing span {
    width: 8px;
    height: 8px;
    background: var(--text-tertiary);
    border-radius: 50%;
    animation: typing 1.4s ease-in-out infinite;
}

.convo-typing span:nth-child(2) { animation-delay: 0.2s; }
.convo-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 100% { opacity: 0.3; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-4px); }
}

.solution-card-footer {
    display: flex;
    border-top: 1px solid var(--border-subtle);
}

.footer-stat {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    text-align: center;
}

.footer-stat:first-child {
    border-right: 1px solid var(--border-subtle);
}

.footer-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2px;
}

.footer-number.success {
    color: var(--success);
}

.footer-label {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

/* ---------- Features Stack Section ---------- */
.fit-features {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0;
    background: var(--bg-primary);
}

.features-header {
    max-width: var(--container-max);
    margin: 0 auto var(--space-3xl);
    padding: 0 var(--space-xl);
}

.features-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
}

.features-header .accent {
    color: var(--text-tertiary);
}

.features-stack {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.feature-row {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: var(--space-xl);
    align-items: center;
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}

.feature-row:hover {
    padding-left: var(--space-lg);
    background: var(--bg-secondary);
    margin-left: calc(-1 * var(--space-lg));
    margin-right: calc(-1 * var(--space-lg));
    padding-right: var(--space-lg);
    border-radius: var(--radius-lg);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--accent-primary);
    opacity: 0.6;
}

.feature-main h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.feature-main p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-row .feature-icon {
    display: flex;
    justify-content: flex-end;
    color: var(--accent-primary);
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.feature-row:hover .feature-icon {
    opacity: 1;
}

/* ---------- Audience Horizontal Scroll ---------- */
.fit-audience {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.audience-header {
    max-width: var(--container-max);
    margin: 0 auto var(--space-2xl);
    padding: 0 var(--space-xl);
}

.audience-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
}

.audience-scroll-container {
    position: relative;
    margin-bottom: var(--space-lg);
}

.audience-scroll {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-xl);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.audience-scroll::-webkit-scrollbar {
    display: none;
}

.audience-scroll.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.audience-scroll:not(.dragging) {
    cursor: grab;
}

.audience-card {
    flex: 0 0 300px;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    scroll-snap-align: start;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

[data-theme="light"] .audience-card {
    background: var(--bg-card-solid);
    box-shadow: var(--shadow-sm);
}

.audience-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    border-color: var(--accent-primary);
}

[data-theme="light"] .audience-card:hover {
    box-shadow: var(--shadow-lg);
}

.audience-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 165, 48, 0.15) 0%, rgba(212, 165, 48, 0.05) 100%);
    border-radius: var(--radius-lg);
    color: var(--accent-primary);
    margin-bottom: var(--space-lg);
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.audience-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

.scroll-hint svg {
    animation: scrollHint 1.5s ease-in-out infinite;
}

@keyframes scrollHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* ---------- Single Testimonial Section ---------- */
.fit-testimonial {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) 0;
    background: var(--bg-primary);
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
    text-align: center;
}

.testimonial-quote {
    position: relative;
    margin-bottom: var(--space-2xl);
}

.quote-mark {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-primary);
    opacity: 0.2;
}

.testimonial-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-secondary);
    font-style: italic;
    padding-top: var(--space-2xl);
}

.testimonial-quote .highlight {
    color: var(--accent-primary);
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
}

.fit-testimonial .author-avatar {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.fit-testimonial .author-info {
    text-align: left;
}

.fit-testimonial .author-name {
    display: block;
    font-weight: 600;
    font-size: 1rem;
}

.fit-testimonial .author-role {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* ---------- CTA Section ---------- */
.fit-cta {
    position: relative;
    z-index: 10;
    padding: var(--space-4xl) var(--space-xl);
    background: var(--bg-secondary);
    overflow: hidden;
}

.cta-diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-tertiary) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: white;
    margin-bottom: var(--space-md);
}

.cta-title .accent {
    opacity: 0.9;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
}

.fit-form {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

[data-theme="light"] .fit-form {
    background: var(--bg-card-solid);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select {
    width: 100%;
    padding: 1.25rem 1rem 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-field label {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    pointer-events: none;
    transition: all var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:valid + label {
    top: 0.5rem;
    transform: translateY(0);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-primary);
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239d9da6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-size: 1.0625rem;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 48, 0.4);
}

.fit-form .form-disclaimer {
    margin-top: var(--space-md);
    font-size: 0.8125rem;
    color: var(--text-tertiary);
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 1024px) {
    .fit-hero-phone {
        display: none;
    }

    .solution-split {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .solution-right {
        order: -1;
    }

    .solution-card {
        max-width: 500px;
        margin: 0 auto;
    }

    .impact-scroll {
        flex-direction: column;
        gap: var(--space-2xl);
    }

    .impact-divider {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .fit-hero {
        padding: 7rem var(--space-lg) 10rem;
        min-height: auto;
    }

    .fit-hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-diagonal {
        height: 80px;
    }

    .problem-diagonal {
        height: 60px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .timeline-icon {
        margin: 0 auto;
    }

    .timeline-connector {
        margin-left: 0;
    }

    .feature-row {
        grid-template-columns: 1fr;
        gap: var(--space-md);
        text-align: center;
    }

    .feature-number {
        font-size: 1.5rem;
    }

    .feature-row .feature-icon {
        justify-content: center;
        order: -1;
    }

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

    .audience-card {
        flex: 0 0 260px;
    }
}

@media (max-width: 480px) {
    .fit-hero-subtitle {
        font-size: 1.0625rem;
    }

    .impact-stat .impact-number {
        font-size: 4rem;
    }

    .solution-conversation {
        max-height: 280px;
    }

    .testimonial-quote blockquote {
        font-size: 1.25rem;
    }

    .fit-form {
        padding: var(--space-lg);
    }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
    .fit-hero-title .title-word,
    .fit-hero-content,
    .fit-hero-phone {
        animation: none;
    }

    .pulse-dot,
    .ai-pulse,
    .status-pulse,
    .caller-pulse,
    .call-accept {
        animation: none;
    }

    .convo-typing span {
        animation: none;
    }

    .scroll-hint svg {
        animation: none;
    }
}
