/* ØnskeSky New Landing Page - Based on ØnskeMeg Design */

/* Reset and Base */
* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    overflow-x: hidden;
}

/* Header */
.header-new {
    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.05);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo-new {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon-new {
    font-size: 1.75rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 900;
    color: #0f172a;
}

.nav-links-new {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link-new {
    font-weight: 600;
    color: #64748b;
    transition: color 0.2s;
}

.nav-link-new:hover {
    color: #dc2626;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    background: #dc2626;
    color: white;
    font-weight: 700;
    border-radius: 0.75rem;
    transition: all 0.2s;
}

.btn-nav:hover {
    transform: scale(1.05);
    background: #b91c1c;
}

/* Snowflakes */
.snowflakes {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 60;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    color: white;
    user-select: none;
    animation: snowfall linear infinite;
    text-shadow:
        0 0 3px rgba(0, 0, 0, 0.5),
        0 0 5px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.4);
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.3));
}

/* Remove heavy filter on mobile for better performance */
@media (max-width: 768px) {
    .snowflake {
        filter: none;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    }
}

@keyframes snowfall {
    0% {
        transform: translateY(-10vh) translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateY(110vh) translateX(20px);
        opacity: 0.3;
    }
}

/* Hero Section */
.hero-new {
    padding: 140px 1rem 80px;
    text-align: center;
    background: linear-gradient(to top right, rgba(220, 38, 38, 0.08), rgba(255, 255, 255, 1), rgba(5, 150, 105, 0.04));
    position: relative;
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.blob-1 {
    top: 10%;
    left: -5%;
    width: 40%;
    height: 40%;
    background: rgba(254, 226, 226, 0.8);
}

.blob-2 {
    bottom: 10%;
    right: -5%;
    width: 40%;
    height: 40%;
    background: rgba(209, 250, 229, 0.8);
}

.hero-content-new {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: white;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 9999px;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeIn 0.8s ease-out forwards;
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #dc2626;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.status-badge span:last-child {
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1e293b;
}

.hero-title-new {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    line-height: 0.95;
}

.hero-accent {
    color: #dc2626;
    display: inline-block;
    transform: rotate(-1deg);
    transition: transform 0.3s;
}

.hero-accent:hover {
    transform: rotate(0deg);
}

.hero-description-new {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 500;
}

.hero-buttons-new {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons-new {
        flex-direction: row;
    }
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #dc2626;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -12px rgba(220, 38, 38, 0.4);
    transition: all 0.2s;
    border: 4px solid transparent;
}

.btn-hero-primary:hover {
    transform: scale(1.05);
    background: #b91c1c;
}

.btn-hero-primary:active {
    transform: scale(0.95);
}

.btn-icon {
    width: 1.75rem;
    height: 1.75rem;
    transition: transform 0.2s;
}

.btn-hero-primary:hover .btn-icon {
    transform: translateX(0.5rem);
}

.price-badge-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    border: 2px solid white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 700;
}

.price-label {
    opacity: 0.6;
    margin-right: 0.5rem;
}

.price-value {
    font-weight: 900;
    color: #059669;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Trust Banner */
.trust-banner {
    width: 100%;
    padding: 2rem 1rem;
    background: white;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem 1rem;
    opacity: 0.6;
    filter: grayscale(100%);
}

.trust-items span {
    font-size: 1.125rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Features Section */
.features-section-new {
    width: 100%;
    padding: 6rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.features-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.features-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4.5rem;
}

.features-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.features-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.feature-card {
    background: white;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03) 0%, rgba(220, 38, 38, 0) 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: rgba(220, 38, 38, 0.3);
    box-shadow: 0 20px 40px -12px rgba(220, 38, 38, 0.2),
        0 8px 16px -8px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(220, 38, 38, 0.04));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 1.25rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #dc2626;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon svg {
    color: white;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.875rem;
    line-height: 1.3;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.feature-card:hover .feature-title {
    color: #dc2626;
}

.feature-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
    color: #475569;
}

/* Add subtle animation on page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.feature-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.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:nth-child(5) {
    animation-delay: 0.5s;
}

/* Always Free Section */
.section-free {
    width: 100%;
    padding: 5rem 1rem;
    background: #0f172a;
    color: white;
    position: relative;
    overflow: hidden;
}

.section-free-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.05), transparent);
    pointer-events: none;
}

.section-free-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 768px) {
    .section-free-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.icon-badge-large {
    display: inline-block;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.2);
    border-radius: 1.5rem;
    margin-bottom: 2rem;
}

.icon-badge-large svg {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.section-title-large {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.text-accent {
    color: #dc2626;
}

.section-description {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.features-checklist {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
}

.check-item:hover {
    transform: translateX(4px);
}

.check-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
}

.check-item:hover .check-icon {
    background: rgba(34, 197, 94, 0.4);
}

.check-icon svg {
    width: 1rem;
    height: 1rem;
    color: #4ade80;
}

.check-item span {
    font-size: 1.125rem;
    font-weight: 700;
    color: #e2e8f0;
}

.section-free-card-wrapper {
    position: relative;
}

.glow-effect {
    position: absolute;
    inset: 0;
    filter: blur(100px);
    opacity: 0.2;
    background: rgba(220, 38, 38, 0.5);
}

.price-card-large {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2rem;
    backdrop-filter: blur(20px);
    text-align: center;
}

.price-card-header {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.price-card-amount {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.price-card-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 2rem;
}

.btn-price-card {
    width: 100%;
    padding: 1.5rem;
    background: #dc2626;
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.4);
    transition: all 0.2s;
    display: block;
}

.btn-price-card:hover {
    transform: scale(1.05);
    background: #b91c1c;
}

.btn-price-card:active {
    transform: scale(0.95);
}

/* Stats Section */
.stats-section-new {
    width: 100%;
    padding: 5rem 1rem;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
}

.stats-grid-new {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    text-align: center;
}

@media (min-width: 768px) {
    .stats-grid-new {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item-new {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value-new {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.stat-accent {
    color: #dc2626;
}

.stat-label-new {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
}

/* CTA Section */
.cta-section-new {
    width: 100%;
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-blur {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.05;
    filter: blur(120px);
    background: rgba(254, 226, 226, 1);
    pointer-events: none;
}

.cta-content-new {
    max-width: 56rem;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.cta-title-new {
    font-size: clamp(2.5rem, 7vw, 4rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.05em;
    line-height: 1.1;
}

.cta-description-new {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    font-weight: 500;
}

.btn-cta-large {
    padding: 1.25rem 2.5rem;
    background: #dc2626;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px -12px rgba(220, 38, 38, 0.4);
    transition: all 0.2s;
    display: inline-block;
    border: 4px solid transparent;
}

.btn-cta-large:hover {
    transform: scale(1.05);
    background: #b91c1c;
    border-color: rgba(99, 102, 241, 0.1);
}

.btn-cta-large:active {
    transform: scale(0.95);
}

.cta-small-text {
    margin-top: 2rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

/* Footer */
.footer-new {
    background: #047857;
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 1rem;
}

.footer-content-new {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content-new {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.logo-icon-footer {
    font-size: 1.5rem;
    padding: 0.375rem;
    background: #dc2626;
    border-radius: 0.5rem;
}

.logo-footer span {
    font-size: 1.25rem;
    font-weight: 900;
}

.footer-copy {
    font-size: 0.875rem;
}

.footer-links-new {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-links-new a {
    transition: color 0.2s;
}

.footer-links-new a:hover {
    color: white;
}