/* Enterprise Website Solution - Custom Styles */
/* Root sizing/animation tokens (color + gradients now come from global variables.css) */
:root {
    --section-padding: 120px 0;
    --animation-speed: 0.8s;
    --hero-height: 100vh;
}

/* Global Overrides */
body {
    overflow-x: hidden;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
    transform-origin: left center;
    transform: scaleX(0);
    z-index: 9999;
}

/* Page Background */
body {
    background: var(--bg-color);
}

.hero-section {
    background: var(--gradient-primary-alt, var(--primary-gradient));
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reveal-text {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: var(--hero-height);
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

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

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    animation: float 6s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(102, 126, 234, 0.9) 0%,
            rgba(118, 75, 162, 0.9) 100%);
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 600px;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    animation: float 3s ease-in-out infinite;
    z-index: 5;
}

.floating-card i {
    font-size: 1rem;
}

.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 0%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: 2s;
}

.hero-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    animation: float 6s ease-in-out infinite;
    transform: scale(0.85);
    opacity: 0;
}

.mockup-image-1 {
    margin-right: .5rem;
    animation-delay: 2s;
    width: 30%;
}

.mockup-image-2 {
    width: 70%;
    animation-delay: 3s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.scroll-arrow {
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Problem Section */
.problem-section {
    padding: var(--section-padding);
    background: var(--bg-color);
    position: relative;
    min-height: 100vh;
}

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

.problem-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all .3s ease;
    transform: translateY(0);
    opacity: 1;
}

.problem-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--bg-secondary), var(--background-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.problem-stat {
    font-weight: 700;
    color: var(--danger-color);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.problem-impact {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-danger-alt, var(--danger-gradient));
    border-radius: 20px;
    color: var(--text-light);
}

.impact-meter {
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    position: relative;
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.meter-fill {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 8px solid transparent;
    border-top-color: #fff;
    transform: rotate(0deg);
    transition: transform 2s ease;
}

.impact-text h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* Journey Section */
.journey-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--background-light));
    position: relative;
    overflow: hidden;
}

/* Horizontal Scroll Container */
.journey-timeline {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.journey-scroll-container {
    display: flex;
    align-items: center;
    height: 100%;
    width: 400vw;
    /* 4 steps * 100vw each */
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary-gradient));
    transform: translateY(-50%);
    z-index: 1;
}

.journey-step {
    position: relative;
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* padding: 0 5%; */
}

.step-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 3;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.journey-step-inner {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-content {
    flex: 1;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    margin: 0 2rem;
    transform: translateY(-20px);
}

.step-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.step-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.step-deliverables span {
    background: rgba(233, 55, 78, 0.1);
    color: var(--primary-color);
    padding: .3rem .8rem;
    border-radius: 20px;
    font-size: .9rem;
    font-weight: 600;
}

.step-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 2rem;
}

.visual-icon {
    font-size: 5rem;
    width: 150px;
    height: 150px;
    background: rgba(233, 55, 78, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--primary-color);
    transition: all .3s ease;
}

.visual-icon:hover {
    transform: scale(1.05) rotate(5deg);
    background: rgba(233, 55, 78, 0.2);
}



/* Technology Section */
.technology-section {
    padding: var(--section-padding);
    color: var(--text-light);
    min-height: 100vh;
    background: var(--bg-dark-alt);
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.tech-category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    opacity: 1;
}

.tech-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.tech-icon {
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.performance-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(1);
    opacity: 1;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: .5rem;
    color: var(--metric-green);
}

.metric-label {
    font-size: 1rem;
    opacity: 0.8;
}

/* Success Stories */
.success-section {
    padding: var(--section-padding);
    background: var(--bg-color);
    min-height: 100vh;
}

.success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.story-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px var(--shadow-light);
    transition: all .3s ease;
    transform: translateY(0);
    opacity: 1;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-medium);
}

.story-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.story-card:hover .story-overlay {
    opacity: 1;
}

.story-results {
    text-align: center;
    color: white;
}

.result {
    display: block;
    margin-bottom: 1rem;
}

.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.result-label {
    font-size: 1rem;
    opacity: 0.9;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.story-tags span {
    background: rgba(233, 55, 78, 0.1);
    color: var(--primary-color);
    padding: .3rem .8rem;
    border-radius: 15px;
    font-size: .8rem;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-secondary), var(--background-light));
    min-height: 100vh;
}

.features-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-tab {
    background: var(--card-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.feature-tab:hover,
.feature-tab.active {
    background: var(--primary-gradient);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px var(--shadow-primary);
}

.feature-content {
    position: relative;
    min-height: 400px;
}

.feature-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all .3s ease;
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px var(--shadow-light);
}

.feature-panel.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.feature-panel h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--metric-green);
    font-weight: bold;
}

.feature-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Performance Chart */
.performance-chart {
    display: flex;
    align-items: end;
    gap: 1rem;
    height: 200px;
}

.chart-bar {
    width: 60px;
    background: var(--primary-gradient);
    border-radius: 5px 5px 0 0;
    position: relative;
    transition: height 1s ease;
}

.chart-bar::after {
    content: attr(data-label);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Security Shields */
.security-shields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 250px;
}

.shield {
    aspect-ratio: 1;
    background: var(--card-bg);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.shield.active {
    background: var(--gradient-success-alt);
    color: var(--text-light);
    animation: pulse-shield 2s infinite;
}

@keyframes pulse-shield {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Analytics Dashboard */
.analytics-dashboard {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    width: 300px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
}

.trend-line {
    height: 60px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.trend-line::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Integration Network */
.integration-network {
    position: relative;
    width: 300px;
    height: 300px;
}

.central-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 2;
}

.integration-node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--card-bg);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.node-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.node-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.node-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-color);
    min-height: 100vh;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px var(--shadow-light);
    position: relative;
    transition: all .3s ease;
    transform: translateY(0);
    opacity: 1;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-medium);
}

.pricing-card.featured {
    background: var(--primary-gradient);
    color: var(--text-light);
    transform: translateY(-10px) scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--metric-green);
    color: var(--text-light);
    padding: .5rem 1.5rem;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
}

.period {
    font-size: 0.9rem;
    opacity: 0.7;
}

.plan-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.feature-item i {
    color: var(--metric-green);
    width: 20px;
}

.plan-cta {
    width: 100%;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-card:not(.featured) .plan-cta {
    background: var(--primary-gradient);
    color: var(--text-light);
}

.pricing-card.featured .plan-cta {
    background: var(--card-bg);
    color: var(--primary-color);
}

.plan-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Discovery Section */
.discovery-section {
    padding: var(--section-padding);
    background: var(--bg-dark-alt);
    color: var(--text-light);
    min-height: 100vh;
}

.discovery-form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.discovery-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-step h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--shadow-primary);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

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

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 3px;
    transition: width 0.3s ease;
    width: 25%;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.progress-step.active {
    background: var(--primary-gradient);
    color: white;
}

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

.alternative-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.alternative-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.alternative-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.alternative-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.alternative-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

.alternative-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.alternative-item a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        justify-content: center;
    }

    /* Journey Section Mobile (optimized horizontal swipe) */
    .journey-section {
        padding: 40px 0;
        background: linear-gradient(180deg, var(--bg-secondary), var(--background-light));
    }

    .journey-timeline {
        height: 60vh;
        position: relative;
        overflow: hidden;
    }

    /* Make the container horizontally scrollable with snap */
    .journey-scroll-container {
        display: flex;
        height: 100%;
        width: 400vw;
        /* 4 steps */
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .journey-step {
        width: 100vw;
        flex: 0 0 100vw;
        scroll-snap-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1.5rem;
        box-sizing: border-box;
        position: relative;
    }

    .journey-step-inner {
        flex-direction: column;
        text-align: center;
        max-width: 92%;
        margin: 0 auto;
    }

    .step-content,
    .step-visual {
        margin: 0.75rem 0;
    }

    .step-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .step-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* Timeline line stays fixed and updates via JS */
    .timeline-line {
        position: absolute;
        bottom: 8px;
        left: 8%;
        right: 8%;
        height: 4px;
        transform-origin: left center;
        z-index: 2;
        background: rgba(0, 0, 0, 0.06);
    }

    .timeline-line .fill {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0%;
        background: linear-gradient(to right, var(--primary-gradient));
        /* unchanged */
    }

    /* Hide previous desktop-only controls */
    .journey-controls {
        display: none;
    }

    .step-content {
        padding: 2rem;
    }

    .visual-icon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .journey-controls {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-section {
        min-height: 80vh;
        padding: 2rem 0;
    }

    .hero-visual {
        height: 400px;
        margin-top: 2rem;
    }

    .floating-card {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }

    .discovery-form {
        padding: 2rem 1.5rem;
    }

    .feature-tabs {
        flex-direction: column;
        align-items: center;
    }

    .feature-tab {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-stats {
        display: none;
    }

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .contact-alternatives {
        grid-template-columns: 1fr;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

/* Selection */
::selection {
    background: rgba(233, 55, 78, 0.3);
}

/* Focus States */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Keyboard Navigation Enhancement */
.keyboard-nav button:focus,
.keyboard-nav input:focus,
.keyboard-nav select:focus,
.keyboard-nav textarea:focus,
.keyboard-nav .btn:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px var(--shadow-primary);
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .floating-card,
    .hero-particles {
        animation: none !important;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}