:root {
    --primary-color: #4361ee;
    --primary-light: #edf2ff;
    --primary-dark: #2b3cc0;
    --accent-color: #3a86ff;
    --text-color: #212529;
    --text-light: #6c757d;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --success-color: #38b000;
    --border-color: #dee2e6;
}

/* Farve tema variabler - mere afdæmpede og professionelle */
.theme-klassisk {
    --theme-primary: #2c3e50;
    --theme-secondary: #34495e;
    --theme-accent: #7f8c8d;
    --theme-light: #ecf0f1;
}

.theme-bla {
    --theme-primary: #1565c0;
    --theme-secondary: #1976d2;
    --theme-accent: #42a5f5;
    --theme-light: #e3f2fd;
}

.theme-groen {
    --theme-primary: #2e7d32;
    --theme-secondary: #388e3c;
    --theme-accent: #66bb6a;
    --theme-light: #e8f5e8;
}

.theme-custom {
    --theme-primary: #4361ee;
    --theme-secondary: #3a86ff;
    --theme-accent: #7209b7;
    --theme-light: #edf2ff;
}

/* Top Banner Styles */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 8px 0;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-logo {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: -0.2px;
}

.banner-logo .primary {
    color: var(--primary-color);
}

.banner-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.banner-star {
    color: #00b67a;
    font-size: 1.1rem;
    line-height: 1;
}

.banner-text {
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-left: 8px;
}

/* Moving Banner Styles */
.middle-moving-banner {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(233, 236, 239, 0.95) 100%);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(67, 97, 238, 0.1);
    border-bottom: 1px solid rgba(67, 97, 238, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 16px 0;
    overflow: hidden;
    white-space: nowrap;
    margin: 32px 0;
    position: relative;
}

.middle-banner-scroll {
    display: flex;
    align-items: center;
    animation: scroll-banner 140s linear infinite;
    gap: 15px;
    width: max-content;
}

.banner-set {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.middle-banner-item {
    display: inline-flex;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: -0.2px;
}

.middle-banner-logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
}

.middle-banner-logo .primary {
    color: var(--primary-color);
}

.middle-banner-slogan {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.middle-banner-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.middle-banner-star {
    color: #00b67a;
    font-size: 1.2rem;
    line-height: 1;
}

@keyframes scroll-banner {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Add subtle texture overlay */
.middle-moving-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(67, 97, 238, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

/* Professional hover effects */
.middle-moving-banner:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.middle-moving-banner:hover .middle-banner-scroll {
    animation-play-state: paused;
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .middle-banner-scroll {
        animation: none;
    }

    .middle-moving-banner:hover {
        transform: none;
    }
}

/* Mobile banner adjustments */
@media (max-width: 768px) {
    .what-you-get {
        grid-template-columns: 1fr !important;
    }

    .top-banner {
        padding: 6px 0;
    }

    .banner-content {
        padding: 0 15px;
    }

    .banner-logo {
        font-size: 0.9rem;
    }

    .banner-star {
        font-size: 1rem;
    }

    .banner-text {
        font-size: 0.8rem;
        margin-left: 6px;
    }

    /* Mobile responsive for middle moving banner */
    .middle-moving-banner {
        padding: 8px 0;
        margin: 20px 0;
    }

    .middle-banner-item {
        gap: 15px;
        padding: 0 10px;
    }

    .middle-banner-logo {
        font-size: 0.85rem;
    }

    .middle-banner-slogan {
        font-size: 0.7rem;
    }

    .middle-banner-star {
        font-size: 0.9rem;
    }

    .middle-banner-scroll {
        animation-duration: 100s;
        /* Slower mobile timing */
    }

    body {
        padding-top: 38px;
    }

}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    font-weight: 300;
    padding-top: 44px;
}

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

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    background-color: white;
}

.logo {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.3px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: white !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 60px 0;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.highlight {
    color: var(--primary-color);
    display: block;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.domain-form {
    display: flex;
    max-width: 500px;
    margin-top: 30px;
}

.domain-form input {
    flex: 1;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px 0 0 6px;
    outline: none;
}

.domain-form button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.domain-form button:hover {
    background-color: var(--primary-dark);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
}

/* How it Works */
.how-it-works {
    padding: 80px 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
}

/* Add horizontal line across all steps */
.steps::before {
    content: "";
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 0;
}

.step-card {
    flex: 1;
    padding: 30px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Generator Header */
.generator-header {
    text-align: center;
    padding: 40px 0;
}

.generator-header h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.generator-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Progress Indicator */
.progress-container {
    margin: 40px 0;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.progress-steps::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--border-color);
    z-index: 1;
}

.progress-steps .progress-line {
    position: absolute;
    top: 25px;
    left: 0;
    height: 3px;
    background-color: var(--primary-color);
    z-index: 2;
    transition: width 0.4s ease;
}

.step {
    width: 50px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    border: 2px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 10px;
    font-weight: 500;
    color: var(--text-light);
    transition: all 0.3s ease;
}

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

.step.completed .step-circle {
    border-color: var(--primary-color);
    background-color: var(--primary-color);
    color: white;
}

.step.completed .step-circle::after {
    content: "✓";
}

.step-name {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.step.active .step-name {
    color: var(--primary-color);
    font-weight: 600;
}

/* Form Steps Container */
.form-container {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto 60px;
    min-height: 500px;
}

/* Hide steps that are not active */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

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

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

.form-step h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: -0.2px;
}

/* Form Elements */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 400;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.form-group .required::after {
    content: " *";
    color: #dc3545;
}

/* Domain options */
.domain-options {
    margin-top: 30px;
}

.domain-option {
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.domain-option:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.domain-option input[type="radio"] {
    margin-right: 15px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.domain-option label {
    font-weight: 500;
    cursor: pointer;
    flex: 1;
}

/* Design Options */
.design-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.design-option {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.design-option:hover {
    border-color: var(--primary-color);
}

.design-option.selected {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.design-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.design-preview {
    margin-bottom: 15px;
    text-align: center;
}

.design-preview svg {
    max-width: 100%;
    height: auto;
}

.design-info h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.design-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Color Theme Options */
.color-themes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.color-theme-option {
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.color-theme-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.color-theme-option.selected {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.color-theme-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.color-palette {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    justify-content: center;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.theme-info h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
    text-align: center;
}

.theme-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
}

.theme-price {
    display: block;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

/* Color Picker Button */
#color-picker-btn {
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    margin-top: 10px;
}

#color-picker-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

#color-picker-btn:active {
    transform: translateY(0);
}

/* Enhanced Color Picker for iOS */
#custom-color-picker {
    width: 50px !important;
    height: 50px !important;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: -5px;
    left: -5px;
    z-index: 20;
    -webkit-appearance: none;
    appearance: none;
}

/* iOS Safari color picker fix */
@supports (-webkit-touch-callout: none) {
    #custom-color-picker {
        opacity: 0.01 !important;
        /* iOS needs some opacity to register clicks */
    }
}

/* Standard browsers */
@supports not (-webkit-touch-callout: none) {
    #custom-color-picker {
        opacity: 0;
    }
}

/* Custom Color Palette Styles */
.color-palette-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.color-palette-modal.active {
    display: flex;
}

.color-palette-content {
    background: white;
    border-radius: 12px;
    padding: 25px;
    max-width: 90%;
    width: 400px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.color-palette-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.color-palette-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.color-palette-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    padding: 5px;
}

.predefined-colors {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(44px, 1fr));
    gap: 8px;
    margin-bottom: 25px;
}

.color-option {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    position: relative;
}

.color-option:hover {
    transform: scale(1.1);
    border-color: var(--border-color);
}

.color-option.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

.color-option.selected::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

.color-sliders {
    margin-bottom: 20px;
}

.color-slider-group {
    margin-bottom: 15px;
}

.color-slider-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hue-slider,
.lightness-slider {
    width: 100%;
    height: 30px;
    border-radius: 15px;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
}

.hue-slider {
    background: linear-gradient(to right,
            hsl(0, 100%, 50%),
            hsl(60, 100%, 50%),
            hsl(120, 100%, 50%),
            hsl(180, 100%, 50%),
            hsl(240, 100%, 50%),
            hsl(300, 100%, 50%),
            hsl(360, 100%, 50%));
}

.lightness-slider {
    background: linear-gradient(to right,
            hsl(var(--current-hue), 100%, 10%),
            hsl(var(--current-hue), 100%, 50%),
            hsl(var(--current-hue), 100%, 90%));
}

.hue-slider::-webkit-slider-thumb,
.lightness-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.color-preview-section {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.color-preview-large {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    flex-shrink: 0;
}

.color-input-group {
    flex: 1;
}

.color-input-group label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.hex-input {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-family: monospace;
    font-size: 1rem;
    text-transform: uppercase;
}

.hex-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

.color-palette-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.color-palette-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.color-palette-cancel {
    background: var(--bg-light);
    color: var(--text-color);
}

.color-palette-confirm {
    background: var(--primary-color);
    color: white;
}

.color-palette-confirm:hover {
    background: var(--primary-dark);
}

/* Mobile adjustments for color palette */
@media (max-width: 768px) {
    .color-palette-content {
        padding: 20px;
        width: 95%;
    }

    .predefined-colors {
        grid-template-columns: repeat(auto-fill, minmax(40px, 1fr));
        gap: 6px;
    }

    .color-option {
        width: 40px;
        height: 40px;
    }
}

/* Business Type Options */
.business-type-option {
    position: relative;
}

.business-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.business-type-option:hover>div {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.business-type-option input[type="radio"]:checked+div {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
    box-shadow: 0 4px 15px rgba(67, 97, 238, 0.2);
}

.business-type-option input[type="radio"]:checked+div h4 {
    color: var(--primary-color);
}

/* Enhanced Color Display Styling */
#custom-color-display {
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    cursor: pointer;
}

#custom-color-display:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

#custom-color-display:active {
    transform: scale(0.95);
}

/* Add subtle animation to indicate clickability */
.color-theme-option[data-theme="custom"] .color-palette {
    animation: subtle-pulse 2s infinite;
}

@keyframes subtle-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

/* Feature Options */
.feature-options {
    margin-top: 30px;
}

.feature-option {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.feature-option:hover {
    border-color: var(--primary-color);
    background-color: var(--primary-light);
}

.feature-option input[type="checkbox"] {
    margin-right: 15px;
    margin-top: 5px;
}

.feature-details {
    flex: 1;
}

.feature-details h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.feature-price {
    color: var(--primary-color);
    font-weight: 500;
}

.feature-details p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Button Styles */
.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn {
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back {
    background-color: var(--bg-light);
    color: var(--text-color);
}

.btn-back:hover {
    background-color: var(--border-color);
}

.btn-next {
    background-color: var(--primary-color);
    color: white;
}

.btn-next:hover {
    background-color: var(--primary-dark);
}

/* Sticky Bottom Navigation */
.sticky-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
    z-index: 999;
    padding: 12px 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease;
    min-height: 60px;
}

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

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

.sticky-bottom-nav .button-group {
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
}

.sticky-bottom-nav .btn {
    pointer-events: auto;
    cursor: pointer;
    min-height: 44px;
    min-width: 120px;
}

.bottom-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.progress-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.progress-indicator .current-step {
    color: var(--primary-color);
    font-weight: 600;
}

/* Mobile responsive for bottom banner */
@media (max-width: 768px) {
    .sticky-bottom-nav {
        padding: 10px 0;
    }

    .sticky-bottom-nav .container {
        padding: 0 15px;
    }

    .progress-indicator {
        font-size: 0.8rem;
        gap: 8px;
    }

    .sticky-bottom-nav .button-group {
        gap: 10px;
    }
}

/* Safe area for mobile devices */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .sticky-bottom-nav {
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
    }
}

/* Price Summary */
.price-summary {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.price-summary h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.price-total {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* Confirmation Page */
.confirmation-container {
    text-align: center;
    padding: 40px 0;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 40px;
}

.confirmation-icon-error {
    margin: 0 auto 30px;
    display: none;
}

.order-details {
    margin: 40px 0;
    text-align: left;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.order-details h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.detail-item {
    margin-bottom: 10px;
}

.detail-item strong {
    display: inline-block;
    min-width: 150px;
}

.login-details {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--primary-light);
    border-radius: 8px;
}

.login-details p {
    margin-bottom: 15px;
}

/* Mobile-specific progress indicator */
@media (max-width: 768px) {
    .progress-container {
        margin: 20px 0;
    }

    /* Simplified mobile progress */
    .mobile-progress {
        display: block;
        text-align: center;
        padding: 15px;
        background: var(--bg-light);
        border-radius: 8px;
        margin: 0 15px;
    }

    .mobile-progress-text {
        font-size: 1.1rem;
        color: var(--primary-color);
        font-weight: 600;
    }

    .mobile-progress-subtitle {
        font-size: 0.9rem;
        color: var(--text-light);
        margin-top: 5px;
    }
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 50px 0;
}

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

.footer-column {
    flex: 1;
}

.footer-column:first-child {
    flex: 2;
    max-width: 400px;
}

.footer-column:nth-child(2) {
    flex: 0.8;
    min-width: 100px;
}

.footer-column:last-child {
    flex: 1.2;
    min-width: 180px;
}

.footer-column h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #495057;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    color: #adb5bd;
}

/* Enhanced Domain Check Styles - Simply.com Inspired */
.domain-check-loading {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin: 20px 0;
}

.domain-spinner {
    border: 4px solid #e9ecef;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.domain-check-result {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.domain-check-result:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.domain-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-family: monospace;
    text-align: center;
    padding: 10px;
    background: var(--primary-light);
    border-radius: 8px;
}

.check-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.check-method {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.check-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-color: #28a745;
}

.check-fail {
    background: linear-gradient(135deg, #f8d7da 0%, #f1b0b7 100%);
    color: #721c24;
    border-color: #dc3545;
}

.check-loading {
    background: linear-gradient(135deg, #cce7ff 0%, #99d6ff 100%);
    color: #004085;
    border-color: #007bff;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.check-error {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    color: #856404;
    border-color: #ffc107;
}

.domain-status {
    padding: 20px;
    border-radius: 10px;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
    font-size: 1.3rem;
    border: 3px solid;
}

.domain-available {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border-color: #28a745;
}

.domain-taken {
    background: linear-gradient(135deg, #f8d7da 0%, #f1b0b7 100%);
    color: #721c24;
    border-color: #dc3545;
}

.domain-confidence {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 10px;
    font-weight: 500;
}

.domain-result-selector {
    margin-top: 20px;
    padding: 15px;
    background: var(--primary-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.domain-result-selector:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
}

.domain-result-selector input[type="radio"] {
    margin-right: 15px;
    transform: scale(1.2);
}

/* Simply.com inspired domain pricing display */
.domain-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
}

.domain-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.domain-yearly-price {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Enhanced loading states */
.domain-check-header {
    text-align: center;
    margin-bottom: 30px;
}

.domain-check-header h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.domain-check-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Method details expansion */
.check-method-details {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-top: 5px;
    display: none;
}

.check-method:hover .check-method-details {
    display: block;
}

/* Simple domain option styling */
.simple-domain-option {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.simple-domain-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.domain-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.domain-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-family: monospace;
}

.domain-price-display {
    text-align: right;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-left: 2px;
}

.domain-status-simple {
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
}

.status-available {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-taken {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f1b0b7;
}

.domain-select-option {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: var(--primary-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.domain-select-option:hover {
    background: var(--primary-color);
    color: white;
}

.domain-select-option input[type="radio"] {
    margin-right: 12px;
    transform: scale(1.2);
}

.domain-select-option label {
    font-weight: 500;
    cursor: pointer;
    flex: 1;
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    padding: 10px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 1000;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu-links a {
    font-size: 1.2rem;
    padding: 15px;
    text-decoration: none;
    color: var(--text-color);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.mobile-menu-links a:hover {
    background-color: var(--bg-light);
}

.mobile-menu-links .cta-button {
    text-align: center;
    margin-top: 20px;
}

/* Enhanced Mobile Styles */
@media (max-width: 768px) {

    /* Better touch targets */
    button,
    .btn,
    input[type="submit"] {
        min-height: 48px;
        font-size: 1rem;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px;
        /* Prevents zoom on iOS */
        min-height: 48px;
    }

    /* Form container padding */
    .form-container {
        padding: 20px 15px;
        margin: 0 10px 40px;
    }

    /* Hero adjustments */
    h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    /* Domain form mobile */
    .domain-form {
        gap: 10px;
    }

    /* Features grid */
    .feature-grid {
        gap: 20px;
    }

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

    /* Section padding */
    .features,
    .how-it-works,
    .pricing-section,
    .faq-section {
        padding: 50px 0;
    }

    /* Progress steps mobile */
    .progress-steps {
        padding: 0 20px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .progress-steps::before {
        display: none;
    }

    .progress-steps .progress-line {
        display: none;
    }

    .step {
        min-width: auto;
        margin: 5px;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .step-name {
        font-size: 0.7rem;
        max-width: 60px;
    }

    /* Hero image mobile */
    .hero-image {
        display: none;
    }

    /* Steps section mobile */
    .step-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Form groups mobile spacing */
    .form-group {
        margin-bottom: 20px;
    }

    /* Larger click areas for radio/checkbox */
    input[type="radio"],
    input[type="checkbox"] {
        min-width: 24px;
        min-height: 24px;
    }

    /* Domain option mobile */
    .domain-option {
        padding: 20px 15px;
    }

    /* Design option mobile */
    .design-option {
        padding: 15px;
    }

    .design-preview svg {
        max-width: 180px;
    }

    /* Color theme mobile */
    .color-theme-option {
        padding: 15px;
    }

    /* Section title mobile */
    .section-title h2 {
        font-size: 1.8rem;
    }

    /* Service section grid mobile */
    section[style*="display: grid"] {
        display: block !important;
    }

    /* Touch-friendly spacing */
    a,
    button,
    input,
    select,
    textarea {
        touch-action: manipulation;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    #generator-page,
    #landing-page,
    #pricing-page {
        overflow-x: hidden;
    }

    /* Price summary on mobile */
    .price-summary {
        margin-top: 30px;
        padding: 15px;
        background: var(--bg-light);
        border-radius: 8px;
    }

    /* Domain options mobile */
    .simple-domain-option {
        padding: 15px;
    }

    .domain-title {
        font-size: 1.2rem;
    }

    /* Color theme options mobile */
    .color-palette {
        gap: 5px;
    }

    .color-swatch {
        width: 35px;
        height: 35px;
    }

    /* Upload areas mobile */
    .upload-area {
        padding: 20px 15px;
    }

    /* Content sections mobile */
    .content-section {
        padding: 20px 15px !important;
        margin: 20px 0 !important;
    }

    /* Responsive styles */
    .check-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
    }

    .steps::before {
        display: none;
    }

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

    .domain-form {
        flex-direction: column;
    }

    .domain-form input,
    .domain-form button {
        width: 100%;
        border-radius: 6px;
    }

    .domain-form button {
        margin-top: 10px;
    }

    /* Navigation mobile */
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
    }

    nav {
        padding: 15px 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    /* Container adjustments */
    .container {
        padding: 0 15px;
    }

    /* Generator header */
    .generator-header h1 {
        font-size: 2rem;
    }

    .generator-header p {
        font-size: 1rem;
    }

    /* Form step titles */
    .form-step h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    /* Button improvements */
    .domain-form button {
        padding: 15px 20px;
    }

    /* Feature options mobile */
    .feature-option {
        padding: 20px 15px;
    }

    .feature-details h3 {
        font-size: 1rem;
    }

    /* Design preview mobile */
    #theme-preview {
        margin-top: 30px;
    }

    /* Footer mobile */
    footer {
        padding: 30px 0;
    }

    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    /* FAQ mobile */
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-answer {
        padding: 15px 20px;
    }

    /* Order details mobile */
    .order-details {
        padding: 15px;
    }

    /* Payment section mobile */
    .payment-section {
        padding: 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Custom domain check mobile */
    #custom-domain {
        width: 100%;
    }

    .form-container {
        padding: 20px;
    }

    .design-options {
        grid-template-columns: 1fr;
    }

    .color-themes {
        grid-template-columns: 1fr;
    }

    .business-type-options {
        grid-template-columns: 1fr !important;
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    /* Responsive styles for new service explanation section */
    section[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    section[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    div[style*="padding: 30px"] {
        padding: 20px !important;
    }

    div[style*="font-size: 2.5rem"] {
        font-size: 2rem !important;
    }

    h3[style*="font-size: 1.8rem"] {
        font-size: 1.5rem !important;
    }

    p[style*="font-size: 1.1rem"] {
        font-size: 1rem !important;
    }
}

/* iOS Safari specific fixes */
@supports (-webkit-touch-callout: none) {

    /* iOS only styles */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    textarea,
    select {
        font-size: 16px !important;
        /* Prevents zoom on focus */
        -webkit-appearance: none;
        -webkit-border-radius: 6px;
    }

    /* Fix iOS tap highlight */
    a,
    button,
    input,
    select,
    textarea {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    /* Smooth scrolling on iOS */
    body {
        -webkit-overflow-scrolling: touch;
    }

    /* Fix position fixed on iOS */
    .mobile-menu {
        position: fixed;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
}

/* Payment Option Styles */
.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.payment-option:hover>div {
    border-color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.15);
}

.payment-option input[type="radio"]:checked+div {
    border-color: var(--primary-color) !important;
    background-color: var(--primary-light) !important;
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.2);
}

.payment-option input[type="radio"]:checked+div h3 {
    color: var(--primary-color) !important;
}

/* Additional responsive styles for the new service section */
@media (max-width: 768px) {
    .service-explanation-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .service-stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-explanation-padding {
        padding: 20px !important;
    }

    .service-process-step {
        flex-direction: column;
        text-align: center;
    }

    .service-process-step span {
        margin-bottom: 10px;
        margin-right: 0 !important;
    }

    /* Payment options mobile */
    .payment-option>div {
        padding: 25px 20px !important;
    }
}

/* Pricing Page Styles */
.pricing-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "MEST POPULÆR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.package-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.package-subtitle {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

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

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.features-list li::before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}

.features-list li.not-included {
    color: var(--text-light);
    opacity: 0.6;
}

.features-list li.not-included::before {
    content: "✗";
    color: var(--text-light);
}

.pricing-button {
    width: 100%;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.pricing-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.pricing-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: none;
}

.pricing-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.addons-section {
    padding: 60px 0;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.addon-card {
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.addon-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.addon-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.addon-description {
    color: var(--text-light);
    line-height: 1.5;
}

.faq-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px 25px;
    background-color: white;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 20px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .addon-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile improvements for confirmation page */
    #form-step5 h2 {
        font-size: 1.8rem !important;
    }

    #form-step5 .order-summary>div {
        gap: 20px !important;
    }

    #form-step5 .order-summary>div>div {
        padding: 20px !important;
    }

    #form-step5 .order-summary h4 {
        font-size: 1.2rem !important;
    }

    #form-step5 .order-summary div[style*="display: flex"] div:first-child {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.2rem !important;
    }

    #complete-order-btn {
        padding: 18px 40px !important;
        font-size: 1.2rem !important;
    }

    #form-step5 div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media only screen and (max-width: 500px){
    .businessNameHeading{
        font-size: 1.2rem !important;
    }
    .form-container{
        padding: 0 !important;
    }

    .banner-stars:not(.banner-stars .banner-stars){
        flex-direction: column;
        align-items: flex-end;
    }

    .banner-stars .banner-text{
        font-size: 0.6rem !important;
    }
}