/* Import style.css variables and base styles */
@import url('style.css');

/* ===== HOME PAGE SPECIFIC STYLES ===== */

/* Global Section Fixes */
section {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.container {
    position: relative;
    z-index: 2;
}

/* Enhanced Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--scroll-progress, 0%);
    height: 3px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    z-index: 1040;
    transition: width 0.1s ease;
}

/* Enhanced Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a7a 100%);
    color: var(--neutral-light);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    z-index: 3;
    margin-bottom: 0 !important;
    transform: none !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.stat-number1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 0.25rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(40, 213, 232, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(246, 22, 77, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(241, 164, 58, 0.1) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

/* Enhanced Network Background */
.hero-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.network-node {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-teal);
    animation: pulseNode 4s ease-in-out infinite;
}

.network-node.node-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.network-node.node-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    background: var(--primary-pink);
    animation-delay: 1s;
}

.network-node.node-3 {
    width: 10px;
    height: 10px;
    top: 40%;
    left: 25%;
    background: var(--primary-orange);
    animation-delay: 2s;
}

.network-node.node-4 {
    width: 7px;
    height: 7px;
    top: 75%;
    left: 45%;
    animation-delay: 3s;
}

.network-node.node-5 {
    width: 5px;
    height: 5px;
    top: 30%;
    left: 70%;
    background: var(--primary-pink);
    animation-delay: 4s;
}

.network-line {
    position: absolute;
    background: linear-gradient(90deg, var(--primary-teal), transparent);
    height: 1px;
    transform-origin: left center;
    animation: lineFlow 6s linear infinite;
}

.network-line.line-1 {
    top: 20%;
    left: 15%;
    width: 100px;
    transform: rotate(30deg);
    animation-delay: 0s;
}

.network-line.line-2 {
    top: 60%;
    left: 80%;
    width: 80px;
    transform: rotate(-45deg);
    background: linear-gradient(90deg, var(--primary-pink), transparent);
    animation-delay: 2s;
}

.network-line.line-3 {
    top: 40%;
    left: 25%;
    width: 120px;
    transform: rotate(15deg);
    animation-delay: 4s;
}

.network-line.line-4 {
    top: 75%;
    left: 45%;
    width: 90px;
    transform: rotate(-30deg);
    animation-delay: 1s;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal), transparent);
    opacity: 0.1;
    animation: shapeRotate 30s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    background: linear-gradient(135deg, var(--primary-pink), transparent);
    animation-delay: 10s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 20%;
    background: linear-gradient(135deg, var(--primary-orange), transparent);
    animation-delay: 20s;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    animation: badgeFloat 3s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem !important;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: highlightReveal 1.5s ease 0.5s forwards;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 800px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary) !important;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
    filter: brightness(1.05) contrast(1.1);
}

.hero-image:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.6);
}

.visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--primary-teal) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(40px);
    z-index: 1;
    animation: glowPulse 4s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    animation: floatElement 6s ease-in-out infinite;
    transition: all var(--transition-normal);
}

.floating-element:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.element-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.element-3 {
    bottom: 30%;
    right: 15%;
    animation-delay: 4s;
}

.floating-element .element-icon {
    flex-shrink: 0;
}

.floating-element p {
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-teal), transparent);
    border-radius: 1px;
}

/* Sections Common */
.section-padding {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    border-radius: 2px;
}

.section-header.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Stats Section */
.stats-section {
    background: var(--background-light);
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.stat-card {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--neutral-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 37, 88, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon-wrapper {
    margin-bottom: 1.5rem;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--neutral-light);
    transition: all var(--transition-normal);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--background-light);
    margin-bottom: 0.5rem;
    transition: all var(--transition-normal);
}

.stat-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.stat-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    margin: 0 auto;
    border-radius: 2px;
    transition: width var(--transition-normal);
}

.stat-card:hover .stat-line {
    width: 60px;
}

/* Enhanced Benefits Section */
.benefits-section {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.benefit-card {
    background: var(--neutral-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 37, 88, 0.1);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.benefit-card:hover::before {
    opacity: 0.05;
}

.benefit-icon-wrapper {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all var(--transition-normal);
}

.benefit-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.benefit-card:hover .benefit-icon::before {
    opacity: 1;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--neutral-light);
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all var(--transition-normal);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.benefit-card:hover h4 {
    color: var(--primary-dark);
}

/* Empowering Business Section */
.empowering-section {
    background: var(--background-light);
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--neutral-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 37, 88, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.feature-card-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-teal);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-card-icon {
    transform: scale(1.2);
    color: var(--primary-pink);
}

.feature-card h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color var(--transition-normal);
}

.feature-card:hover h5 {
    color: var(--primary-pink);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Top Features Section */
.top-features-section {
    background: var(--background);
    position: relative;
    z-index: 2;
}

.feature-highlight {
    background: var(--neutral-light);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 37, 88, 0.1);
}

.feature-highlight:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.feature-highlight-icon {
    margin-bottom: 2rem;
    color: var(--primary-teal);
    transition: all var(--transition-normal);
}

.feature-highlight:hover .feature-highlight-icon {
    transform: scale(1.1);
    color: var(--primary-pink);
}

.feature-highlight h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-highlight p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Expertise Section */
.expertise-section {
    background: var(--background-light);
    position: relative;
    z-index: 2;
}

.expertise-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 3rem 2.5rem;
    background: var(--neutral-light);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(11, 37, 88, 0.1);
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.expertise-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 70px;
    height: 70px;
    background: var(--background-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    z-index: 2;
    color: var(--primary-teal);
    transition: all var(--transition-normal);
}

.expertise-card:hover .expertise-icon {
    transform: scale(1.1);
    color: var(--primary-pink);
}

.expertise-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.expertise-card:hover .expertise-icon::before {
    opacity: 1;
}

.expertise-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.expertise-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: color var(--transition-normal);
}

.expertise-card:hover .expertise-content h4 {
    color: var(--primary-pink);
}

.expertise-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Enhanced Process Section */
.process-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a7a 100%);
    color: var(--neutral-light);
    position: relative;
    z-index: 2;
}

.process-section .section-title,
.process-section .section-subtitle {
    color: var(--neutral-light);
}

.process-section .section-title::after {
    background: linear-gradient(135deg, var(--primary-teal), var(--neutral-light));
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-teal), var(--primary-pink));
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
    width: 100%;
}

/* Even steps (2, 4, 6) - Right side */
.process-step:nth-child(even) {
    justify-content: flex-start;
}

.process-step:nth-child(even) .step-content {
    margin-left: 3rem;
    text-align: left;
}

.process-step:nth-child(even) .step-number {
    order: -1;
    margin-right: 2rem;
}

/* Odd steps (1, 3, 5) - Left side */
.process-step:nth-child(odd) {
    justify-content: flex-end;
}

.process-step:nth-child(odd) .step-content {
    margin-right: 3rem;
    text-align: right;
    order: -1;
}

.process-step:nth-child(odd) .step-number {
    margin-left: 2rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-light);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--primary-dark);
    transition: all var(--transition-normal);
    cursor: pointer;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(40, 213, 232, 0.4);
}

.step-content {
    flex: 0 0 45%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-pink));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 1;
}

.step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-content:hover::before {
    opacity: 0.05;
}

.step-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.step-content p {
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Enhanced CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--primary-orange) 100%);
    color: var(--neutral-light);
    text-align: center;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: gradientShift 8s ease-in-out infinite;
}

.cta-network {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-primary {
    background: var(--primary-dark);
    color: var(--neutral-light);
    border: 2px solid var(--primary-dark);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.cta-section .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-section .btn-primary:hover::before {
    left: 100%;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(11, 37, 88, 0.3);
}

/* Enhanced Animations */
@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulseNode {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

@keyframes lineFlow {
    0% {
        transform: scaleX(0) rotate(var(--rotation, 0deg));
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: scaleX(1) rotate(var(--rotation, 0deg));
        opacity: 0;
    }
}

@keyframes shapeRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes badgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes highlightReveal {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.15;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .container {
        max-width: 1320px;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .process-step:nth-child(even) .step-content,
    .process-step:nth-child(odd) .step-content {
        flex: 0 0 50%;
    }
}

/* Tablet */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-section {
        padding: 7rem 0 3rem;
        text-align: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    /* Process Timeline Tablet */
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        flex-direction: row !important;
        justify-content: flex-start !important;
    }
    
    .process-step .step-content {
        flex: 1;
        margin-left: 3rem !important;
        margin-right: 0 !important;
        text-align: left !important;
        order: 2 !important;
    }
    
    .process-step .step-number {
        order: 1 !important;
        margin-right: 2rem !important;
        margin-left: 0 !important;
    }
    
    .floating-element {
        display: none;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 0 2rem;
        padding-top: 80px !important;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-card,
    .benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .process-timeline {
        padding: 0 1rem;
    }
    
    .process-step .step-content {
        padding: 1.5rem;
        margin-left: 2rem !important;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    .btn-nav-cta {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .feature-highlight,
    .benefit-card,
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .process-timeline::before {
        left: 20px;
    }
    
    .process-step .step-content {
        margin-left: 1.5rem !important;
        padding: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        margin-right: 1rem !important;
    }
}

/* Ensure all sections have proper background stacking */
.stats-section,
.benefits-section,
.process-section,
.cta-section {
    background-attachment: scroll !important;
}

/* Fix for any potential margin issues */
.container-fluid,
.container {
    overflow: visible !important;
}

/* Ensure proper content flow */
main {
    position: relative;
    z-index: 1;
}

/* Additional safety for mobile devices */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .row {
        margin-left: -7.5px;
        margin-right: -7.5px;
    }
    
    .col, [class*="col-"] {
        padding-left: 7.5px;
        padding-right: 7.5px;
    }
}

/* Enhanced reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Enhanced print styles */
@media print {
    .navbar,
    .hero-scroll-indicator,
    .scroll-to-top,
    .scroll-progress {
        display: none !important;
    }
    
    .hero-section {
        background: white !important;
        color: black !important;
    }
    
    .section-padding {
        padding: 2rem 0 !important;
    }
}