/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}
html, body {
    width: 100%;
    overflow-x: hidden; /* Applies to both to ensure mobile compliance */
    position: relative; /* Helps contain absolute elements */
    scroll-behavior: smooth;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* LinkedIn Color Palette */
:root {
    --primary-blue: #0077b5;
    --light-blue: #004182;
    --accent-blue: #00a0dc;
    --dark-blue: #004182;
    --text-gray: #666;
    --light-gray: #f3f2ef;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
    --gradient: linear-gradient(135deg, #0077b5 0%, #004182 100%);
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}


/* Hero Section */
.hero {
    background: var(--gradient);
    color: white;
    padding: 100px 0 50px;
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent 0%, var(--light-gray) 100%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #dc2626;
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-full {
    width: 100%;
    justify-self: stretch;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.linkedin-graphic {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.linkedin-icon {
    font-size: 8rem;
    color: white;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.element i {
    font-size: 1.5rem;
    color: white;
}

.element-1 {
    top: 20%;
    right: 10%;
    animation: float 2s ease-in-out infinite;
}

.element-2 {
    bottom: 30%;
    left: 0%;
    animation: float 2.5s ease-in-out infinite reverse;
}

.element-3 {
    top: 60%;
    right: 20%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-blue);
    position: relative;
    display: inline-block;
    width: 100%;
}

/* Animated underline for How It Works title */
.how-it-works .section-title {
    animation: titleSlideIn 1s ease-out;
}

.how-it-works .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue), var(--primary-blue));
    border-radius: 2px;
    animation: underlineExpand 1.5s ease-out 0.5s forwards;
}

.how-it-works .section-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 8px;
    background: linear-gradient(90deg, rgba(0, 119, 181, 0.2), rgba(0, 160, 220, 0.2), rgba(0, 119, 181, 0.2));
    border-radius: 4px;
    animation: underlineGlow 1.5s ease-out 0.7s forwards;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineExpand {
    0% {
        width: 0;
    }

    100% {
        width: 120px;
    }
}

@keyframes underlineGlow {
    0% {
        width: 0;
    }

    100% {
        width: 140px;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0 120px;
    background: var(--light-gray);
    margin-top: 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 80px;
}

.step {
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 119, 181, 0.1);
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.step:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 119, 181, 0.15);
    border-color: var(--primary-blue);
}

.step:hover::before {
    transform: scaleX(1);
}

.step:nth-child(1) {
    animation: slideInLeft 0.6s ease-out 0.2s both;
}

.step:nth-child(2) {
    animation: slideInUp 0.6s ease-out 0.4s both;
}

.step:nth-child(3) {
    animation: slideInRight 0.6s ease-out 0.6s both;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2.5rem;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, var(--primary-blue), var(--accent-blue), var(--primary-blue));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 119, 181, 0.4);
}

.step:hover .step-icon::before {
    opacity: 1;
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    border: 3px solid white;
    z-index: 10;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.6);
}

.step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-blue);
    position: relative;
    transition: color 0.3s ease;
}

.step:hover h3 {
    color: var(--primary-blue);
}

.step h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.4s ease;
}

.step:hover h3::after {
    width: 60px;
}

.step p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.step:hover p {
    color: #4a5568;
}

/* Card entrance animations */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Add connecting lines between cards */
.steps-container {
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-blue) 25%, var(--primary-blue) 75%, transparent 100%);
    z-index: 0;
    opacity: 0.3;
}

.step {
    z-index: 1;
}

/* Video Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
    position: relative;
}

/* Stats Counter Section */
.stats-counters {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 40px 0 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    display: block;
    margin-bottom: 8px;
    min-height: 40px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(55, 65, 81, 0.8);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

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

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 119, 181, 0.15);
    border-color: var(--primary-blue);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 119, 181, 0.1) 0%, rgba(0, 160, 220, 0.1) 100%);
    transition: opacity 0.3s ease;
}

.video-placeholder:hover::before {
    opacity: 0.8;
}

.play-button {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    background: white;
    box-shadow: 0 6px 25px rgba(0, 119, 181, 0.3);
}

.play-button i {
    margin-left: 3px;
    /* Center the play icon */
}

.video-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-content {
    padding: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.client-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.client-details p {
    color: var(--text-gray);
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.company {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 20px 15px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue) 100%);
    color: white;
    transform: translateY(-3px);
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.stat:hover .stat-number {
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat:hover .stat-label {
    color: white;
}

/* Animation for testimonial cards */
.testimonial-card:nth-child(1) {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.testimonial-card:nth-child(2) {
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.testimonial-card:nth-child(3) {
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: white;
    display: none;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing.visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.pricing.visible .pricing-container {
    animation: slideInCards 0.6s ease-out 0.3s both;
}

@keyframes slideInCards {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 0 20px;
    perspective: 1000px;
}

.pricing-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 48px 36px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    backdrop-filter: blur(20px);
    cursor: pointer;
    
}

/* Add subtle shimmer effect */
.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    opacity: 0;
    transition: all 0.8s ease;
    transform: rotate(45deg);
    pointer-events: none;
}

.pricing-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-out infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Enhance card icon animations */
.pricing-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 32px rgba(0, 119, 181, 0.25),
        inset 0 2px 0 rgba(255, 255, 255, 0.6);
}

.pricing-card.featured:hover .card-icon {
    transform: scale(1.2) rotate(-5deg);
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 32px 64px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 119, 181, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 119, 181, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #f0f9ff 100%);
}

.pricing-card.featured {
    transform: scale(1.08);
    border: 2px solid #0077b5;
    box-shadow:
        0 24px 64px rgba(0, 119, 181, 0.2),
        0 8px 32px rgba(0, 119, 181, 0.1),
        inset 0 2px 0 rgba(255, 255, 255, 0.9);
    background: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-16px);
    box-shadow:
        0 40px 80px rgba(0, 119, 181, 0.25),
        0 16px 48px rgba(0, 119, 181, 0.15),
        inset 0 2px 0 rgba(255, 255, 255, 1);
    background: linear-gradient(145deg, #ffffff 0%, #dbeafe 100%);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
    z-index: 10;
}

.popular-badge i {
    font-size: 12px;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #dbeafe 0%, #93c5fd 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    color: #0077b5;
    font-size: 32px;
    box-shadow:
        0 8px 24px rgba(0, 119, 181, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card.featured .card-icon {
    background: linear-gradient(145deg, #0077b5 0%, #005885 100%);
    color: white;
    transform: scale(1.1);
    box-shadow:
        0 12px 32px rgba(0, 119, 181, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #0f172a;
    letter-spacing: -0.8px;
    background: linear-gradient(145deg, #0f172a 0%, #334155 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-price {
    margin: 16px 0 8px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 24px;
    color: #3b82f6;
    font-weight: 600;
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: #3b82f6;
    line-height: 1;
    letter-spacing: -2px;
}

.card-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 32px;
    font-weight: 500;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 32px 0;
    text-align: left;
}

.card-features li {
    padding: 12px 0;
    color: #475569;
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #f8fafc;
}

.card-features li:last-child {
    border-bottom: none;
}

.card-features li i {
    color: #22c55e;
    margin-right: 12px;
    font-size: 16px;
    width: 16px;
    text-align: center;
}

.card-button {
    margin-top: 40px;
    width: 100%;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 17px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(0, 119, 181, 0.2);
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    color: #0077b5;
    cursor: pointer;
    box-shadow:
        0 4px 16px rgba(0, 119, 181, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.card-button:hover {
    background: linear-gradient(145deg, #f0f9ff 0%, #e0f2fe 100%);
    border-color: #0077b5;
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 8px 24px rgba(0, 119, 181, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    color: #005885;
}

.featured-button {
    background: linear-gradient(145deg, #0077b5 0%, #005885 100%);
    color: white;
    border-color: #0077b5;
    box-shadow:
        0 8px 24px rgba(0, 119, 181, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.featured-button:hover {
    background: linear-gradient(145deg, #005885 0%, #003d5c 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(0, 119, 181, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: white;
}

.pricing-card.selected {
    border: 4px solid #22c55e !important;
    background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%) !important;
    box-shadow:
        0 16px 40px rgba(34, 197, 94, 0.4),
        0 4px 16px rgba(34, 197, 94, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    transform: translateY(-8px) scale(1.03) !important;
    z-index: 15 !important;
}

.pricing-card.selected .card-button {
    background: linear-gradient(145deg, #22c55e 0%, #16a34a 100%);
    color: white;
    border-color: #22c55e;
    box-shadow:
        0 8px 24px rgba(34, 197, 94, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.pricing-card.card-glow {
    animation: cardGlow 1s ease-out;
    z-index: 20;
}

@keyframes cardGlow {
    0% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        transform: scale(1);
    }

    25% {
        box-shadow: 0 0 60px rgba(0, 119, 181, 0.9), 0 0 120px rgba(0, 119, 181, 0.6), 0 0 180px rgba(59, 130, 246, 0.3);
        transform: scale(1.02);
    }

    75% {
        box-shadow: 0 0 60px rgba(0, 119, 181, 0.9), 0 0 120px rgba(0, 119, 181, 0.6), 0 0 180px rgba(59, 130, 246, 0.3);
        transform: scale(1.02);
    }

    100% {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        transform: scale(1);
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

/* Package Selection Step Styles */
.step-description {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.package-selection-display {
    margin-bottom: 30px;
}

.selected-package {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 119, 181, 0.3);
}

.package-icon {
    font-size: 32px;
    margin-right: 20px;
}

.package-info h4 {
    margin: 0 0 5px 0;
    font-size: 20px;
    font-weight: 600;
}

.package-info p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.package-selection-button {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 2px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.package-selection-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 119, 181, 0.1), transparent);
    transition: left 0.5s ease;
}

.package-selection-button:hover::before {
    left: 100%;
}

.btn-large {
    font-size: 20px;
    padding: 20px 50px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 25px rgba(0, 119, 181, 0.3);
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    border: none;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #005885 0%, #003d5c 100%);
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 119, 181, 0.4);
}

.btn-large:hover::before {
    opacity: 1;
}

.btn-large:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-icon {
    font-size: 24px;
    animation: pulse 2s infinite;
}

@keyframes pulse {

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

    50% {
        transform: scale(1.1);
    }
}

.package-button-hint {
    margin-top: 20px;
    color: #666;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.package-button-hint::before {
    content: '💡';
    font-size: 16px;
}

.package-selection-step {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 20px 0;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-navigation button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #ccc;
    border-color: #ccc;
}

.form-navigation button:disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* Multi-Step Form Styles */
.multi-step-form {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Progress Container */
.progress-container {
    background: var(--gradient);
    padding: 30px 40px;
    color: white;
}

.progress-bar {
    background: rgba(255, 255, 255, 0.2);
    height: 8px;
    border-radius: 4px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-fill {
    background: white;
    height: 100%;
    width: 25%;
    border-radius: 4px;
    transition: width 0.5s ease;
}

.step-indicators {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.step-indicator {
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.step-indicator.active {
    opacity: 1;
    transform: scale(1.05);
}

.step-indicator.completed {
    opacity: 0.8;
}

.step-number {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.step-indicator.active .step-number {
    border-color: white;
    background: white;
    color: var(--primary-blue);
}

.step-indicator.completed .step-number {
    border-color: white;
    background: white;
    color: #10b981;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Form Steps */
.step-form {
    padding: 50px;
}

.form-step {
    display: none;
    animation: fadeInSlide 0.5s ease-out;
}

.form-step.active {
    display: block;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 30px;
    text-align: center;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.form-navigation .btn {
    min-width: 140px;
}

.form-navigation .btn.prev-step {
    margin-right: auto;
}

.form-navigation .btn.next-step,
.form-navigation .btn[type="submit"] {
    margin-left: auto;
}

/* Review Section */
.review-section {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 50px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3b82f6, #8b5cf6, transparent);
    animation: shimmer 4s infinite;
}

.review-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1) translateX(0);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2) translateX(-20px);
        opacity: 0.8;
    }
}

/* Enhanced Review Section Navigation Buttons */
.form-step[data-step="4"] .form-navigation {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.form-step[data-step="4"] .form-navigation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: shimmer 3s infinite;
}

.form-step[data-step="4"] .form-navigation .btn.prev-step {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border: 2px solid #cbd5e1;
    color: #1e293b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    font-size: 14px;
    padding: 18px 30px;
    min-width: 200px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(148, 163, 184, 0.2);
}

.form-step[data-step="4"] .form-navigation .btn.prev-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.6s;
}

.form-step[data-step="4"] .form-navigation .btn.prev-step:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-color: #3b82f6;
    color: #0f172a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.form-step[data-step="4"] .form-navigation .btn.prev-step:hover::before {
    left: 100%;
}

.form-step[data-step="4"] .form-navigation .btn.prev-step:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.form-step[data-step="4"] .form-navigation .btn[type="submit"] {
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    font-size: 14px;
    padding: 18px 35px;
    min-width: 220px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.form-step[data-step="4"] .form-navigation .btn[type="submit"]::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;
}

.form-step[data-step="4"] .form-navigation .btn[type="submit"]:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 50%, #064e3b 100%);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.5);
    transform: translateY(-4px) scale(1.02);
}

.form-step[data-step="4"] .form-navigation .btn[type="submit"]:hover::before {
    left: 100%;
}

.form-step[data-step="4"] .form-navigation .btn[type="submit"]:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.form-step[data-step="4"] .form-navigation .btn[type="submit"]:disabled {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.2);
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

.review-item {
    margin-bottom: 40px;
    padding: 0;
    background: linear-gradient(135deg, white 0%, rgba(248, 250, 252, 0.8) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ef4444);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-item:hover::before {
    opacity: 1;
}

.review-item:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 15px 45px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.review-item:last-child {
    margin-bottom: 0;
}

.review-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    padding: 25px 35px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.review-item h4::before {
    content: '';
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.review-item:nth-child(1) h4::before {
    content: '\f007';
    /* fa-user */
}

.review-item:nth-child(2) h4::before {
    content: '\f0b1';
    /* fa-briefcase */
}

.review-item:nth-child(3) h4::before {
    content: '\f466';
    /* fa-box */
}

.review-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 35px;
}

.review-field {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.review-field::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3b82f6, #8b5cf6);
    border-radius: 0 4px 4px 0;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.review-field::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.review-field:hover {
    background: linear-gradient(135deg, white 0%, rgba(59, 130, 246, 0.03) 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.2);
}

.review-field:hover::before {
    transform: scaleY(1);
}

.review-field:hover::after {
    opacity: 1;
    transform: scale(1);
}

.review-field-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-field-label::before {
    content: '';
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 4px;
    opacity: 0.6;
}

.review-field-value {
    font-weight: 600;
    color: #1e293b;
    font-size: 1.1rem;
    line-height: 1.5;
    word-break: break-word;
    min-height: 24px;
}

.review-field-value:empty::before {
    content: 'Not provided';
    color: #94a3b8;
    font-style: italic;
    font-weight: 500;
}

/* Form Step Animations */
@keyframes fadeInSlide {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-blue);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-disclaimer {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo i {
    font-size: 2rem;
    margin-right: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {


    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

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

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

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

    .steps-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
        margin-top: 40px;
    }

    .pricing-card {
        padding: 24px 20px;
        border-radius: 12px;
        margin: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .pricing-card.featured {
        transform: none;
        scale: 1;
        border: 1px solid #3b82f6;
    }

    .pricing-card.featured:hover {
        transform: translateY(-2px);
    }

    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin: 0 auto 16px;
    }

    .card-title {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .card-price {
        margin: 12px 0 6px;
    }

    .price-amount {
        font-size: 36px;
        font-weight: 700;
    }

    .card-period {
        font-size: 12px;
        margin-bottom: 16px;
        opacity: 0.7;
    }

    .card-features {
        margin: 16px 0 20px;
        text-align: left;
    }

    .card-features li {
        padding: 6px 0;
        font-size: 13px;
        line-height: 1.4;
    }

    .card-features li::before {
        font-size: 12px;
        margin-right: 8px;
    }

    .card-button {
        padding: 14px 24px;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        width: 100%;
        min-height: 48px;
        margin-top: auto;
    }

    .popular-badge {
        font-size: 10px;
        padding: 4px 12px;
        top: -8px;
        right: 12px;
        border-radius: 12px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-info {
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-links {
        justify-content: center;
    }

    /* Testimonials responsive */
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Stats counters mobile */
    .stats-counters {
        gap: 40px;
        margin: 30px 0 40px;
    }

    .stat-number {
        font-size: 2rem;
    }

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

    /* Pricing section mobile optimization */
    .pricing {
        padding: 60px 0;
    }

    .pricing .section-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }

    .pricing .section-description {
        font-size: 16px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Multi-step form responsive */
    .step-form {
        padding: 30px 25px;
    }

    .progress-container {
        padding: 25px 25px;
    }

    .step-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .step-indicator:nth-child(3),
    .step-indicator:nth-child(4) {
        margin-top: 20px;
    }

    .form-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .form-navigation .btn {
        width: 100%;
        min-width: auto;
    }

    /* Enhanced Review Section Mobile Responsive */
    .form-step[data-step="4"] .form-navigation {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .form-step[data-step="4"] .form-navigation .btn.prev-step,
    .form-step[data-step="4"] .form-navigation .btn[type="submit"] {
        width: 100%;
        min-width: auto;
        padding: 16px 25px;
        font-size: 13px;
        letter-spacing: 0.8px;
    }

    .form-step[data-step="4"] .form-navigation .btn.prev-step:hover,
    .form-step[data-step="4"] .form-navigation .btn[type="submit"]:hover {
        transform: translateY(-2px) scale(1.01);
    }

    .form-step[data-step="4"] .form-navigation .btn.prev-step:active,
    .form-step[data-step="4"] .form-navigation .btn[type="submit"]:active {
        transform: translateY(0) scale(1);
    }

    .review-content {
        grid-template-columns: 1fr;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    /* Multi-step form mobile */
    .step-form {
        padding: 20px 15px;
    }

    .progress-container {
        padding: 20px 15px;
    }

    .step-indicators {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.8rem;
    }

    .step-title {
        font-size: 1.4rem;
    }

    .review-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .review-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 20px;
    }

    .review-item h4 {
        font-size: 1.3rem;
        padding: 20px 25px 12px;
        gap: 12px;
    }

    .review-item h4::before {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }

    .review-field {
        padding: 20px;
    }

    .review-field-value {
        font-size: 1rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Stylish animated underlines for section titles */
.section-title.with-underline {
    position: relative;
    margin-bottom: 40px;
}

.section-title.with-underline::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8, #fbbf24);
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title.with-underline.animate-underline::after {
    width: 80px;
}

/* Testimonials section - golden gradient underline */
.testimonials .section-title.with-underline::after {
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #3b82f6);
    box-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
}

/* Contact section - green gradient underline */
.contact .section-title.with-underline::after {
    background: linear-gradient(90deg, #10b981, #059669, #3b82f6);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

/* Pricing section - purple gradient underline */
.pricing .section-title.with-underline::after {
    background: linear-gradient(90deg, #8b5cf6, #7c3aed, #3b82f6);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

/* Package Action Buttons */
.package-action-buttons {
    margin-top: 50px;
    padding: 40px 30px 30px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(147, 51, 234, 0.03) 100%);
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.package-action-buttons::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3b82f6, transparent);
    animation: shimmer 3s infinite;
}

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

    100% {
        left: 100%;
    }
}

.action-buttons-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    max-width: 650px;
    margin: 0 auto;
}

#backToFormBtn {
    flex: 1;
    max-width: 220px;
    padding: 18px 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #cbd5e1;
    color: #1e293b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(148, 163, 184, 0.2);
}

#backToFormBtn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.6s;
}

#backToFormBtn:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-color: #3b82f6;
    color: #0f172a;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

#backToFormBtn:hover::before {
    left: 100%;
}

#backToFormBtn:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

#reviewOrderBtn {
    flex: 1;
    max-width: 280px;
    padding: 18px 35px;
    background: linear-gradient(135deg, #059669 0%, #047857 50%, #065f46 100%);
    border: none;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 15px;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    justify-content: center;
}

#reviewOrderBtn::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;
}

#reviewOrderBtn:hover:not(:disabled) {
    background: linear-gradient(135deg, #047857 0%, #065f46 50%, #064e3b 100%);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.5);
    transform: translateY(-4px) scale(1.02);
}

#reviewOrderBtn:hover:not(:disabled)::before {
    left: 100%;
}

#reviewOrderBtn:active:not(:disabled) {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

#reviewOrderBtn:disabled {
    background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
    box-shadow: 0 2px 8px rgba(156, 163, 175, 0.2);
    cursor: not-allowed;
    transform: none;
    opacity: 0.7;
}

/* Mobile responsive for action buttons */
@media (max-width: 768px) {
    .package-action-buttons {
        margin-top: 30px;
        padding: 30px 20px 25px;
    }

    .action-buttons-container {
        flex-direction: column;
        gap: 20px;
        max-width: none;
    }

    #backToFormBtn,
    #reviewOrderBtn {
        max-width: none;
        width: 100%;
        padding: 16px 25px;
        font-size: 13px;
        letter-spacing: 0.8px;
    }

    #backToFormBtn:hover,
    #reviewOrderBtn:hover:not(:disabled) {
        transform: translateY(-2px) scale(1.01);
    }

    #backToFormBtn:active,
    #reviewOrderBtn:active:not(:disabled) {
        transform: translateY(0) scale(1);
    }
}

:root {
    /* Brand Colors */
    --primary-5003: #3b82f6;
    --primary-6003: #2563eb;

    /* Neutral Colors */
    --gray-2003: #e5e7eb;
    --gray-7003: #374151;

    /* Gradients */
    --gradient-primary3: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);

    /* Typography */
    --font-family-primary3: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-weight-semibold3: 600;

    /* Spacing */
    --space-xs3: 0.25rem;
    --space-sm3: 0.5rem;
    --space-md3: 1rem;
    --space-lg3: 1.5rem;
    --space-xl3: 2rem;
    --space-2xl3: 3rem;

    /* Border Radius */
    --radius-lg3: 0.75rem;
    --radius-xl3: 1rem;

    /* Shadows */
    --shadow-lg3: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-normal3: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
    animation: slideInDown 0.8s ease-out 0.1s forwards;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    align-items: center;
    height: 100px;
    position: relative;
    gap: 40px;
}

@media (max-width: 800px) {
    .nav-container {
        height: 90px;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    flex-shrink: 0;
    z-index: 1001;
    justify-self: start;
    margin-left: -10px;
}

@media (min-width: 800px) {
    .nav-logo {
        position: relative;
        right: 50px;
    }
}

.nav-logo i {
    color: #2196F3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    justify-self: center;
    margin-left: 190px;
}

@media (max-width: 768px) {
    .nav-right {
        gap: 8px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        transform: none;
        padding: 10px 0;
        /* smaller padding top/bottom */
        gap: 0;
        margin-left: 0;
        border-radius: 0 0 12px 12px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 2px 0;
        /* very small spacing */
    }

    .nav-menu li:first-child {
        margin-top: 0;
    }

    .nav-menu li:last-child {
        margin-bottom: 0;
    }

    .nav-menu a {
        padding: 8px;
        /* smaller clickable area */
        display: block;
    }
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}

.nav-link:hover {
    color: #2196F3;
    text-shadow: 0 0 8px rgba(33, 150, 243, 0.6), 0 0 16px rgba(33, 150, 243, 0.4), 0 0 24px rgba(33, 150, 243, 0.2);
    box-shadow: 0 0 12px rgba(33, 150, 243, 0.15), inset 0 0 12px rgba(33, 150, 243, 0.05);
    background: rgba(33, 150, 243, 0.05);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2196F3, transparent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.nav-link:hover::after {
    width: calc(100% - 32px);
    box-shadow: 0 0 6px rgba(33, 150, 243, 0.8);
}

/* Special Invite Link Styling */
.nav-link-special {
    position: relative;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.04), rgba(25, 118, 210, 0.02));
    border: 1px solid rgba(33, 150, 243, 0.08);
    border-radius: 12px;
    padding: 8px 16px !important;
    overflow: hidden;
    backdrop-filter: blur(2px);
    animation: inviteGlow 4s ease-in-out infinite;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
}

.nav-link-special::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: subtleShimmer 6s ease-in-out infinite;
    z-index: 1;
    border-radius: 12px;
}


.nav-link-special:hover {
    color: #2196F3 !important;
    text-shadow: 0 0 6px rgba(33, 150, 243, 0.4);
    box-shadow:
        0 0 12px rgba(33, 150, 243, 0.2),
        0 0 24px rgba(33, 150, 243, 0.1),
        inset 0 0 8px rgba(33, 150, 243, 0.06);
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1), rgba(25, 118, 210, 0.05));
    border-color: rgba(33, 150, 243, 0.25);
    transform: translateY(-2px);
}

.nav-link-special span {
    position: relative;
    z-index: 2;
}

@keyframes inviteGlow {

    0%,
    100% {
        box-shadow:
            0 0 8px rgba(33, 150, 243, 0.3),
            0 0 16px rgba(33, 150, 243, 0.15),
            inset 0 0 6px rgba(33, 150, 243, 0.1);
        border-color: rgba(33, 150, 243, 0.25);
    }

    50% {
        box-shadow:
            0 0 14px rgba(33, 150, 243, 0.45),
            0 0 28px rgba(33, 150, 243, 0.25),
            inset 0 0 10px rgba(33, 150, 243, 0.15);
        border-color: rgba(33, 150, 243, 0.35);
    }
}

@keyframes subtleShimmer {

    0%,
    100% {
        opacity: 0;
        transform: translateX(-100%);
    }

    50% {
        opacity: 0.3;
        transform: translateX(100%);
    }
}


.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    right: -80px;
}


.btn3 {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm3);
    padding: var(--space-md3) var(--space-xl3);
    border: none;
    border-radius: var(--radius-lg3);
    font-family: var(--font-family-primary3);
    font-weight: var(--font-weight-semibold3);
    font-size: 0.875rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal3);
    position: relative;
    overflow: hidden;
}

.btn3-primary {
    background: var(--gradient-primary3);
    color: white;
    box-shadow: var(--shadow-lg3);
}

.btn3-primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg3);
}

.btn3-hero {
    padding: var(--space-lg3) var(--space-2xl3);
    font-size: 1rem;
    font-weight: var(--font-weight-bold3);
    border-radius: var(--radius-xl3);
}

/* Tablet and below */
@media (max-width: 768px) {
    .btn3 {
        width: 100%;
        justify-content: center;
        padding: var(--space-lg3) var(--space-xl3);
        font-size: 0.9375rem;
    }

    .btn3-hero {
        width: 100%;
        padding: var(--space-lg3) var(--space-2xl3);
        font-size: 1.125rem;
    }

    /* Button container for stacked layout */
    .btn3-container {
        flex-direction: column;
        gap: var(--space-sm3);
        margin-bottom: var(--space-lg3);
    }
}

/* Phone and small devices */
@media (max-width: 480px) {
    .btn3 {
        width: 100%;
        padding: var(--space-md3) var(--space-lg3);
        font-size: 0.875rem;
        border-radius: var(--radius-lg3);
    }

    .btn3-hero {
        width: 100%;
        padding: var(--space-lg3) var(--space-xl3);
        font-size: 1rem;
        border-radius: var(--radius-lg3);
    }

    /* Reduced hover effects on mobile for better touch experience */
    .btn3-primary:hover {
        transform: none;
        box-shadow: var(--shadow-lg3);
    }

    /* Touch-friendly active state */
    .btn3-primary:active {
        transform: scale(0.98);
    }

}


@media (max-width: 768px) {

    .mobile-login {
        width: 100%;
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 8px;
        font-weight: 600;
        background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
        color: white;
        border: none;
        box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
        transition: all 0.3s ease;
    }

    .mobile-login:hover {
        background: linear-gradient(135deg, #1976D2 0%, #1565C0 100%);
        box-shadow: 0 6px 16px rgba(33, 150, 243, 0.4);
        transform: translateY(-2px);
    }

}



.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: -10px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}


@media (max-width: 768px) {
    .nav-right {
        gap: 8px;
    }
}


/* Navigation Auth Buttons */
.nav-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    left: 50px;
}

@media (max-width: 768px) {
    .nav-actions {
        display: none !important;
    }
}



.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: relative;
    right: -80px;
}


@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

}



@media (max-width: 768px) {

    /* Override navbar glow effects for mobile */
    .nav-link {
        padding: 16px 20px;
        margin: 8px 0;
        position: relative;
        border-radius: 8px;
        transition: all 0.3s ease;
        border-bottom: 2px solid transparent;
    }

    .nav-link:hover {
        text-shadow: none;
        box-shadow: none;
        background: rgba(33, 150, 243, 0.1);
        transform: none;
        border-bottom-color: #2196f3;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 20px;
        right: 20px;
        height: 2px;
        background: linear-gradient(90deg, #2196f3, #1976d2);
        transform: scaleX(0);
        transition: transform 0.3s ease;
        border-radius: 1px;
    }

    .nav-link:hover::after {
        transform: scaleX(1);
        box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
    }

    /* Special styling for active nav link */
    .nav-link.active {
        background: rgba(33, 150, 243, 0.15);
        border-bottom-color: #2196f3;
    }

    .nav-link.active::after {
        transform: scaleX(1);
        background: linear-gradient(90deg, #2196f3, #1976d2);
    }
}

.bar {
    width: 25px;
    height: 2.2px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {

    .mobile-auth-buttons {
        display: flex !important;
        flex-direction: column;
        margin: 20px 0;
        padding: 0 20px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 20px;
    }
}

.mobile-auth-buttons {
    display: none;
}

@media (max-width: 768px) {

    .nav-link.active {
        background: transparent !important;
        color: inherit !important;
        border-bottom: none !important;
        text-shadow: none !important;
        box-shadow: none !important;
        -webkit-tap-highlight-color: transparent !important;
        outline: none !important;
    }

}






.logo-image {
    height: 105px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(35%) sepia(65%) saturate(3200%) hue-rotate(202deg) brightness(115%) contrast(105%);
}

@media (min-width: 800px) {
    .nav-menu {
        margin-left: 250px;
    }
}

@media (max-width: 800px) {

    .nav-toggle {
        right: -55px;
        top: -3px;
    }
}

@media (max-width: 380px) {
    .nav-toggle {
        right: -65px;
        top: -3px;
    }
}

@media (min-width: 400px) and (max-width: 800px) {
    .nav-toggle {
        right: -105px;
        top: -3px;
    }
}

@media (min-width: 381px) and (max-width: 399px) {
    .nav-toggle {
        right: -85px;
        top: -3px;
    }
}

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-5xl) 0 var(--space-2xl);
    margin-top: var(--space-5xl);
}

/* Grid Layout */
.footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.footer .col-md-4 {
    padding: 0 15px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.footer .col-md-2 {
    padding: 0 15px;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.footer .offset-md-2 {
    margin-left: 16.666667%;
}

/* Spacing Utilities */
.footer .mb-4 {
    margin-bottom: var(--space-lg);
}

.footer .mb-md-0 {
    margin-bottom: 0;
}

.footer .mt-4 {
    margin-top: var(--space-lg);
}

.footer .me-2 {
    margin-right: 0.5rem;
}

.footer-logo {
    height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(39%) sepia(57%) saturate(4755%) hue-rotate(185deg) brightness(99%) contrast(93%);
    margin-bottom: var(--space-md);
}

.footer p {
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

.footer h5 {
    color: white;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-lg);
    font-size: 1.1rem;
}

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

.footer .list-unstyled li {
    margin-bottom: var(--space-sm);
}

.footer .list-unstyled a {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer .list-unstyled a:hover {
    color: white;
}

.social-icons {
    display: none;
    /* Currently hidden */
    gap: var(--space-md);
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    margin: 0;
}

.footer-bottom .text-white-50 {
    color: var(--gray-400);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-bottom .text-white-50:hover {
    color: var(--gray-300);
}

@media (max-width: 1024px) {

    .footer .col-md-4,
    .footer .col-md-2 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .footer .offset-md-2 {
        margin-left: 0;
    }
}

@media (max-width: 768px) {

    .footer .col-md-4,
    .footer .col-md-2 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: var(--space-lg);
    }

    .footer .offset-md-2 {
        margin-left: 0;
    }

    .footer-bottom {
        text-align: center;
    }
}

:root {
    /* Colors */
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --primary-600: #2563eb;

    /* Typography */
    --font-weight-semibold: 600;

    /* Spacing */
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-2xl: 3rem;
    --space-5xl: 6rem;

    /* Transitions */
    --transition-normal: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* pushes button to bottom */
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    padding: 48px 36px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    backdrop-filter: blur(20px);
    cursor: pointer;

    height: 100%; /* make cards equal height in grid */
}


/* fix pentru navbarul care se duce in jos cand dai scroll pe telefon */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(-100%);
    animation: slideInDown 0.8s ease-out 0.1s forwards;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.card-features {
    flex-grow: 1;
}

#home {
  padding-top: 0px; /* space for navbar */
}

@media (max-width: 768px) {
    #home {
   padding-top:50px;
}
}

.nav-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;  /* Width of the touch area */
    height: 60px; /* Height of the touch area */
    background: transparent; /* Keeps it invisible */
    z-index: 100; /* Ensures it sits on top of the lines */
}


/* Trusted By / Logo Carousel Section - White Version */
.trusted-by-section {
    position: relative;
    z-index: 10;
    padding: 30px 0 50px 0;
    background: #ffffff; /* CHANGED: Set to pure white */
    overflow: hidden;
    display: block;
}

.trusted-label {
    text-align: center;
    font-size: 0.9rem;
    color: #666; /* Standard gray text */
    margin-bottom: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.slider {
    height: 60px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 1000px;
}

/* Gradient Masks - CHANGED to White */
.slider::before,
.slider::after {
    /* Now fades from White (#ffffff) to Transparent */
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    position: absolute;
    width: 100px;
    z-index: 20;
    top: 0;
    pointer-events: none;
}

.slider::before {
    left: 0;
}

.slider::after {
    right: 0;
    transform: rotate(180deg);
}

.slide-track {
    display: flex;
    /* 200px * 16 slides */
    width: calc(200px * 16); 
    animation: scroll 40s linear infinite;
}

.slide {
    height: 60px;
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #9ca3af;
    font-weight: 700;
    font-family: 'Segoe UI', sans-serif;
    transition: all 0.3s ease;
    cursor: default;
}

.slide:hover {
    color: #0077b5; /* LinkedIn Blue */
    transform: scale(1.1);
}

.slide i {
    font-size: 1.8rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 8)); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trusted-by-section { padding: 30px 0; }
    .slider::before, .slider::after { width: 50px; }
    .slide { width: 150px; font-size: 1.2rem; }
    .slide-track { width: calc(150px * 16); }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-150px * 8)); }
    }
}