* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(13, 117, 253, 0.1);
    animation: slideDown 0.8s ease-out;
}

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

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(13, 117, 253, 0.2));
    transition: all 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 12px rgba(13, 117, 253, 0.3));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 50%, #FF6B9D 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before {
    width: 80%;
}

.nav-links a:hover {
    color: #0D75FD;
    background: rgba(13, 117, 253, 0.08);
    transform: translateY(-2px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.login-btn {
    background: linear-gradient(135deg, #f8f9ff 0%, #e7f3ff 100%);
    color: #0D75FD;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: 25px;
    border: 2px solid rgba(13, 117, 253, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 50%, #FF6B9D 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.login-btn:hover::before {
    width: 80%;
}

.login-btn:hover {
    color: #0D75FD;
    background: rgba(13, 117, 253, 0.08);
    transform: translateY(-2px);
}

.demo-btn {
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    color: #1a1a1a;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.3);
    position: relative;
    overflow: hidden;
}

.demo-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 50%, #FF6B9D 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.demo-btn:hover::before {
    width: 80%;
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(252, 211, 77, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0D75FD 0%, #4F46E5 40%, #5c1ac6 50%);
    color: white;
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: rotate 30s linear infinite;
    opacity: 0.3;
}

@keyframes float {

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

    33% {
        transform: translateY(-10px) rotate(1deg);
    }

    66% {
        transform: translateY(5px) rotate(-1deg);
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    animation: slideInUp 1s ease-out;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 600;
    animation: slideInUp 1s ease-out 0.2s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Package Selection Section */
.package-selection {
    background: linear-gradient(135deg, #f8f9ff 0%, #e7f3ff 50%, #fff0f8 100%);
    padding: 20px 0 80px;
    position: relative;
}

.package-selection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="0,0 100,30 100,70 0,100" fill="rgba(13,117,253,0.02)"/></svg>');
    background-size: 300px 150px;
    animation: wave 15s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes wave {

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

    25% {
        transform: translateX(-10px) translateY(-5px);
    }

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

    75% {
        transform: translateX(10px) translateY(-5px);
    }
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 40px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
    animation: fadeInScale 1s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 50%, #FF6B9D 100%);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes expandWidth {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

.package-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
    align-items: start;
}

.form-section {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 50%, #fff8fc 100%);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    border: 3px solid #e6f0ff;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 1s ease-out;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 117, 253, 0.01) 0%, rgba(124, 58, 237, 0.01) 50%, rgba(255, 107, 157, 0.01) 100%);
    pointer-events: none;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.package-display {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: slideInRight 1s ease-out;
}

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

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

.package-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafbff 50%, #fff8fc 100%);
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 12px 48px rgba(13, 117, 253, 0.08);
    border: 3px solid #e6f0ff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 117, 253, 0.02) 0%, rgba(124, 58, 237, 0.02) 50%, rgba(255, 107, 157, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-card.active {
    display: block;
    border-color: #0D75FD;
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(13, 117, 253, 0.15);
    animation: cardPulse 2s ease-in-out infinite;
}

.package-card.active::before {
    opacity: 1;
}

@keyframes cardPulse {

    0%,
    100% {
        box-shadow: 0 20px 60px rgba(13, 117, 253, 0.15);
    }

    50% {
        box-shadow: 0 25px 70px rgba(13, 117, 253, 0.25);
    }
}

.package-number {
    background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 50%, #FF6B9D 100%);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 24px rgba(13, 117, 253, 0.25);
    position: relative;
    animation: bounce 2s ease-in-out infinite;
}

.package-number::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0D75FD, #7C3AED, #FF6B9D);
    border-radius: 18px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
    animation: glow 3s ease-in-out infinite;
}

@keyframes bounce {

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

    40% {
        transform: translateY(-5px);
    }

    60% {
        transform: translateY(-3px);
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.3;
        filter: blur(8px);
    }

    50% {
        opacity: 0.6;
        filter: blur(12px);
    }
}

.package-name {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 28px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

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

.package-features li {
    padding: 12px 0;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: #374151;
    font-size: 1.05rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

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

.package-features li::before {
    content: "✓";
    color: #22c55e;
    font-weight: 900;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #dcf5e8 0%, #bbf7d0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.15);
}

/* Form Styling */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 28px;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    border-radius: 18px;
    border: 2px solid #e6f0ff;
    position: relative;
}

.radio-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 117, 253, 0.02) 0%, rgba(124, 58, 237, 0.02) 100%);
    border-radius: 16px;
    pointer-events: none;
}

.radio-option {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    cursor: pointer;
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.radio-option:hover {
    background: rgba(13, 117, 253, 0.05);
    transform: translateX(4px);
}

.radio-option input[type="radio"] {
    margin-top: 6px;
    width: 20px;
    height: 20px;
    accent-color: #0D75FD;
}

.radio-content h4 {
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.radio-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.form-control {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e6f0ff;
    border-radius: 14px;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #0D75FD;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 117, 253, 0.08);
    transform: translateY(-1px);
}

.package-select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e6f0ff;
    border-radius: 14px;
    font-size: 1.05rem;
    background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
    appearance: auto;
    -webkit-appearance: menulist;
    -moz-appearance: menulist;
}

.package-select option {
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: normal;
    background: white;
    color: #1a1a1a;
}

.package-select:focus {
    outline: none;
    border-color: #0D75FD;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(13, 117, 253, 0.08);
    transform: translateY(-1px);
}

.create-account-btn {
    background: linear-gradient(135deg, #0D75FD 0%, #4F46E5 40%, #5c1ac6 50%);
    color: white;
    padding: 20px 45px;
    border: none;
    border-radius: 16px;
    font-weight: 800;
    font-size: 1.15rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(13, 117, 253, 0.25);
    width: 100%;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(13, 117, 253, 0.25);
    }

    50% {
        box-shadow: 0 15px 40px rgba(13, 117, 253, 0.4), 0 0 30px rgba(255, 107, 157, 0.3);
    }
}

.create-account-btn::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 ease;
}

.create-account-btn:hover::before {
    left: 100%;
}

.create-account-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 15px 40px rgba(13, 117, 253, 0.35), 0 0 25px rgba(92, 26, 198, 0.2);
    background: linear-gradient(135deg, #0D75FD 0%, #4F46E5 35%, #5c1ac6 65%, #7C3AED 100%);
}

.create-account-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Problem/Solution Comparison Section */
.problem-solution-comparison {
    background: linear-gradient(135deg, #0D75FD 0%, #1a1a1a 50%, #2d3748 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

.problem-solution-comparison::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.05)"/></svg>');
}

.problem-solution-comparison .container {
    position: relative;
    z-index: 2;
}

.problem-solution-comparison .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.problem-solution-comparison .section-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-solution-comparison .section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-side {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.comparison-side:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.without-realg {
    border-left: 4px solid #ef4444;
}

.with-realg {
    border-left: 4px solid #22c55e;
}

.comparison-icon {
    margin-bottom: 20px;
}

.icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 2rem;
    position: relative;
}

.icon-container.frustrated {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    animation: shake 2s infinite;
}

.icon-container.success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    animation: bounce-gentle 2s infinite;
}

@keyframes shake {

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

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

@keyframes bounce-gentle {

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

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

.comparison-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.5;
}

.comparison-list li i {
    margin-top: 2px;
    font-size: 1.1rem;
}

.without-realg .comparison-list li i {
    color: #ef4444;
}

.with-realg .comparison-list li i {
    color: #22c55e;
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FCD34D 0%, #F59E0B 100%);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(252, 211, 77, 0.4);
    animation: pulse-vs 2s infinite;
}

@keyframes pulse-vs {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(252, 211, 77, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 40px rgba(252, 211, 77, 0.6);
    }
}

/* Package card header flex row for icon and title */
.package-header-flex {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.package-header-flex .package-number {
    margin-bottom: 0;
}

.package-header-flex .package-name {
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FCD34D;
    color: #1a1a1a;
    padding: 22px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.risk-reversal {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Error Messages */
.error-message {
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

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

/* Package card fade-in animation */
.package-card-fade-in {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card-fade-in.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.video-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 100px rgba(0, 0, 0, 0.5);
    animation: slideInScale 0.4s ease;
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #0D75FD 0%, #7C3AED 100%);
    color: white;
}

.video-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.video-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.video-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInScale {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-actions {
        gap: 10px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

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

    .vs-divider {
        order: 2;
        margin: 20px 0;
    }

    .without-realg {
        order: 1;
    }

    .with-realg {
        order: 3;
    }

    .problem-solution-comparison .section-title {
        font-size: 2.2rem;
    }

    .final-cta-title {
        font-size: 2rem;
    }

    .final-cta-button {
        font-size: 1.1rem;
        padding: 18px 35px;
    }

    .container {
        padding: 0 15px;
    }

    /* Mobile responsiveness for modal */
    .video-modal-content {
        width: 95%;
        margin: 20px;
    }

    .video-modal-header {
        padding: 15px 20px;
    }

    .video-modal-title {
        font-size: 1.1rem;
    }

    .video-close {
        font-size: 1.5rem;
        width: 35px;
        height: 35px;
    }
}

/* Footer Styles */
footer a:hover {
    color: #0D75FD !important;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: #6c757d;
    text-decoration: none;
    margin: 0 8px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background-color: #0D75FD;
    color: white !important;
    transform: translateY(-2px);
}

.social-link.facebook:hover {
    background-color: #1877f2;
}

.social-link.instagram:hover {
    background-color: #e4405f;
}

/* Mobile footer adjustments */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 15px !important;
    }

    footer div[style*="margin-bottom: 20px"] a {
        display: inline-block;
        margin: 5px 10px !important;
    }

    footer span[style*="color: #dee2e6"] {
        display: none;
    }

    .social-links {
        margin-top: 15px !important;
    }
}

/* Eye-catching urgency pill for pricing section */
.pricing-urgency-pill {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 20%, #b91c1c 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-block;
    margin: 15px 0 20px 0;
    text-align: center;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-urgency-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.pricing-urgency-pill:hover::before {
    left: 100%;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 8px 30px rgba(239, 68, 68, 0.5), 0 0 20px rgba(239, 68, 68, 0.3);
        transform: scale(1.02);
    }
}

/* Urgency Banner for flash sales */
.urgency-banner {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.9) 0%, rgba(255, 120, 0, 0.85) 50%, rgba(255, 100, 0, 0.8) 100%);
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 20px auto 40px auto;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-urgent 2s ease-in-out infinite;
    max-width: 1200px;
    display: block;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s ease;
}

.urgency-banner:hover::before {
    left: 100%;
}

@keyframes pulse-urgent {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 8px 30px rgba(255, 140, 0, 0.5), 0 0 20px rgba(255, 140, 0, 0.3);
        transform: scale(1.02);
    }
}

/* Mobile adjustments for urgency banner */
@media (max-width: 768px) {
    .urgency-banner {
        font-size: 1rem;
        padding: 12px 15px;
        margin: 15px auto;
        border-radius: 20px;
    }
}