/* Hero Section Styles */
.hero-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

[data-theme-style="dark"] .hero-section {
    background: #1a1a2e !important;
    animation: none !important;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0e0e0e;
    backdrop-filter: blur(10px);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-trust-badge {
    font-size: 1rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.9) !important;
    color: black !important;
    border: none;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Removed biolink preview styles - no longer needed */

@media (max-width: 991px) {
    .hero-section {
        padding: 4rem 0;
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .guarantees-wrapper {
        padding: 2rem 1rem;
    }
    
    .guarantee-item {
        margin-bottom: 1rem;
    }
    
    .btn-xl {
        padding: 0.875rem 2.5rem;
        font-size: 1.1rem;
    }
    
    .claim-url-section .form-control,
    .claim-url-section .input-group-text,
    .claim-url-section .custom-select {
        padding: 0.875rem 1.25rem;
        font-size: 1rem;
    }
}

@keyframes index-image-one-switch {
    33% {
        transform: scale(1.05);
        left: 3rem;
    }
    66% {
        transform: scale(0.9);
    }
    100% {
        z-index: 1;
        left: 9rem;
        transform: scale(0.9);
        filter: blur(1px);
    }
}

@keyframes index-image-two-switch {
    33% {
        right: -6rem;
        transform: scale(0.95);
    }
    66% {
        transform: scale(1.1);
        top: -2rem;
    }
    100% {
        z-index: 2;
        right: -3rem;
        top: -2rem;
        filter: blur(0px);
        transform: scale(1.05);
    }
}

.index-image {
    width: auto;
    max-height: 440px;
    position: absolute;
    transition: all 0.3s ease-out;
    border-radius: 30px;
}

.index-image-one {
    z-index: 2;
    top: -1.5rem;
    right: 11.5rem;
}

.index-image-two {
    z-index: 1;
    right: 0;
    top: -5rem;
    filter: blur(1px);
}

[dir="rtl"] .index-image-one {
    left: 3.5rem;
    right: inherit;
}

@media (min-width: 1325px) {
    .index-image {
        max-height: 440px;
    }

    .index-image-one {
        top: -1.5rem;
        left: 9rem;

        animation: index-image-one-switch 2s forwards;
        animation-delay: 2s;
    }

    .index-image-two {
        right: -3rem;
        top: -5rem;
        left: inherit;

        animation: index-image-two-switch 2s forwards;
        animation-delay: 2s;
    }

    [dir="rtl"] .index-image-one {
        animation: none;
    }

    [dir="rtl"] .index-image-two {
        animation: none;
        right: 3rem;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

/* Social Proof Section */
.social-proof-section {
    padding: 5rem 0;
}

/* Author Images */
.loved-by-section {
    margin-bottom: 2rem;
}

.author-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -10px;
    margin-bottom: 1rem;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    margin-left: -10px;
    transition: all 0.3s ease;
    object-fit: cover;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    /* Optimize external image loading */
    image-rendering: -webkit-optimize-contrast;
}

.author-img:first-child {
    margin-left: 0;
    z-index: 3;
}

.author-img:nth-child(3) {
    z-index: 2;
}

.author-img:hover {
    transform: translateY(-3px) scale(1.1);
    z-index: 10 !important;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Fallback avatar styling */
.author-avatar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.author-avatar i {
    opacity: 0.9;
}

/* Error handling for broken images */
.author-img[src=""],
.author-img:not([src]),
.author-img[src*="undefined"] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img[src=""]:before,
.author-img:not([src]):before,
.author-img[src*="undefined"]:before {
    content: "\f007";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    font-size: 20px;
}

.more-count {
    background: #28a745;
    color: white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    margin-left: -10px;
}

[data-theme-style="dark"] .author-img {
    border-color: #2d3748;
    background: #2d3748;
}

[data-theme-style="dark"] .more-count {
    border-color: #2d3748;
    background: #38a169;
}

[data-theme-style="dark"] .author-avatar {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
}

.social-proof-card {
    padding: 2rem 1rem;
    text-align: center;
}

.proof-number {
        font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.proof-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
}

.creator-types {
    margin-top: 3rem;
}

.creator-type {
    padding: 1rem;
    transition: all 0.3s ease;
}

.creator-type:hover {
    transform: translateY(-5px);
}

/* Value Proposition Section */
.value-prop-section {
    padding: 5rem 0;
}

.value-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    margin-bottom: 1.5rem;
}

/* Comparison Section */
.comparison-section {
    padding: 5rem 0;
}

[data-theme-style="dark"] .comparison-section {
    background: #1a1a2e !important;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.table-dark {
    background: transparent;
}

.table-dark th {
    border-top: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-size: 1.1rem;
}

.table-dark td {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
}

/* Tools Showcase Section */
.tools-showcase-section {
    padding: 5rem 0;
}

/* Ensure consistent section backgrounds */
[data-theme-style="dark"] .social-proof-section,
[data-theme-style="dark"] .success-stories-section,
[data-theme-style="dark"] .tools-showcase-section {
    background: #0e0e0e !important;
}

[data-theme-style="dark"] .value-prop-section,
[data-theme-style="dark"] .additional-features-section,
[data-theme-style="dark"] .feature-section.bg-light-section {
    background: #0e0e0e !important;
}

.tool-showcase-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

.tool-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tool-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.tool-showcase-card:hover .tool-icon-large {
    transform: scale(1.1);
}

/* Success Stories Section */
.success-stories-section {
    padding: 5rem 0;
}

.success-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid transparent;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary);
}

.success-stats {
    text-align: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

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

.success-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-600);
    margin-top: 0.5rem;
}

.success-quote {
    padding-top: 1.5rem;
}

.success-author {
    margin-top: 1rem;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

[data-theme-style="dark"] .final-cta-section {
    background: #2d3748 !important;
}

.cta-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.cta-features {
    margin-top: 2rem;
    opacity: 0.9;
}

/* Remove problematic gradients in dark mode */
.bg-gradient {
    background: linear-gradient(45deg, #667eea, #764ba2) !important;
}

[data-theme-style="dark"] .bg-gradient {
    background: #2d3748 !important;
}

.tool-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.tool-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Feature Section Styles */
.feature-section {
    padding: 5rem 0;
}

.feature-image-wrapper {
    position: relative;
}

.feature-content {
    padding: 2rem 0;
}

.feature-badge {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    color: var(--gray-700);
}

/* Badge Soft Colors */
.badge-primary-soft {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.badge-success-soft {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.badge-info-soft {
    background-color: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.badge-warning-soft {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

/* Statistics Section */
.stats-section {
    color: white;
}

.bg-dark-section {
    background: #343a40;
}

[data-theme-style="dark"] .bg-dark-section {
    background: #0e0e0e !important;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

[data-theme-style="dark"] .bg-primary-gradient {
    background: #0e0e0e !important;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tools Section */
.tools-section {
    padding: 5rem 0;
}

.tool-category-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.tool-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.tool-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 0;
}

.cta-buttons .btn {
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
}

/* Feature Pills */
.feature-pills-section {
    margin-top: 3rem;
}

.feature-pill {
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* CTA Button Enhancements */
.btn-xl {
    padding: 1rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.claim-url-section .input-group {
    border-radius: 50px;
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.claim-url-section .form-control {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: white;
}

.claim-url-section .input-group-text {
    padding: 1rem 1.5rem;
    font-weight: 600;
    background: white;
}

.claim-url-section .custom-select {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .feature-section {
        padding: 3rem 0;
    }
    
    .feature-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .additional-features-section {
        padding: 3rem 0;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    .social-proof-section,
    .value-prop-section,
    .feature-section,
    .stats-section,
    .tools-showcase-section,
    .success-stories-section,
    .final-cta-section,
    .additional-features-section,
    .comparison-section {
        padding: 3rem 0;
    }
    
    .phone-mockup {
        width: 240px;
        height: 480px;
        padding: 15px;
    }
    
    .biolink-demo {
        padding: 20px 15px;
    }
    
    .profile-avatar img {
        width: 60px;
        height: 60px;
    }
    
    .biolink-btn {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
    
    .proof-number {
        font-size: 2rem;
    }
    
    .success-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
}

/* Image Enhancements */
.rounded-lg {
    border-radius: 15px !important;
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Button Enhancements */
.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Additional Features Section */
.additional-features-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.additional-feature-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.additional-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* CTA Enhancements */
.cta-pulse {
    animation: pulse-glow 2s infinite;
    position: relative;
    overflow: hidden;
}

.cta-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.cta-pulse:hover::before {
    left: 100%;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 193, 7, 0.6), 0 0 40px rgba(255, 193, 7, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 193, 7, 0.4);
    }
}

/* Hero Guarantees */
.hero-guarantees {
    margin-top: 3rem;
}

.guarantees-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Simplified Guarantees */
.simple-guarantees {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: left;
}

.guarantee-simple {
    color: white;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
}

.guarantee-simple i {
    font-size: 1.2rem;
    margin-right: 0.75rem;
    min-width: 20px;
}

[data-theme-style="dark"] .guarantee-simple {
    color: #e2e8f0;
}

@media (max-width: 767px) {
    .guarantee-simple {
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Dark Theme Support */
[data-theme-style="dark"] .hero-section {
    background: #0e0e0e !important;
}

/* Biolink Button Colors */
.bg-instagram {
    background: #E4405F !important;
}

[data-theme-style="dark"] .bg-instagram {
    background: #C13584 !important;
}

/* Consistent Background System */
.bg-light-section {
    background: #f8f9fa;
}

[data-theme-style="dark"] .bg-light-section {
    background: #0e0e0e !important;
}

/* Default section background (white) */
.py-5:not([class*="bg-"]) {
    background: white;
}

[data-theme-style="dark"] .py-5:not([class*="bg-"]) {
    background: #0e0e0e !important;
}

/* Text Classes for Dark Mode */
.text-dark-mode {
    color: var(--dark);
}

[data-theme-style="dark"] .text-dark-mode {
    color: #e2e8f0 !important;
}

.text-muted-dark {
    color: #6c757d;
}

[data-theme-style="dark"] .text-muted-dark {
    color: #a0aec0 !important;
}

/* Remove individual section dark mode styles - now handled by consistent system */

/* Card Dark Mode Styles */
[data-theme-style="dark"] .value-card {
    background: #2d3748 !important;
    color: #e2e8f0 !important;
}

[data-theme-style="dark"] .tool-showcase-card {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
    color: #e2e8f0 !important;
}

[data-theme-style="dark"] .success-card {
    background: #2d3748 !important;
    color: #e2e8f0 !important;
    border-color: #4a5568 !important;
}

[data-theme-style="dark"] .additional-feature-card {
    background: #2d3748 !important;
    border-color: #4a5568 !important;
    color: #e2e8f0 !important;
}

[data-theme-style="dark"] .social-proof-card {
    color: #e2e8f0 !important;
}

[data-theme-style="dark"] .proof-label {
    color: #a0aec0 !important;
}

/* Creator Type Dark Mode */
[data-theme-style="dark"] .creator-type {
    color: #e2e8f0 !important;
}

/* Additional Dark Mode Fixes */
[data-theme-style="dark"] .stats-section {
    background: #0e0e0e !important;
}

[data-theme-style="dark"] .stat-item {
    color: #e2e8f0 !important;
}

[data-theme-style="dark"] .stat-number {
    color: #e2e8f0 !important;
}

[data-theme-style="dark"] .stat-label {
    color: #a0aec0 !important;
}

/* Removed phone mockup dark mode styles - no longer needed */

/* Remove all problematic animations in dark mode */
[data-theme-style="dark"] * {
    animation-play-state: running !important;
}

[data-theme-style="dark"] .hero-section::before {
    background: #0e0e0e !important;
}

/* Ensure all text is readable in dark mode */
[data-theme-style="dark"] .text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

[data-theme-style="dark"] .text-white-75 {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Fix any remaining gradient issues */
[data-theme-style="dark"] .cta-background-shapes .shape {
    background: rgba(255, 255, 255, 0.05) !important;
}

.index-fade {
    position: absolute;
    background: linear-gradient(0deg, var(--body-bg), hsla(0, 0%, 100%, 0)) !important;
    bottom: 0;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
}

/* Index testimonial */
.index-testimonial-avatar {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    transform: translateY(-70%);
    border: 4px solid var(--white);
    position: absolute;
    left: 50%;
    margin-left: -52px;
}

/* Index FAQ */
.index-faq svg {
    transition: all .15s;
    color: var(--primary-800);
}

/* Timeline */
.index-timeline {
    position: relative;
}

.index-timeline::before {
    content: '';
    position: absolute;
    border-left: 2px solid var(--gray-200);
    height: 100%;
    left: calc(57px / 2);
}

/* Index call to action */

.index-cta a.btn {
    color: white;
    background: var(--dark);
    border-color: var(--dark);
    padding: 1.1rem 4rem;
    font-size: 1.15rem;
}

.index-cta a.btn:hover {
    background: var(--primary-900);
    border-color: var(--primary-900);
}

[data-theme-style="dark"] .index-cta a.btn {
    background: var(--light);
    border-color: var(--light);
}

/* Gradient text */
.text-gradient-primary {
    background: linear-gradient(135deg, var(--gradient-one), var(--gradient-two));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gradient background */
.bg-gradient-animated {
    animation: bg-gradient-animation 3s ease infinite alternate !important;
    background: linear-gradient(60deg,#f79533,#f37055,#ef4e7b,#a166ab,#5073b8,#1098ad,#07b39b,#6fba82);
    background-size: 300% 300%;
}

[data-theme-style="dark"] .bg-gradient-animated {
    background: #2d3748 !important;
    animation: none !important;
}

@keyframes bg-gradient-animation {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

/* ============================================
   MODERN GUEST HEADER STYLES
   ============================================ */

/* Modern Guest Header Container */
.modern-guest-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    padding: 1rem 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-guest-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

/* Modern Logo Styling */
.modern-logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.modern-logo:hover {
    color: var(--primary);
    transform: translateY(-1px);
    text-decoration: none;
}

.modern-logo .logo-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.modern-logo img {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.modern-logo:hover img {
    transform: scale(1.05);
}

/* Modern Navigation Links */
.modern-nav {
    align-items: center;
}

.modern-nav-link {
    color: #4a5568 !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1rem !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    margin: 0 0.25rem;
}

.modern-nav-link:hover {
    color: var(--primary) !important;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
    text-decoration: none;
}

.modern-nav-link i {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.modern-nav-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Modern Mobile Toggle */
.modern-toggle {
    border: none;
    background: transparent;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.modern-toggle:hover {
    background: rgba(102, 126, 234, 0.1);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #4a5568;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.modern-toggle:hover .hamburger-line {
    background: var(--primary);
}

.modern-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.modern-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.modern-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Modern Sign Up Button with Hero Gradient */
.modern-btn-signup {
    background: var(--gradient, linear-gradient(84deg, #CA55F3 -2.71%, #FF53A5 31.8%, #FF763C 81.33%, #FFF859 104.15%));
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.modern-btn-signup::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 ease;
}

.modern-btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    text-decoration: none;
    color: white;
}

.modern-btn-signup:hover::before {
    left: 100%;
}

.modern-btn-signup:active {
    transform: translateY(0);
}

/* Dark Mode Styles for Modern Header */
[data-theme-style="dark"] .modern-guest-header {
    background: rgba(26, 26, 46, 0.95);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

[data-theme-style="dark"] .modern-guest-header::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

[data-theme-style="dark"] .modern-logo {
    color: #e2e8f0;
}

[data-theme-style="dark"] .modern-logo:hover {
    color: #a0aec0;
}

[data-theme-style="dark"] .modern-nav-link {
    color: #a0aec0 !important;
}

[data-theme-style="dark"] .modern-nav-link:hover {
    color: #667eea !important;
    background: rgba(102, 126, 234, 0.2);
}

[data-theme-style="dark"] .hamburger-line {
    background: #a0aec0;
}

[data-theme-style="dark"] .modern-toggle:hover .hamburger-line {
    background: #667eea;
}

/* Dark mode styles for signup button remain the same since gradient works in both themes */

/* Responsive Design */
@media (max-width: 991.98px) {
    .modern-guest-header {
        border-radius: 15px;
        margin-bottom: 1.5rem;
        padding: 0.75rem 0;
    }
    
    .modern-nav-link {
        padding: 0.5rem 0.75rem !important;
        margin: 0.25rem 0;
        border-radius: 8px;
    }
    
    .modern-btn-signup {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    .modern-logo {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .modern-guest-header {
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .modern-btn-signup {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .modern-logo {
        font-size: 1.2rem;
    }
    
    .modern-nav-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem !important;
    }
}

/* ============================================
   END MODERN GUEST HEADER STYLES
   ============================================ */

/* ============================================
   MODERN CLAIM URL SECTION STYLES
   ============================================ */

/* Modern Claim Section Container */
.modern-claim-section {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.modern-claim-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.5), transparent);
}

/* Section Headers */
.claim-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.claim-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 0;
}

/* Modern Input Group */
.modern-input-group {
    position: relative;
}

.input-container {
    display: flex;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: all 0.3s ease;
}

.input-container:focus-within {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

/* Domain Selector */
.domain-selector {
    flex-shrink: 0;
    position: relative;
}

.modern-domain-select {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: none;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
    border-radius: 0;
    border-right: 1px solid rgba(102, 126, 234, 0.1);
    min-width: 200px;
    transition: all 0.3s ease;
}

.modern-domain-select:focus {
    outline: none;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
}

.domain-display {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
    border-right: 1px solid rgba(102, 126, 234, 0.1);
    min-width: 200px;
    display: flex;
    align-items: center;
}

/* URL Input Container */
.url-input-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.modern-url-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #2d3748;
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
}

.modern-url-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.modern-url-input:focus {
    color: #2d3748;
}

.input-decoration {
    padding: 1rem 1.5rem;
    color: #a0aec0;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.input-container:focus-within .input-decoration {
    color: #667eea;
    transform: scale(1.1);
}


/* Dark Mode Styles */
[data-theme-style="dark"] .modern-claim-section {
    background: rgba(26, 26, 46, 0.8);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

[data-theme-style="dark"] .modern-claim-section::before {
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
}

[data-theme-style="dark"] .claim-title {
    color: #e2e8f0;
}

[data-theme-style="dark"] .claim-subtitle {
    color: #a0aec0;
}

[data-theme-style="dark"] .input-container {
    background: #2d3748;
    border-color: rgba(102, 126, 234, 0.2);
}

[data-theme-style="dark"] .input-container:focus-within {
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

[data-theme-style="dark"] .modern-domain-select {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: #e2e8f0;
    border-right-color: rgba(102, 126, 234, 0.2);
}

[data-theme-style="dark"] .modern-domain-select:focus {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
}

[data-theme-style="dark"] .domain-display {
    background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
    color: #e2e8f0;
    border-right-color: rgba(102, 126, 234, 0.2);
}

[data-theme-style="dark"] .modern-url-input {
    color: #e2e8f0;
}

[data-theme-style="dark"] .modern-url-input::placeholder {
    color: #718096;
}

[data-theme-style="dark"] .input-decoration {
    color: #718096;
}

[data-theme-style="dark"] .input-container:focus-within .input-decoration {
    color: #667eea;
}


/* Responsive Design */
@media (max-width: 991.98px) {
    .modern-claim-section {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .input-container {
        flex-direction: column;
        border-radius: 12px;
    }
    
    .modern-domain-select,
    .domain-display {
        border-right: none;
        border-bottom: 1px solid rgba(102, 126, 234, 0.1);
        min-width: auto;
    }
    
    .claim-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .modern-claim-section {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .modern-domain-select,
    .domain-display,
    .modern-url-input {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .input-decoration {
        padding: 0.875rem 1rem;
    }
    
    .claim-title {
        font-size: 1.2rem;
    }
    
    .claim-subtitle {
        font-size: 0.9rem;
    }
    
}

/* ============================================
   END MODERN CLAIM URL SECTION STYLES
   ============================================ */
