/* Atlas Solutions - Main Stylesheet */
/* CSS Variables */
:root {
    --primary-blue: #1E60D5;
    --navy-dark: #101828;
    --white: #FFFFFF;
    --light-blue: #E8F4FD;
    --gold: #FFBF00;
    --text-gray: #667085;
    --border-gray: #D0D5DD;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-option {
    padding: 6px 10px;
    border: none;
    background: transparent;
    color: var(--navy-dark);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

.lang-option:hover {
    background: var(--light-blue);
}

.lang-option.active {
    background: var(--primary-blue);
    color: var(--white);
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--navy-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 24px 120px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 24, 40, 0.85) 0%, rgba(16, 24, 40, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--white);
    margin-bottom: 24px;
}

.rating {
    margin-bottom: 32px;
}

.stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.star {
    color: var(--gold);
    font-size: 20px;
}

.rating-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button Styles */
.cta-button {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    background: var(--white);
    color: var(--navy-dark);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-main {
    font-size: 16px;
    font-weight: 600;
}

.cta-sub {
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 4px;
}

.cta-dark {
    background: var(--navy-dark);
    color: var(--white);
}

.cta-dark .cta-sub {
    color: rgba(255, 255, 255, 0.6);
}

.cta-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.cta-outline .cta-sub {
    color: rgba(255, 255, 255, 0.6);
}

/* Wave Dividers */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
}

.wave-blue-up {
    top: 0;
    bottom: auto;
}

/* Lead Section */
.lead-section {
    background: var(--primary-blue);
    padding: 80px 0 120px;
    position: relative;
}

.lead-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.lead-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.form-group input {
    padding: 14px 16px;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group input::placeholder {
    color: #98A2B3;
}

.phone-input {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    background: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.phone-input:focus-within {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(30, 96, 213, 0.1);
}

.country-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    background: #F9FAFB;
    border-right: 1px solid var(--border-gray);
    user-select: none;
    flex-shrink: 0;
}

.flag-icon {
    width: 20px;
    height: auto;
    display: block;
    border-radius: 2px;
}

.country-code {
    font-size: 14px;
    font-weight: 500;
    color: var(--navy-dark);
    white-space: nowrap;
}

/* Ensure the nested input doesn't have its own border or redundant styles */
.phone-input input {
    flex: 1;
    border: none !important;
    padding: 14px 16px;
    background: transparent !important;
    width: 100%;
    margin: 0;
    height: auto;
    font-size: 16px;
    box-shadow: none !important;
}

.phone-input input:focus {
    outline: none;
    border: none !important;
}

.submit-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #1A52B8;
}

.btn-main {
    font-size: 16px;
    font-weight: 600;
}

.btn-sub {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
}

/* Specialist Card */
.specialist-wrapper {
    color: var(--white);
}

.specialist-card {
    display: flex;
    flex-direction: column;
}

.specialist-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 12px;
}

.specialist-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialist-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.specialist-title {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
}

.specialist-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.specialist-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 12px;
}

/* Stats Section */
.stats-section {
    background: var(--navy-dark);
    padding: 80px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.stats-text {
    color: var(--white);
}

.stats-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.stats-description {
    font-size: 16px;
    opacity: 0.85;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(30, 96, 213, 0.3);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* How We Work Section */
.how-section {
    background: var(--white);
    padding: 80px 0 160px;
    position: relative;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--navy-dark);
}

.section-title.dark {
    color: var(--navy-dark);
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-subtitle.dark {
    color: var(--text-gray);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.process-card {
    background: var(--navy-dark);
    border-radius: 16px;
    padding: 32px 24px;
    color: var(--white);
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    opacity: 0.3;
    margin-bottom: 16px;
}

.process-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.process-description {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* CTA Section with Avatars */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
}

.cta-section.light-bg {
    background: var(--light-blue);
    padding: 48px 24px;
    margin-top: 48px;
}

.review-avatars {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -12px;
    object-fit: cover;
}

.avatar:first-child {
    margin-left: 0;
}

.review-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-stars {
    color: #94A3B8;
    font-size: 14px;
}

.review-stars.dark {
    color: var(--gold);
}

.review-text {
    font-size: 14px;
    color: var(--text-gray);
}

.review-text.dark {
    color: var(--navy-dark);
}

.review-count {
    color: var(--primary-blue);
}

/* Differentiator Section */
.diff-section {
    background: var(--primary-blue);
    padding: 80px 0 120px;
    position: relative;
}

.diff-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.diff-text {
    color: var(--white);
}

.diff-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.diff-description {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 32px;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.diff-card {
    background: var(--navy-dark);
    border-radius: 12px;
    padding: 24px;
    color: var(--white);
}

.diff-icon {
    width: 48px;
    height: 48px;
    background: rgba(30, 96, 213, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.diff-icon svg {
    color: var(--white);
}

.diff-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.diff-card-desc {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.5;
}

/* Featured Section */
.featured-section {
    background: var(--light-blue);
    padding: 48px 0;
    overflow: hidden;
}

.featured-title {
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    color: var(--navy-dark);
}

/* Marquee Styles */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--light-blue), transparent);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--light-blue), transparent);
}

.marquee-track {
    display: flex;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
    flex-shrink: 0;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Individual Logo Styles */
.logo-ft {
    font-family: 'Times New Roman', Georgia, serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
    color: #333;
}

.logo-yahoo {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    color: #6001d2;
}

.yahoo-finance {
    color: #000;
    font-weight: 500;
    margin-left: 2px;
}

.logo-coindesk {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 22px;
    color: #1a1a1a;
}

.coindesk-icon {
    color: #f7931a;
    font-size: 18px;
}

.logo-bbc {
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 28px;
    color: #000;
    letter-spacing: 2px;
}

.logo-bloomberg {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    color: #000;
    letter-spacing: -0.5px;
}

.logo-techcrunch {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    color: #0a9e01;
}

.tc-icon {
    background: #0a9e01;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 700;
    margin-right: 4px;
}

.logo-forbes {
    font-family: 'Georgia', serif;
    font-weight: 400;
    font-size: 28px;
    font-style: italic;
    color: #000;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--light-blue);
    padding: 80px 0 48px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.testimonial-rating {
    color: var(--navy-dark);
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--navy-dark);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-dark);
}

.author-location {
    font-size: 14px;
    color: var(--text-gray);
}

/* Timeline Section */
.timeline-section {
    background: var(--white);
    padding: 80px 0;
}

.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-blue);
}

.timeline-item {
    position: relative;
    padding-bottom: 48px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -36px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--primary-blue);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-blue);
}

.timeline-content {
    padding-left: 24px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.timeline-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.timeline-desc {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: var(--light-blue);
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(30, 96, 213, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy-dark);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
}

.faq-icon {
    font-size: 12px;
    color: var(--primary-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 64px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 64px;
    padding-bottom: 48px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.footer-description {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.footer-copyright {
    font-size: 14px;
    opacity: 0.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

.footer-column li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.contact-icon {
    font-size: 14px;
}

/* Footer Disclaimer */
.footer-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    padding: 24px 0;
    text-align: center;
}

.footer-disclaimer h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-disclaimer p {
    font-size: 12px;
    opacity: 0.7;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto 12px;
}

.imprint-link {
    font-size: 14px;
    color: var(--primary-blue);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .lead-container {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .diff-container {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        gap: 24px;
    }

    .logo-item {
        height: 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-title {
        font-size: 28px;
    }

    .diff-title {
        font-size: 28px;
    }

    .specialist-heading {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 16px 100px;
    }

    .hero-title {
        font-size: 28px;
    }

    .cta-button {
        width: 100%;
        padding: 14px 24px;
    }

    .stat-number {
        font-size: 24px;
    }

    .timeline-title {
        font-size: 20px;
    }
}

/* Multi-Step Modal */
.step-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.step-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
}

.step-modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
}

.step-page {
    display: none;
    animation: fadeIn 0.3s ease;
}

.step-page.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    line-height: 1.3;
}

.step-input-wrapper {
    margin-bottom: 32px;
}

.step-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: var(--font-family);
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    outline: none;
    transition: background 0.3s ease;
}

.step-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.step-input:focus {
    background: rgba(255, 255, 255, 0.25);
}

.step-textarea {
    min-height: 120px;
    resize: vertical;
}

.step-next-btn,
.step-submit-btn {
    display: inline-block;
    padding: 14px 48px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-family);
    background: var(--white);
    color: var(--navy-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-next-btn:hover,
.step-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Sun Loader Animation */
.step-loading-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sun-loader {
    width: 60px;
    height: 60px;
    background: #22C55E;
    border-radius: 50%;
    position: relative;
    animation: pulse 1.5s ease-in-out infinite;
}

.sun-loader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 -40px 0 -20px rgba(34, 197, 94, 0.6),
        28px -28px 0 -20px rgba(34, 197, 94, 0.6),
        40px 0 0 -20px rgba(34, 197, 94, 0.6),
        28px 28px 0 -20px rgba(34, 197, 94, 0.6),
        0 40px 0 -20px rgba(34, 197, 94, 0.6),
        -28px 28px 0 -20px rgba(34, 197, 94, 0.6),
        -40px 0 0 -20px rgba(34, 197, 94, 0.6),
        -28px -28px 0 -20px rgba(34, 197, 94, 0.6);
    animation: sunRays 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes sunRays {

    0%,
    100% {
        box-shadow:
            0 -40px 0 -18px rgba(34, 197, 94, 0.6),
            28px -28px 0 -18px rgba(34, 197, 94, 0.6),
            40px 0 0 -18px rgba(34, 197, 94, 0.6),
            28px 28px 0 -18px rgba(34, 197, 94, 0.6),
            0 40px 0 -18px rgba(34, 197, 94, 0.6),
            -28px 28px 0 -18px rgba(34, 197, 94, 0.6),
            -40px 0 0 -18px rgba(34, 197, 94, 0.6),
            -28px -28px 0 -18px rgba(34, 197, 94, 0.6);
    }

    50% {
        box-shadow:
            0 -50px 0 -15px rgba(34, 197, 94, 0.8),
            35px -35px 0 -15px rgba(34, 197, 94, 0.8),
            50px 0 0 -15px rgba(34, 197, 94, 0.8),
            35px 35px 0 -15px rgba(34, 197, 94, 0.8),
            0 50px 0 -15px rgba(34, 197, 94, 0.8),
            -35px 35px 0 -15px rgba(34, 197, 94, 0.8),
            -50px 0 0 -15px rgba(34, 197, 94, 0.8),
            -35px -35px 0 -15px rgba(34, 197, 94, 0.8);
    }
}

/* Success Icon */
.step-success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: #22C55E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.step-success-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.step-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}