/* Reset og grundlæggende styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #25D366; /* WhatsApp grøn */
    --brand-color: #0072E3; /* ChampTech blå */
    --text-color: #333;
    --background-color: #fff;
    --section-padding: 80px 0;
    --container-width: 1200px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

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

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-left: 20px;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.header-cta:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 95px; /* Header height */
    padding-bottom: 100px; /* Gør plads til wave-container */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 114, 227, 0.4), rgba(0, 114, 227, 0.6));
}

.hero .container {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
    padding-top: 50px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s;
}

.hero .cta-button {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.6s, transform 0.6s ease-out 0.6s, background-color 0.3s ease;
}

.hero.visible h1,
.hero.visible .subtitle,
.hero.visible .cta-button {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 16px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

/* Problems Section */
.problems {
    position: relative;
    background: #FFFFFF;
    padding: 80px 0 120px;
    margin-bottom: -1px;
}

.problems h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    padding-top: 40px;
    padding-bottom: 20px;
    line-height: 1.3;
}

.problems-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 90px;
}

.problem-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.problem-icon {
    width: 70px;
    height: 70px;
    background-color: #0072E3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: transform 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
}

.problem-icon svg {
    width: 36px;
    height: 36px;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.problem-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Solution Section */
.solution {
    position: relative;
    background-color: #f9fafa;
    padding: 80px 0 120px;
    margin-top: -1px;
    z-index: 1;
}

/* Wave transition for Solution section */
.solution-wave {
    position: absolute;
    top: -119px;
    left: 0;
    width: 100%;
    height: 120px;
    line-height: 0;
    overflow: hidden;
    z-index: 2;
}

.solution-wave svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateY(1px);
}

.solution-wave path {
    fill: #f9fafa;
}

.solution-heading {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 64px;
    line-height: 1.3;
    position: relative;
}

/* Wave above heading */
.solution-heading-wave {
    position: relative;
    width: 100%;
    height: 120px;
    margin-bottom: -60px;
    line-height: 0;
    overflow: hidden;
}

.solution-heading-wave svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateY(1px);
}

.solution-cards {
    position: relative;
    z-index: 2; /* Sikrer at kortene er over bølgen */
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.solution-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 24px;
    text-align: center;
}

.card-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.card-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Tablet og desktop visning */
@media (min-width: 768px) {
    .solution-cards {
        flex-direction: row;
        gap: 24px;
    }

    .solution-card {
        flex: 1;
        max-width: calc(33.333% - 16px);
    }
}

/* Mobile tilpasninger */
@media (max-width: 767px) {
    .solution {
        padding: 48px 0;
    }

    .wave-transition-light {
        height: 80px;
    }

    .solution-heading {
        font-size: 2rem;
        margin-bottom: 48px;
        padding: 0 20px;
    }

    .solution-cards {
        padding: 0 16px;
    }

    .card-content {
        padding: 20px;
    }

    .card-content h3 {
        font-size: 1.25rem;
    }

    .card-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .problems {
        padding: 40px 0 0;
    }

    .solution {
        padding: 40px 0;
    }

    .solution-heading {
        font-size: 1.75rem;
        margin-bottom: 40px;
    }

    .problem-grid {
        gap: 25px;
    }

    .problem-card {
        padding: 30px 20px;
    }

    .problem-icon {
        width: 60px;
        height: 60px;
    }

    .problem-icon svg {
        width: 30px;
        height: 30px;
    }

    .logo {
        height: 45px;
    }

    .header-cta {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .hero {
        margin-top: 80px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 12px 24px;
    }

    .scroll-indicator {
        bottom: 100px;
    }
    
    .wave-container {
        height: 60px;
    }
    
    .scroll-arrow {
        width: 30px;
        height: 30px;
    }

    .solution-content p,
    .examples-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .wave-top, .wave-bottom {
        height: 60px;
    }

    .wave-top {
        top: -59px;
    }

    .wave-bottom {
        bottom: -59px;
    }

    .examples {
        padding: 80px 0 40px;
    }

    .example-content h3 {
        font-size: 1.2rem;
    }

    .example-content p {
        font-size: 0.95rem;
    }

    .solution-heading-wave {
        height: 80px;
        margin-bottom: -40px;
    }
}

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

/* How It Works Section */
.how-it-works {
    position: relative;
    background-color: #ffffff;
    padding: 80px 0 120px;
    margin-top: 40px;
    z-index: 2;
}

/* Spacing section mellem How It Works og Pricing */
.white-spacing {
    background-color: #ffffff;
    height: 80px;
    position: relative;
    z-index: 1;
}

/* Bottom wave for How It Works */
.how-it-works-bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    line-height: 0;
    overflow: hidden;
    z-index: 3;
}

.how-it-works-bottom-wave svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.how-it-works h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
    padding-top: 40px;
    padding-bottom: 20px;
    line-height: 1.3;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.step {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    text-align: center;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #333;
    text-align: center;
}

.step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* Wave transition for How It Works section */
.how-it-works-wave {
    position: absolute;
    top: -119px; /* Ændret fra -100px for at fjerne mellemrummet */
    left: 0;
    width: 100%;
    height: 120px;
    line-height: 0;
    overflow: hidden;
    z-index: 2;
}

.how-it-works-wave svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateY(1px);
}

.how-it-works-wave path {
    fill: #ffffff;
}

.solution-cards {
    position: relative;
    z-index: 2; /* Sikrer at kortene er over bølgen */
}

/* Responsive styles for How It Works */
@media (max-width: 992px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .solution {
        padding: 60px 0;
    }
    
    .how-it-works {
        margin-top: 30px; /* Mindre margin på mobil */
    }

    .how-it-works h2 {
        font-size: 28px;
        padding-top: 30px;
        padding-bottom: 15px;
    }

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

    .step {
        padding: 30px 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }

    .step h3 {
        font-size: 1.25rem;
    }

    .step p {
        font-size: 1rem;
    }

    .how-it-works-wave {
        top: -89px; /* Justeret for mobil visning */
    }

    .solution-heading-wave {
        height: 80px;
        margin-bottom: -40px;
    }
}

@media (max-width: 480px) {
    .how-it-works {
        padding: 40px 0;
    }

    .how-it-works h2 {
        font-size: 24px;
    }

    .step {
        padding: 25px 15px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .step h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .step p {
        font-size: 0.95rem;
    }

    .how-it-works-wave {
        top: -79px; /* Justeret for mindre skærme */
    }

    .solution-heading-wave {
        height: 60px;
        margin-bottom: -30px;
    }
}

/* Pricing Section */
.pricing {
    position: relative;
    background-color: #f9fafa;
    padding: 100px 0 140px;
    margin-top: -1px;
    z-index: 1;
}

/* Pricing wave transitions */
.pricing-wave {
    position: absolute;
    top: -119px;
    left: 0;
    width: 100%;
    height: 120px;
    line-height: 0;
    overflow: hidden;
    z-index: 2;
}

.pricing-wave svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateY(1px);
}

.pricing-bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    line-height: 0;
    overflow: hidden;
    z-index: 2;
}

.pricing-bottom-wave svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.pricing h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.pricing-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 12px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.05);
}

.pricing-card.featured {
    background-color: #ECFDF5;
    box-shadow: 0 8px 12px rgba(0,0,0,0.1), 0 2px 4px rgba(0,0,0,0.05);
    transform: scale(1.05);
    z-index: 1;
}

.pricing-card.featured:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 16px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--primary-color);
    color: white;
    padding: 8px 40px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0072E3;
    margin: 25px 0 10px;
    display: block;
    line-height: 1.2;
}

.features-list {
    margin: 2rem 0;
    padding: 0;
}

.feature-item {
    position: relative;
    padding-left: 2rem;
    margin: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #4B5563;
    text-align: left;
}

.feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
    font-size: 1.2rem;
}

.pricing-card.featured .feature-item::before {
    color: #059669;
}

.pricing-card .cta-button {
    width: 100%;
    margin-top: 2rem;
    justify-content: center;
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    background-color: #25D366;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.2);
}

.pricing-card .cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.3);
}

.trust-bar {
    max-width: 900px;
    margin: 6rem auto 50px;
    display: flex;
    justify-content: center;
    gap: 4rem;
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #4B5563;
    font-size: 1.1rem;
    font-weight: 500;
}

.trust-item span {
    font-size: 1.5rem;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card.featured {
        grid-column: span 2;
    }

    .trust-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }

    .pricing h2 {
        font-size: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        width: 90%;
    }

    .pricing-card.featured {
        grid-column: auto;
        transform: none;
    }

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

    .trust-bar {
        width: 90%;
        margin-top: 2rem;
    }

    .price {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 40px 0;
    }

    .pricing h2 {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .price {
        font-size: 2.2rem;
    }

    .feature-item {
        font-size: 1rem;
        margin: 0.75rem 0;
    }

    .pricing-card .cta-button {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }
}

/* FAQ Section */
.faq {
    position: relative;
    background-color: #ffffff;
    padding: 80px 0;
    margin-top: -1px;
    z-index: 1;
}

/* FAQ wave transition */
.faq-wave {
    position: absolute;
    top: -119px;
    left: 0;
    width: 100%;
    height: 120px;
    line-height: 0;
    overflow: hidden;
    z-index: 2;
}

.faq-wave svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateY(1px);
}

.faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.3;
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.faq-item {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brand-color);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.4;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive design for FAQ section */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .faq-item {
        padding: 30px;
        margin-bottom: 20px;
    }

    .faq-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .faq-item {
        padding: 25px;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-item h3 {
        font-size: 1.2rem;
    }
}

/* Final CTA Section */
.final-cta {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 100px 0;
    margin-top: -1px;
    overflow: hidden;
}

.final-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.final-cta h2 {
    color: white;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3),
                0 8px 30px rgba(37, 211, 102, 0.2);
}

.final-cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4),
                0 12px 40px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
}

.cta-icon {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.final-cta-button:hover .cta-icon {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .final-cta {
        padding: 80px 0;
    }

    .final-cta h2 {
        font-size: 2.2rem;
        padding: 0 20px;
    }

    .final-cta-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .final-cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Wave Transition */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 2;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 992px) {
    .problems h2 {
        font-size: 32px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .examples-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 0;
    }

    .example-card {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .problems {
        padding: 60px 0 0;
    }

    .problems h2 {
        font-size: 28px;
        padding-top: 30px;
        padding-bottom: 15px;
    }

    .problems-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .problem-card {
        margin-bottom: 20px;
    }

    .logo {
        height: 50px;
    }

    .header-cta {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .hero {
        margin-top: 85px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .scroll-indicator {
        bottom: 100px;
    }
    
    .wave-container {
        height: 80px;
    }

    .solution {
        padding: 60px 0;
    }
    
    .solution h2,
    .examples h2 {
        font-size: 28px;
    }
    
    .solution-content p,
    .examples-intro {
        font-size: 1.1rem;
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .wave-top, .wave-bottom {
        height: 80px;
    }

    .wave-top {
        top: -79px;
    }

    .wave-bottom {
        bottom: -79px;
    }

    .examples {
        padding: 100px 0 60px;
    }

    .examples-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .section-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .example-content h3 {
        font-size: 1.3rem;
    }

    .example-content p {
        font-size: 1rem;
    }

    .section-wave {
        height: 100px;
        margin-top: 60px;
    }
}

@media (max-width: 480px) {
    .problems {
        padding: 40px 0 0;
    }

    .problems h2 {
        font-size: 24px;
    }

    .problems-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .problem-grid {
        gap: 25px;
    }

    .problem-card {
        padding: 30px 20px;
    }

    .problem-icon {
        width: 60px;
        height: 60px;
    }

    .problem-icon svg {
        width: 30px;
        height: 30px;
    }

    .logo {
        height: 45px;
    }

    .header-cta {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .hero {
        margin-top: 80px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 12px 24px;
    }

    .scroll-indicator {
        bottom: 100px;
    }
    
    .wave-container {
        height: 60px;
    }
    
    .scroll-arrow {
        width: 30px;
        height: 30px;
    }

    .solution {
        padding: 40px 0;
    }
    
    .solution h2,
    .examples h2 {
        font-size: 24px;
    }
    
    .solution-content p,
    .examples-intro {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .wave-top, .wave-bottom {
        height: 60px;
    }

    .wave-top {
        top: -59px;
    }

    .wave-bottom {
        bottom: -59px;
    }

    .examples {
        padding: 80px 0 40px;
    }

    .example-content h3 {
        font-size: 1.2rem;
    }

    .example-content p {
        font-size: 0.95rem;
    }

    .section-wave {
        height: 80px;
        margin-top: 40px;
    }
}

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

.features-list {
    margin: 1.5rem 0;
    padding: 0;
}

.feature-item {
    position: relative;
    padding-left: 1.75rem;
    margin: 0.75rem 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #4B5563;
}

.feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.pricing-card.featured .feature-item::before {
    color: #059669;
}

/* Footer */
.footer {
    background-color: #121212;
    padding: 60px 0;
    color: rgba(255, 255, 255, 0.9);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.flag {
    display: inline-block;
    margin-left: 5px;
    font-size: 1.2rem;
    vertical-align: middle;
}

.footer-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: white;
}

.footer-links {
    text-align: right;
}

.legal-links {
    margin-bottom: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

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

    .legal-links a {
        display: block;
        margin: 1rem 0;
    }

    .copyright {
        margin-top: 1.5rem;
    }
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1), 0 -2px 4px -1px rgba(0, 0, 0, 0.06);
    z-index: 50;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    opacity: 0;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.sticky-cta.visible {
    transform: translateY(0);
    opacity: 1;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.sticky-cta-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.sticky-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.sticky-cta-button:hover {
    transform: translateY(-2px);
    background-color: #128C7E;
}

.close-cta-btn {
    background: #f3f4f6;
    border: none;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    font-size: 1.25rem;
    color: #4b5563;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.close-cta-btn:hover {
    background-color: #e5e7eb;
}

@media (min-width: 768px) {
    .sticky-cta {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .sticky-cta {
        padding: 0.625rem 0.875rem;
    }
    
    .sticky-cta-text {
        font-size: 0.875rem;
    }
    
    .sticky-cta-button {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
    }
    
    .close-cta-btn {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 1.125rem;
    }
}

/* Service buttons container */
.service-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
    flex-wrap: wrap;
}

/* Secondary button styling */
.secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    color: #0072E3;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #e5e7eb;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,114,227,0.06);
}
.secondary-button:hover {
    background: #e5e7eb;
    color: #005bb5;
    border-color: #cbd5e1;
    transform: translateY(-2px) scale(1.03);
}

/* Gør knapperne mindre på mobil */
@media (max-width: 480px) {
    .service-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .cta-button, .secondary-button {
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 12px 0;
    }
}

/* Software Solutions Section (kun til main.html) */
.software-overview {
    background: #f9fafa;
    padding: 90px 0 120px;
    margin-bottom: -1px;
}
.software-heading {
    font-size: 2.5rem;
    text-align: center;
    color: #222;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}
.software-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}
.software-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 48px;
    padding: 0 10px;
}
.software-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.07);
    padding: 38px 28px 32px 28px;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.software-card:hover {
    box-shadow: 0 12px 32px rgba(0,114,227,0.10);
    transform: translateY(-6px) scale(1.03);
}
.software-icon {
    width: 70px;
    height: 70px;
    background: #e6f0fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.software-icon svg {
    width: 36px;
    height: 36px;
}
.software-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0072E3;
    margin-bottom: 12px;
}
.software-card p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
}
.software-note {
    text-align: center;
    font-size: 1.1rem;
    color: #222;
    margin-top: 30px;
    font-weight: 500;
}
@media (max-width: 768px) {
    .software-overview {
        padding: 60px 0 60px;
    }
    .software-heading {
        font-size: 2rem;
    }
    .software-cards {
        gap: 18px;
    }
    .software-card {
        padding: 28px 12px 24px 12px;
    }
}
@media (max-width: 480px) {
    .software-overview {
        padding: 36px 0 36px;
    }
    .software-heading {
        font-size: 1.3rem;
    }
    .software-intro {
        font-size: 1rem;
        margin-bottom: 32px;
    }
    .software-cards {
        gap: 12px;
    }
    .software-card {
        padding: 18px 6px 16px 6px;
    }
    .software-note {
        font-size: 1rem;
        margin-top: 18px;
    }
} 