/* E-Stats.be - Traceersysteem Stylesheet */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #7c3aed;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #f9fafb;
    --border-color: #e5e7eb;
    --primary-dark: #1e40af;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    height: 72px;
    width: auto;
    display: block;
}

.site-header .suite-title {
    line-height: 1;
    font-size: 2.6rem;
}

.site-header .suite-title .suite-letter {
    font-size: 3.6rem;
}

.main-nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-color) 100%);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-logo {
    height: 60px;
    width: auto;
    vertical-align: middle;
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Module Logo Styles */
.module-logo {
    height: 65px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.module-header-logo {
    height: 75px;
    width: auto;
}

.module-header {
    display: flex;
    align-items: center;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(30, 64, 175, 0.05));
    border-bottom: 1px solid var(--border-color);
}

/* Content Section */
.content {
    padding: 3rem 0;
}

.content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-dark);
}

.content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.features.tools-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.suite-title {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-color);
}

.suite-title .suite-prefix {
    color: var(--primary-dark);
    font-weight: 700;
}

.suite-title .suite-letter {
    font-family: 'Permanent Marker', cursive;
    font-size: 3.3rem;
    font-weight: 400;
    line-height: 1;
    display: inline-block;
    transform: scaleY(1.1);
    transform-origin: center;
    margin-right: 0.05rem;
}

.permanent-marker-regular {
    font-family: 'Permanent Marker', cursive;
    font-weight: 400;
    font-style: normal;
}

.suite-title .suite-text {
    font-weight: 700;
    color: var(--text-color);
}

.suite-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.suite-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.85;
}

.feature-card p {
    margin: 0;
    font-size: 1rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin: 2rem 0 3rem;
}

.pricing-card {
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 20px 45px -25px rgba(30, 64, 175, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px -25px rgba(30, 64, 175, 0.45);
}

.pricing-card--highlight {
    background: linear-gradient(150deg, rgba(37, 99, 235, 0.1), rgba(30, 64, 175, 0.2));
    border-color: rgba(37, 99, 235, 0.35);
}

.pricing-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.pricing-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.pricing-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin: 0;
    padding: 0;
    color: var(--text-light);
}

.pricing-card ul li::before {
    content: '•';
    color: var(--primary-dark);
    margin-right: 0.6rem;
}

.pricing-card .btn {
    margin-top: auto;
    align-self: flex-start;
}

.status-banner {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin: 2rem 0 1.5rem;
    background: rgba(249, 115, 22, 0.12);
    border: 1px solid rgba(249, 115, 22, 0.35);
    color: #9a3412;
    box-shadow: 0 18px 30px -20px rgba(249, 115, 22, 0.35);
}

.status-banner--warning {
    background: linear-gradient(140deg, rgba(249, 115, 22, 0.16), rgba(234, 88, 12, 0.1));
}

.status-banner--success {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.35);
    color: #065f46;
    box-shadow: 0 18px 30px -20px rgba(16, 185, 129, 0.35);
}

.status-banner--success .status-indicator--green {
    background: linear-gradient(135deg, #10b981, #34d399);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.18);
}

.status-banner strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.status-banner p {
    margin: 0;
    font-size: 0.95rem;
    color: #9a3412;
}

.status-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.18);
    flex-shrink: 0;
}

/* Steps List */
.steps {
    counter-reset: step-counter;
    list-style: none;
    margin: 2rem 0;
}

.steps li {
    counter-increment: step-counter;
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    margin-bottom: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    background: var(--primary-color);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.steps strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.steps p {
    margin: 0;
    font-size: 1rem;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-color);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Footer */
.site-footer {
    background: linear-gradient(140deg, var(--primary-dark), var(--primary-color));
    color: rgba(255, 255, 255, 0.92);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.12), transparent 55%),
                radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.1), transparent 45%);
    opacity: 0.8;
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h4 {
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-logo {
        height: 50px;
    }

    .module-logo {
        height: 40px;
    }

    .module-header-logo {
        height: 36px;
    }

    .hero .lead {
        font-size: 1rem;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .features.tools-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
        width: 100%;
    }
}

/* =====================================================
   SIGNUP FORM STYLES
   ===================================================== */

/* Signup Section */
.signup-section {
    background: linear-gradient(145deg, var(--bg-light), rgba(37, 99, 235, 0.04));
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    border: 1px solid var(--border-color);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.signup-section h2 {
    margin-top: 0;
    text-align: center;
}

.signup-section > p {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-hint {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Module Selector Grid */
.module-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.module-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--bg-color);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.module-checkbox:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.module-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
    background: var(--bg-color);
}

.module-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.module-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.module-checkbox input[type="checkbox"]:checked ~ .module-label .module-name {
    color: var(--primary-color);
}

.module-label {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.module-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-color);
    transition: color 0.2s ease;
}

.module-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Bundle Buttons */
.bundle-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.bundle-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.bundle-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.bundle-btn--outline {
    background: transparent;
    color: var(--primary-color);
}

.bundle-btn--outline:hover {
    background: var(--primary-color);
    color: white;
}

/* Form Rows & Groups */
.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group:last-child {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--bg-color);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Consent Checkbox */
.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.consent-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.consent-checkbox .checkbox-custom {
    margin-top: 2px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
}

/* Coming Soon Notice */
.coming-soon-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: linear-gradient(135deg, #fef3c7, #fef9c3);
    border: 1px solid #f59e0b;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 1rem 0;
    font-size: 0.9rem;
    color: #92400e;
}

.coming-soon-notice .notice-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.coming-soon-notice p {
    margin: 0;
    line-height: 1.5;
}

/* Package Summary Card */
.package-summary {
    animation: fadeInUp 0.4s ease;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.package-summary h3 {
    margin: 0;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.package-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.package-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
}

.package-modules-list {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border-color);
}

.package-modules-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 0.75rem;
}

.package-modules-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.package-modules-list li {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-modules-list li.bonus-module {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    position: relative;
}

.package-modules-list li.bonus-module::after {
    content: ' (gratis)';
    font-weight: 400;
    opacity: 0.9;
}

.package-includes {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.package-include-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}

.package-include-item svg {
    color: #22c55e;
    flex-shrink: 0;
}

.package-include-item strong {
    color: var(--primary-color);
}

/* Prijsuitsplitsing */
.package-pricing-breakdown {
    background: rgba(37, 99, 235, 0.06);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    border: 1px dashed var(--primary-color);
}

.breakdown-title {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px dotted var(--border-color);
}

.breakdown-row:last-child {
    border-bottom: none;
}

.breakdown-row.breakdown-total {
    border-top: 2px solid var(--primary-color);
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 700;
}

.breakdown-label {
    color: var(--text-color);
}

.breakdown-price {
    font-weight: 600;
    color: var(--primary-color);
}

.breakdown-total .breakdown-price {
    font-size: 1.1rem;
}

.package-total {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    margin: 0.5rem -1.5rem -1.5rem -1.5rem;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.total-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.total-price {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.total-btw {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

@media (max-width: 600px) {
    .package-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .package-total {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

/* Submit Button */
.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large svg {
    transition: transform 0.3s ease;
}

.btn-large:hover svg {
    transform: translateX(4px);
}

/* Module Cards with Icons */
.module-card {
    position: relative;
}

.module-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Nav CTA Button */
.nav-cta {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none !important;
}

/* Nav Login Link */
.nav-login {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

.nav-login:hover {
    color: var(--primary-dark) !important;
}

/* Responsive Signup Form */
@media (max-width: 768px) {
    .signup-section {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }

    .module-selector {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .bundle-options {
        flex-direction: column;
    }

    .bundle-btn {
        width: 100%;
        text-align: center;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================
   MODULE DETAIL CARDS (Modules Page)
   ===================================================== */

.module-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem;
}

.module-detail-card {
    background: var(--bg-light);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.module-body {
    padding: 1.5rem 2rem 2rem;
}

.module-intro {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.module-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.module-features li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

.module-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Combination Cards */
.combination-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.combo-card {
    background: linear-gradient(145deg, var(--bg-light), rgba(37, 99, 235, 0.06));
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.combo-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.combo-card p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.combo-card p:last-child {
    margin-bottom: 0;
    color: var(--text-light);
}

/* =====================================================
   FAQ STYLES
   ===================================================== */

.faq-list {
    margin: 2rem 0;
}

.faq-item {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
    transition: background 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover {
    background: rgba(37, 99, 235, 0.05);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* Status Banner Info Variant */
.status-banner--info {
    background: linear-gradient(140deg, rgba(37, 99, 235, 0.12), rgba(30, 64, 175, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: var(--primary-dark);
}

.status-banner--info p {
    color: var(--primary-dark);
}

.status-indicator--blue {
    background: linear-gradient(135deg, var(--primary-color), #60a5fa);
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.18);
}

/* Module Selected State */
.module-card.module-selected {
    border-color: var(--primary-color);
    background: linear-gradient(145deg, var(--bg-light), rgba(37, 99, 235, 0.08));
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.module-card {
    cursor: pointer;
}

/* Responsive Module Details */
@media (max-width: 768px) {
    .module-details {
        grid-template-columns: 1fr;
    }

    .combination-examples {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   BONUS MODULE STYLES (Easy Score)
   ===================================================== */

/* Bonus Module Banner on Index Page */
.bonus-module-banner {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(139, 92, 246, 0.12));
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.bonus-module-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.bonus-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.bonus-logo {
    height: 80px;
    width: auto;
    flex-shrink: 0;
}

.bonus-text h3 {
    color: var(--secondary-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.bonus-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.bonus-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.bonus-features li {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Bonus Module Card on Modules Page */
.module-detail-card--bonus {
    border: 2px solid rgba(124, 58, 237, 0.4);
    background: linear-gradient(145deg, var(--bg-light), rgba(124, 58, 237, 0.06));
}

.module-detail-card--bonus:hover {
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.2);
}

.module-header--bonus {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(139, 92, 246, 0.08));
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bonus-badge {
    background: linear-gradient(135deg, var(--secondary-color), #a78bfa);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Combo Card Highlight */
.combo-card--highlight {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.15));
    border-color: rgba(124, 58, 237, 0.3);
}

.combo-card--highlight h4 {
    color: var(--secondary-color);
}

/* Pricing Card Bonus Highlight */
.pricing-card--bonus {
    background: linear-gradient(150deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.18));
    border: 2px solid rgba(124, 58, 237, 0.4);
    position: relative;
}

.pricing-card--bonus::before {
    content: '🎁';
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    font-size: 1.2rem;
}

/* Bonus Highlight Section on Pricing Page */
.bonus-highlight-section {
    margin: 3rem 0;
}

.bonus-highlight-section h2 {
    text-align: center;
    color: var(--secondary-color);
}

.bonus-highlight-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.08), rgba(139, 92, 246, 0.12));
    border: 2px solid rgba(124, 58, 237, 0.25);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1.5rem;
}

.bonus-highlight-logo {
    height: 100px;
    width: auto;
    flex-shrink: 0;
}

.bonus-highlight-content p {
    margin-bottom: 0.75rem;
}

.bonus-highlight-content p:last-child {
    margin-bottom: 0;
}

/* Responsive Bonus Styles */
@media (max-width: 768px) {
    .bonus-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bonus-logo {
        height: 60px;
    }

    .bonus-features {
        grid-template-columns: 1fr;
    }

    .bonus-highlight-card {
        flex-direction: column;
        text-align: center;
    }

    .bonus-highlight-logo {
        height: 70px;
    }

    .module-header--bonus {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* ============================================
   WEBSITE CARDS & TRACKING SETUP
   ============================================ */

.websites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.website-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.website-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.website-card--pending {
    border-color: #f59e0b;
    background: linear-gradient(to bottom, #fffbeb, var(--bg-color));
}

.website-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.website-favicon {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.website-favicon img {
    width: 24px;
    height: 24px;
}

.website-info {
    flex: 1;
    min-width: 0;
}

.website-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.website-url {
    font-size: 0.85rem;
    color: var(--text-light);
    text-decoration: none;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.website-url:hover {
    color: var(--primary-color);
}

.website-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

.status--active {
    background: #dcfce7;
    color: #166534;
}

.status--pending {
    background: #fef3c7;
    color: #92400e;
}

/* Script Setup Section */
.website-setup {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.setup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #92400e;
}

.setup-icon {
    font-size: 1.25rem;
}

.setup-text {
    font-size: 0.9rem;
    color: #78716c;
    margin-bottom: 0.75rem;
}

.setup-text code {
    background: #fef3c7;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.script-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #1f2937;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.script-code code {
    flex: 1;
    color: #10b981;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-copy {
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    font-size: 1rem;
    transition: color 0.2s;
}

.btn-copy:hover {
    color: white;
}

.setup-hint {
    font-size: 0.8rem;
    color: #78716c;
    margin: 0;
}

/* Website Modules & Stats */
.website-modules {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.module-icon-small {
    font-size: 1.25rem;
    padding: 0.35rem;
    background: var(--bg-light);
    border-radius: 6px;
    cursor: help;
}

.website-stats-mini {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* Website Actions */
.website-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-light);
}

.btn-outline:hover {
    background: var(--bg-light);
    border-color: var(--text-light);
}

.btn-success {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
}

.website-card--verified {
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

/* Responsive */
@media (max-width: 480px) {
    .websites-grid {
        grid-template-columns: 1fr;
    }

    .website-header {
        flex-wrap: wrap;
    }

    .website-status {
        order: -1;
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .script-code code {
        font-size: 0.65rem;
    }

    .website-actions {
        flex-direction: column;
    }

    .website-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
