/* ===== PURCHASE.CSS ===== */
/* Enhanced styles for the purchase page with division selection */

/* Page Hero Section */
.page-hero {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(79, 70, 229, 0.2));
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(30, 58, 138, 0.7), rgba(49, 46, 129, 0.7));
    z-index: 1;
}

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

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, #93c5fd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

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

.floating-notes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.note {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: floatUp 20s linear infinite;
    z-index: 1;
}

@keyframes floatUp {
    from {
        transform: translateY(100vh) rotate(0deg);
    }
    to {
        transform: translateY(-100px) rotate(360deg);
    }
}

/* Division Selection Section */
.division-selection {
    padding: 5rem 0;
}

.division-selection .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.division-selection .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.division-selection .section-title p {
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

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

.division-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.division-card:nth-child(1) {
    animation-delay: 0.1s;
}

.division-card:nth-child(2) {
    animation-delay: 0.2s;
}

.division-card:nth-child(3) {
    animation-delay: 0.3s;
}

.division-card:nth-child(4) {
    animation-delay: 0.4s;
}

.division-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.division-image {
    position: relative;
    overflow: hidden;
}

.division-image img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: all 0.8s ease;
}

.division-card:hover .division-image img {
    transform: scale(1.05);
}

.division-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 130, 246, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.division-overlay span {
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 30px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.division-card:hover .division-overlay span {
    transform: translateY(0);
}

.division-details {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.division-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.division-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.division-features {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.division-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.division-features li i {
    color: #10b981;
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.btn-select-division {
    align-self: center;
    width: 100%;
    margin-top: auto;
}

/* Complete Collection Banner */
.complete-collection {
    margin-top: 4rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.collection-banner {
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.15), rgba(245, 158, 11, 0.15));
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.collection-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(245, 158, 11, 0.2);
}

.collection-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../assets/pattern-overlay.png');
    opacity: 0.05;
    z-index: 0;
}

.banner-content {
    flex: 2;
    z-index: 1;
}

.banner-badge {
    display: inline-block;
    background: #f59e0b;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.banner-content h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.banner-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.banner-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.banner-features li {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
}

.banner-features li i {
    color: #f59e0b;
    margin-right: 0.75rem;
}

.banner-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1;
}

.banner-price {
    text-align: right;
    margin-bottom: 1.5rem;
}

.original-price {
    display: block;
    font-size: 1.1rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

/* Features Highlight Section */
.features-highlight {
    padding: 5rem 0;
    background: rgba(17, 24, 39, 0.2);
}

.features-highlight .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: #3b82f6;
}

.feature-card:hover .feature-icon {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Licensing Section */
.licensing-section {
    padding: 5rem 0;
}

.licensing-section .card {
    background: linear-gradient(145deg, rgba(30, 58, 138, 0.2), rgba(49, 46, 129, 0.2));
    backdrop-filter: blur(10px);
    border: none;
    padding: 3rem 2rem;
    text-align: center;
}

.licensing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.licensing-section > .container > .card > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

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

.license-option {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.license-option:nth-child(1) {
    animation-delay: 0.2s;
}

.license-option:nth-child(2) {
    animation-delay: 0.4s;
}

.license-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #3b82f6, #4f46e5);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.license-option:hover::before {
    transform: translateY(0);
}

.license-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.license-option.premium {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(59, 130, 246, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
}

.license-option.premium::before {
    background: linear-gradient(to right, #4f46e5, #8b5cf6);
}

.license-header {
    margin-bottom: 1.5rem;
}

.license-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.license-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    display: flex;
    align-items: baseline;
}

.license-price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

.license-option p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.license-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.license-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.license-features li i {
    color: #10b981;
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.license-option .btn {
    align-self: center;
    width: 100%;
}

.contact-licensing {
    margin-top: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.contact-licensing p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* Call to Action Section */
.cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(79, 70, 229, 0.2));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/pattern-overlay.png');
    opacity: 0.05;
    z-index: 0;
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(79, 70, 229, 0.6);
    }
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .addon-banner {
        flex-direction: column;
    }
    
    .banner-content {
        margin-bottom: 2rem;
    }
    
    .banner-action {
        align-items: center;
    }
    
    .licensing-section h2 {
        font-size: 2.25rem;
    }
    
    .cta h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .page-hero {
        min-height: 250px;
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    /* Maintain 2-column layout until smaller breakpoint */
    .divisions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-features {
        grid-template-columns: 1fr;
    }
    
    .license-options {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 200px;
        padding: 2.5rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    /* Switch to 1-column layout at smaller screens */
    .divisions-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 180px;
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations and Effects */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Special effects for buttons */
.btn-glow:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
}

/* Add animation for CTA button pulses */
.animate-pulse {
    animation: pulse 2s infinite;
}

/* Additional hover effects */
.license-button:hover,
.btn-select-division:hover {
    transform: translateY(-3px);
}

/* Section visibility for animation */
.division-selection.visible .division-card,
.features-highlight.visible .feature-card,
.licensing-section.visible .license-option {
    opacity: 1;
    transform: translateY(0);
}

.collection-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.collection-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.collection-card.featured {
    border: 1px solid rgba(245, 158, 11, 0.5);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(245, 158, 11, 0.1));
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(245, 158, 11, 0.2);
    z-index: 2;
}

.collection-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-banner {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #f59e0b;
    color: white;
    padding: 5px 40px;
    font-size: 0.875rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.collection-image {
    position: relative;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.8s ease;
}

.collection-card:hover .collection-image img {
    transform: scale(1.05);
}

.collection-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(59, 130, 246, 0.9);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.collection-details {
    padding: 1.5rem;
}

.collection-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.collection-features {
    margin-bottom: 1.5rem;
}

.collection-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.collection-features li i {
    color: #3b82f6;
    margin-right: 10px;
    flex-shrink: 0;
}

.collection-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.original-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
    margin-right: 0.5rem;
}

/* Features Highlight Section */
.features-highlight {
    padding: 5rem 0;
    background: rgba(17, 24, 39, 0.2);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: #3b82f6;
}

.feature-card:hover .feature-icon {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Licensing Section */
.licensing-section {
    padding: 5rem 0;
}

.licensing-section .card {
    background: linear-gradient(145deg, rgba(30, 58, 138, 0.2), rgba(49, 46, 129, 0.2));
    backdrop-filter: blur(10px);
    border: none;
    padding: 3rem 2rem;
    text-align: center;
}

.licensing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.licensing-section > .container > .card > p {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

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

.license-option {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.license-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #3b82f6, #4f46e5);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.license-option:hover::before {
    transform: translateY(0);
}

.license-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.license-option.premium {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(59, 130, 246, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
}

.license-option.premium::before {
    background: linear-gradient(to right, #4f46e5, #8b5cf6);
}

.license-header {
    margin-bottom: 1.5rem;
}

.license-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.license-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    display: flex;
    align-items: baseline;
}

.license-price span {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 0.5rem;
}

.license-option p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.license-features {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.license-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.license-features li i {
    color: #10b981;
    margin-right: 10px;
    margin-top: 5px;
    flex-shrink: 0;
}

.license-option .btn {
    align-self: center;
    width: 100%;
}

.contact-licensing {
    margin-top: 1.5rem;
}

.contact-licensing p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* Call to Action Section */
.cta {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(79, 70, 229, 0.2));
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/pattern-overlay.png');
    opacity: 0.05;
    z-index: 0;
}

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

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px rgba(59, 130, 246, 0.5);
    }
    to {
        text-shadow: 0 0 20px rgba(59, 130, 246, 0.8), 0 0 30px rgba(79, 70, 229, 0.6);
    }
}

.cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .licensing-section h2 {
        font-size: 2.25rem;
    }
    
    .cta h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 992px) {
    .page-hero {
        min-height: 250px;
        padding: 3rem 0;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .collection-card.featured {
        transform: scale(1);
        grid-column: 1;
        display: block;
    }
    
    .collection-card.featured .collection-image,
    .collection-card.featured .collection-details {
        width: 100%;
    }
    
    .collection-card.featured .collection-features {
        display: block;
    }
    
    .collection-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .license-options {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 200px;
        padding: 2.5rem 0;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .collection-price {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .collection-price .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .page-hero {
        min-height: 180px;
        padding: 2rem 0;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animations and Effects */
.collection-card, .feature-card, .license-option {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.collection-card:nth-child(1) {
    animation-delay: 0.1s;
}

.collection-card:nth-child(2) {
    animation-delay: 0.3s;
}

.collection-card:nth-child(3) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.5s;
}

.license-option:nth-child(1) {
    animation-delay: 0.2s;
}

.license-option:nth-child(2) {
    animation-delay: 0.4s;
}

/* Special effects for buttons */
.btn-glow:hover {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
}

/* Add animation for CTA button pulses */
.animate-pulse {
    animation: pulse 2s infinite;
}

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

/* Additional hover effects */
.license-button:hover {
    transform: translateY(-3px);
}

/* Section visibility for animation */
.product-collections.visible .collection-card,
.features-highlight.visible .feature-card,
.licensing-section.visible .license-option {
    opacity: 1;
    transform: translateY(0);
}