/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a3a5c;
    --primary-dark: #0b1e3a;
    --primary-light: #2d5a8a;
    --text: #333;
    --text-light: #666;
    --bg: #ffffff;
    --bg-alt: #f5f5f5;
    --border: #e0e0e0;
    --accent: #22c55e;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #999;
    --gray-dark: #333;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.site-header {
    background: var(--primary-dark);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.site-header .container-wide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image-link {
    text-decoration: none;
    display: block;
}

.site-logo {
    height: 40px;
    width: auto;
    display: block;
}

.site-title-link {
    text-decoration: none;
    color: white;
}

.site-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
    padding: 0.5rem 0;
}

.main-nav a:hover {
    opacity: 0.8;
}

.main-nav a.active {
    border-bottom: 2px solid white;
}

.btn-nav {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.3s;
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

/* Header audio player */
.header-audio-player {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.play-button-header {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.play-button-header:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.play-button-header .play-icon {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-dark);
    border-radius: 50%;
    flex-shrink: 0;
}

.play-button-header .play-text {
    font-weight: 600;
    color: white !important;
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-logout {
    background: rgba(220, 53, 69, 0.2);
    border-color: rgba(220, 53, 69, 0.5);
}

.btn-logout:hover {
    background: rgba(220, 53, 69, 0.4);
}

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

.logo img {
    height: 28px;
    filter: brightness(0) invert(1);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.8;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-lead {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.hero-sub {
    font-size: 1.15rem;
    opacity: 0.9;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section {
    padding: 4rem 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-stats {
    background: var(--primary-dark);
    color: white;
}

.section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-dark);
}

.section-alt h2,
.section-stats h2 {
    color: inherit;
}

/* ==========================================================================
   CONTENT BOXES
   ========================================================================== */
.content-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

.comparison-item {
    background: var(--bg-alt);
    padding: 1.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
}

.highlight {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin: 2rem 0;
}

.conclusion {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

/* ==========================================================================
   LAW GRID
   ========================================================================== */
.law-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.law-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.law-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.law-card p {
    line-height: 1.7;
    color: var(--text-light);
}

/* ==========================================================================
   RESEARCH
   ========================================================================== */
.intro-text {
    text-align: center;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

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

.research-box {
    background: var(--bg-alt);
    padding: 2rem;
    border-radius: 8px;
}

.research-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.research-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.note {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
}

.prompt-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.prompt-box code {
    display: block;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text);
}

.btn-copy {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background 0.3s;
}

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

/* ==========================================================================
   STATS
   ========================================================================== */
.stats-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.stats-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.stats-label {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    color: var(--text-light);
}

.stats-counter {
    margin: 2rem 0;
}

.count-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-dark);
    display: inline-block;
}

.count-label {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.stats-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.progress-container {
    margin: 2rem 0;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: var(--accent);
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.stats-power {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--gray-light);
    border-radius: 8px;
}

.stats-goal {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.stats-info {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* ==========================================================================
   CTA
   ========================================================================== */
.cta-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

.cta-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.email-form {
    margin-top: 2rem;
    text-align: left;
}

.email-form input[type="email"] {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.email-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
}

.checkbox-label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input {
    margin-top: 0.2rem;
    cursor: pointer;
}

.form-buttons {
    display: flex;
    gap: 1rem;
}

.form-buttons .btn {
    flex: 1;
}

/* Confirmation */
.confirmation {
    background: var(--bg-alt);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.confirmation-box {
    background: linear-gradient(135deg, var(--accent) 0%, #16a34a 100%);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 3px solid var(--accent);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
    color: white;
    animation: slideDown 0.5s ease-out;
}

#support-confirmation.celebration .confirmation-box {
    animation: slideDown 0.5s ease-out, celebration 1s ease-out 0.5s;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes celebration {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.02);
    }
}

.confirmation-primary {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    animation: bounce 1s ease-in-out infinite;
}

#support-confirmation.celebration .confirmation-primary {
    animation: bounce 1s ease-in-out infinite, rotate 0.5s ease-in-out;
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.confirmation-secondary {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.confirm-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.confirm-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.confirm-text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.share-section {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.share-heading {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.share-box {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.share-title {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.btn-share {
    padding: 0.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-share:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-share-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.btn-share-twitter:hover {
    background: #000;
    border-color: #000;
}

.btn-share-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.share-icon {
    font-weight: bold;
}

/* ==========================================================================
   STRATEGY
   ========================================================================== */
.strategy-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.step-content p {
    line-height: 1.7;
    color: var(--text-light);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.cta-center {
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
}

.site-footer {
    background: var(--primary-dark);
    color: white;
    padding: 3rem 0 2rem;
    text-align: center;
    margin-top: 4rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.footer-note {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
    font-style: italic;
}

/* SUPPORT PROJECT BUTTON */
.support-project {
    margin-top: 1.5rem;
    text-align: center;
    position: relative;
}

.support-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.support-btn:hover {
    opacity: 1;
    border-color: rgba(255,255,255,0.6);
    color: white;
    background: rgba(255,255,255,0.1);
}

.support-btn.active {
    opacity: 1;
    border-color: rgba(255,255,255,0.8);
    color: white;
    background: rgba(255,255,255,0.15);
}

.support-image-container {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 1rem;
    z-index: 100;
    max-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
    background: white;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.support-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   HERO ART SECTION (from index-final)
   ========================================================================== */
.hero-art {
    position: relative;
    height: 65vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(11, 30, 58, 0.75) 0%,
        rgba(11, 30, 58, 0.9) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   QUESTION SECTION
   ========================================================================== */
.question-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.question-box h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.question-content {
    max-width: 900px;
    margin: 0 auto;
}

.scenario-intro {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 2.5rem;
}

.question-choice {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--border);
}

.choice-option {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background-color: var(--gray-light);
    border-radius: 8px;
}

.choice-label {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.choice-text {
    flex: 1;
}

.choice-text strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.choice-text p {
    font-size: 1.05rem;
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.choice-note {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--gray-medium);
}

.choice-vs {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-dark);
    margin: 1rem 0;
}

.question-conclusion {
    margin-top: 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 12px;
    text-align: center;
}

.question-conclusion p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.conclusion-highlight {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0 !important;
}

/* ==========================================================================
   RESEARCH SECTION
   ========================================================================== */
.research-section {
    padding: 4rem 2rem;
}

.research-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 2rem;
}

.research-content {
    max-width: 1000px;
    margin: 0 auto;
}

.research-intro {
    font-size: 1.3rem;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    font-weight: 600;
}

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

.research-tool {
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
}

.research-tool h3 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.prompt-box {
    background-color: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.prompt-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.prompt-text {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-dark);
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-dark);
}

.prompt-text ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.btn-copy-prompt {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-copy-prompt:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.research-conclusion {
    margin-top: 3rem;
    padding: 2.5rem;
    background-color: var(--gray-light);
    border-radius: 12px;
    border-left: 5px solid var(--primary-dark);
    text-align: center;
}

.research-conclusion p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.research-conclusion p:last-child {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 0;
}

/* ==========================================================================
   ART CONTEXT SECTION
   ========================================================================== */
.art-context-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.art-context-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.art-context-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid var(--border);
}

.art-context-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.art-question {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-dark);
    padding: 1.5rem;
    background-color: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-dark);
    text-align: center;
}

/* ==========================================================================
   LAW SIMPLE SECTION
   ========================================================================== */
.law-simple-section {
    padding: 4rem 2rem;
}

.law-simple-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.law-simple-box {
    max-width: 900px;
    margin: 0 auto;
}

.law-simple-intro {
    font-size: 1.25rem;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

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

.comparison-item {
    background-color: var(--gray-light);
    padding: 1rem;
    border-radius: 6px;
    text-align: center;
    font-size: 1.05rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.law-simple-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-dark);
    margin: 2rem 0 3rem;
    padding: 1.5rem;
    background-color: var(--gray-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-dark);
}

.law-key-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.key-point {
    background-color: var(--white);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
}

.key-point h3 {
    font-size: 1.2rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.key-point p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

.law-cta {
    text-align: center;
    margin-top: 2rem;
}

/* ==========================================================================
   CTA SIMPLE
   ========================================================================== */
.cta-simple {
    font-size: 1.2rem;
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   STRATEGY SIMPLE
   ========================================================================== */
.strategy-simple-section {
    padding: 4rem 2rem;
    background-color: #f9fafb;
}

.strategy-simple-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.strategy-simple {
    max-width: 800px;
    margin: 0 auto;
}

.strategy-step-simple {
    display: flex;
    gap: 2rem;
    align-items: center;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border);
    margin-bottom: 1.5rem;
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.strategy-step-simple p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray-dark);
}

/* ==========================================================================
   ART SALE SIMPLE
   ========================================================================== */
.art-sale-simple {
    padding: 3rem 2rem;
}

.art-sale-box-simple {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: var(--gray-light);
    padding: 2.5rem;
    border-radius: 12px;
}

.art-sale-box-simple h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.art-sale-box-simple p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.btn-art-simple {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2rem;
    background-color: var(--primary-dark);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-art-simple:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   LANDING SECTION
   ========================================================================== */
.landing-section {
    padding: 4rem 0;
}

/* ==========================================================================
   HERO SECTION (simple)
   ========================================================================== */
.hero-section {
    text-align: center;
    padding: 3rem 0 2rem;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.hero-subtitle-main {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ==========================================================================
   ARGUMENT SECTION
   ========================================================================== */
.argument-section {
    background-color: var(--bg-alt);
    padding: 3rem 2rem;
}

.argument-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.argument-intro {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.argument-list {
    margin: 1.5rem 0;
}

.argument-list p {
    font-size: 1.1rem;
    color: var(--text);
    margin: 0.75rem 0;
    line-height: 1.8;
}

.argument-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
}

.argument-conclusion {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 1.5rem 0;
}

.argument-tagline {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* ==========================================================================
   CTA PRIORITY (emphasized)
   ========================================================================== */
.cta-priority {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-priority h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-priority .cta-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta-benefit {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 1.5rem 0;
    line-height: 1.8;
}

.cta-priority .mitid-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.cta-priority .email-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-priority .email-form input[type="email"] {
    color: var(--text);
}

.cta-priority .consent-checkbox {
    color: var(--text);
}

/* ==========================================================================
   LAW SECTION
   ========================================================================== */
.law-section {
    background-color: var(--bg-alt);
}

.law-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

/* ==========================================================================
   STRATEGY SECTION
   ========================================================================== */
.strategy-section {
    padding: 4rem 2rem;
}

.strategy-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 3rem;
}

.strategy-steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--border);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.step-content p {
    line-height: 1.7;
    color: var(--text-light);
}

/* ==========================================================================
   LAW PAGE STYLES (modern)
   ========================================================================== */
.law-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 5rem 2rem 4rem;
    text-align: center;
}

.law-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.law-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.play-button-container {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.play-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.play-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button-secondary {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.play-button-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.play-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-dark);
    border-radius: 50%;
    flex-shrink: 0;
}

.play-text {
    font-weight: 600;
    color: white !important;
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
}

.law-content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.law-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.law-chapter {
    margin-bottom: 3rem;
}

.law-chapter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
    flex-wrap: wrap;
    gap: 1rem;
}

.law-content-section .law-chapter-header {
    /* For chapters inside law content, buttons should match hero style */
    border-bottom-color: var(--border);
}

.law-chapter-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin: 0;
}

.play-button-inline {
    /* Same styling as play-button but for inline use in law content */
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 2.5rem;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.play-button-inline .play-text {
    color: white !important;
    display: inline-block;
    visibility: visible !important;
    opacity: 1 !important;
}

.play-button-inline:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button-inline .play-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-dark);
    border-radius: 50%;
    flex-shrink: 0;
}

.law-footer-note {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--primary);
}

.law-footer-note p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.law-article {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.law-article:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.law-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.law-content {
    flex: 1;
}

.law-content h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.law-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1rem;
}

.law-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.law-list li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.law-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-alt);
    border-radius: 6px;
    border-left: 3px solid var(--primary);
}

.law-article-highlight {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    border-left-color: white;
}

.law-article-highlight .law-number {
    color: white;
}

.law-article-highlight .law-content h2 {
    color: white;
}

.law-article-highlight .law-content p,
.law-article-highlight .law-content li {
    color: rgba(255, 255, 255, 0.95);
}

.law-principle {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 1rem;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .container-wide {
        padding: 0 1.5rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .site-header .container-wide {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .header-audio-player {
        width: 100%;
        margin-left: 0;
    }
    
    .play-button-header {
        width: 100%;
        justify-content: center;
    }
    
    .site-title {
        font-size: 1.25rem;
    }
    
    .site-logo {
        height: 32px;
    }
    
    .logo-link {
        gap: 0.75rem;
    }
    
    .content-section {
        padding: 1rem;
    }
    
    .content-section h1 {
        font-size: 2rem;
    }
    
    .support-content {
        padding: 1.5rem;
    }
    
    .mobilepay-box {
        font-size: 1.25rem;
    }
    
    .mobilepay-box strong {
        font-size: 1.5rem;
    }
    
    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .main-nav a {
        padding: 0.25rem 0;
    }
    
    .btn-nav {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .nav {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-lead {
        font-size: 1.25rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section h2 {
        font-size: 1.75rem;
    }
    
    .comparison {
        grid-template-columns: 1fr;
    }
    
    .law-grid,
    .research-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons,
    .form-buttons {
        flex-direction: column;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stats-number {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-art {
        height: 50vh;
        min-height: 400px;
    }

    .choice-option {
        flex-direction: column;
        text-align: center;
    }

    .choice-label {
        margin: 0 auto 1rem;
    }

    .research-tools {
        grid-template-columns: 1fr;
    }

    .law-comparisons {
        grid-template-columns: 1fr;
    }

    .law-key-points {
        grid-template-columns: 1fr;
    }

    .strategy-step-simple {
        flex-direction: column;
        text-align: center;
    }

    .step-num {
        margin: 0 auto 1rem;
    }
    
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-main {
        font-size: 1.25rem;
    }
    
    .cta-priority h2 {
        font-size: 2rem;
    }
    
    .cta-priority {
        padding: 3rem 1.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
    
    .law-hero-title {
        font-size: 2.5rem;
    }
    
    .law-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .play-button-container {
        flex-direction: column;
        align-items: center;
    }
    
    .play-button {
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0.75rem;
        width: 100%;
        max-width: 300px;
    }
    
    .play-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
    
    .law-article {
        flex-direction: column;
        gap: 1rem;
    }
    
    .law-number {
        width: auto;
        text-align: left;
        font-size: 2rem;
    }
    
    .law-chapter-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .play-button-inline {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   DASHBOARD STYLES
   ========================================================================== */
.dashboard-confirmation {
    background: linear-gradient(135deg, var(--accent) 0%, #16a34a 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    animation: slideDown 0.5s ease-out;
}

.dashboard-confirmation.celebration {
    animation: slideDown 0.5s ease-out, celebration 1s ease-out 0.5s;
}

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

@keyframes celebration {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.05);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.02);
    }
}

.confirmation-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.confirmation-icon {
    font-size: 3rem;
    flex-shrink: 0;
    animation: bounce 1s ease-in-out infinite;
}

.dashboard-confirmation.celebration .confirmation-icon {
    animation: bounce 1s ease-in-out infinite, rotate 0.5s ease-in-out;
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.confirmation-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.confirmation-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    margin-bottom: 0.5rem;
}

.confirmation-action {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    font-style: italic;
}

.dashboard-stats {
    margin: 3rem 0;
}

.dashboard-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.dashboard-intro {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.stats-dashboard {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-card {
    text-align: center;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.progress-bar-dashboard {
    width: 100%;
    height: 20px;
    background: var(--bg-alt);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill-dashboard {
    height: 100%;
    background: linear-gradient(90deg, var(--accent) 0%, #16a34a 100%);
    transition: width 0.5s ease;
    border-radius: 10px;
}

.stat-goal {
    font-size: 1rem;
    color: var(--text-light);
}

.dashboard-section {
    margin: 4rem 0;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.questions-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.question-card {
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.question-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.question-option {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.question-option:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
}

.question-option.selected {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.question-results {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-light);
}

.suggestions-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.suggestion-card {
    padding: 1.5rem;
    background: var(--bg-alt);
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.suggestion-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
}

.suggestion-section {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.suggestion-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.suggestion-text {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.suggestion-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

.jurist-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
}

.jurist-section .dashboard-title {
    color: white;
}

.jurist-section .dashboard-intro {
    color: rgba(255, 255, 255, 0.9);
}

.jurist-box {
    text-align: center;
    padding: 2rem;
}

.jurist-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.jurist-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================================================
   NEW DASHBOARD SECTIONS
   ========================================================================== */

/* STATUS & FREMDRIFT */
.dashboard-status-section {
    margin: 2rem 0 4rem 0;
}

.status-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border);
}

.status-header {
    margin-bottom: 2rem;
    text-align: center;
}

.status-title {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.status-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.status-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-main {
    text-align: center;
}

.stat-main .stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-main .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-progress {
    margin: 1rem 0;
}

.stat-growth {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
}

.stat-tempo {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    justify-content: center;
}

.tempo-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    text-align: center;
}

.tempo-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tempo-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
}

.status-estimate {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-style: italic;
}

.status-estimate span {
    font-weight: 600;
    color: var(--primary);
}

/* RIMELIGHEDSPOLLS */
.polls-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.poll-card {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--border);
}

.poll-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.poll-results {
    margin-bottom: 1rem;
}

.poll-result-bar {
    width: 100%;
    height: 30px;
    background: #e5e7eb;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    display: flex;
}

.poll-result-fill {
    height: 100%;
    transition: width 0.5s ease;
}

.poll-result-fill.poll-yes {
    background: linear-gradient(90deg, var(--accent) 0%, #16a34a 100%);
}

.poll-result-fill.poll-no {
    background: linear-gradient(90deg, #ef4444 0%, #dc2626 100%);
}

.poll-total {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.poll-percentages {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    font-weight: 600;
}

.poll-percent.poll-yes-text {
    color: var(--accent);
}

.poll-percent.poll-no-text {
    color: #ef4444;
}

.poll-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-poll {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 2px solid;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-poll-yes {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.btn-poll-yes:hover {
    background: #16a34a;
    border-color: #16a34a;
    transform: translateY(-2px);
}

.btn-poll-no {
    background: white;
    color: #ef4444;
    border-color: #ef4444;
}

.btn-poll-no:hover {
    background: #ef4444;
    color: white;
    transform: translateY(-2px);
}

.poll-voted {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.5rem;
}

.dashboard-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* DELING */
.sharing-section {
    margin-bottom: 3rem;
}

.sharing-subtitle {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.shareable-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shareable-item {
    background: var(--bg-alt);
    border-radius: 8px;
    padding: 1.25rem;
    border: 2px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.shareable-text {
    flex: 1;
    font-size: 1.05rem;
    color: var(--text);
    margin: 0;
    font-style: italic;
}

.btn-copy {
    padding: 0.5rem 1.25rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-copy:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.shareable-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.shareable-image-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.shareable-image-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.shareable-image-card .btn-copy {
    width: 100%;
}

/* VIDEN I KORT FORM */
.knowledge-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* DELING SEKTION */
.dashboard-sharing-section {
    margin: 4rem 0;
    padding: 2.5rem 0;
}

.sharing-main-title {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.sharing-main-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.share-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.share-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.share-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.share-card-image {
    width: 100%;
    height: 200px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.share-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.share-card-text {
    padding: 2rem;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.6;
}

.share-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.share-card-message {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 0;
    text-align: center;
}

.share-card-copy-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.share-card-copy-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.copy-icon {
    font-size: 1.2rem;
}

.copy-text {
    font-weight: 600;
}

.copy-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #d1fae5;
    border-radius: 8px;
    color: #065f46;
    font-weight: 600;
    font-size: 0.9rem;
}

.copy-success-icon {
    font-size: 1.2rem;
}

.copy-success-text {
    font-weight: 600;
}

/* PLATFORMS SECTION */
.platforms-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 16px;
    border: 2px solid var(--border);
}

.platforms-section-title {
    font-size: 1.75rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    text-align: center;
}

.platforms-section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
}

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

.platform-btn-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 1rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--text);
    min-height: 90px;
    justify-content: center;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
    width: 100%;
}

.platform-btn-large:active {
    transform: scale(0.95);
    opacity: 0.9;
}

.platform-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.platform-icon-large {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
}

.platform-name-large {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    pointer-events: none;
}

.platform-btn-large.platform-facebook:hover,
.platform-btn-large.platform-facebook:active {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.platform-btn-large.platform-linkedin:hover,
.platform-btn-large.platform-linkedin:active {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.platform-btn-large.platform-x:hover,
.platform-btn-large.platform-x:active {
    background: #000000;
    border-color: #000000;
    color: white;
}

.platform-btn-large.platform-whatsapp:hover,
.platform-btn-large.platform-whatsapp:active {
    background: #25d366;
    border-color: #25d366;
    color: white;
}

.platform-btn-large.platform-messenger:hover,
.platform-btn-large.platform-messenger:active {
    background: #0084ff;
    border-color: #0084ff;
    color: white;
}

.platform-btn-large.platform-email:hover,
.platform-btn-large.platform-email:active {
    background: #ea4335;
    border-color: #ea4335;
    color: white;
}

.platform-btn-large.platform-instagram:hover,
.platform-btn-large.platform-instagram:active {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: white;
}

.platform-btn-large.platform-copy:hover,
.platform-btn-large.platform-copy:active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

/* Native Share Button */
.native-share-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    -webkit-tap-highlight-color: rgba(255,255,255,0.2);
    touch-action: manipulation;
}

.native-share-btn:active {
    transform: scale(0.98);
}

.native-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.native-share-icon {
    font-size: 1.5rem;
}

.native-share-text {
    font-weight: 600;
}

.share-card-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-card-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}


/* DEL-MODAL */
.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 1rem;
}

.share-modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.share-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-modal-close:hover {
    background: var(--bg-alt);
    color: var(--text);
}

.share-modal-preview {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-alt);
}

.share-modal-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.modal-preview-text {
    padding: 2rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    color: var(--text);
    line-height: 1.6;
}

.share-modal-text {
    margin-bottom: 2rem;
    text-align: center;
}

.share-modal-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.modal-link {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 0.5rem;
}

.share-platforms {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-alt);
    border: 2px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text);
}

.platform-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.platform-icon {
    font-size: 1.5rem;
    font-weight: 600;
}

.platform-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.platform-facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.platform-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.platform-x:hover {
    background: #000000;
    border-color: #000000;
}

.platform-whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

.platform-messenger:hover {
    background: #0084ff;
    border-color: #0084ff;
}

.platform-email:hover {
    background: #ea4335;
    border-color: #ea4335;
}

.platform-instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
}

.platform-copy:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.share-modal-feedback {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #d1fae5;
    border-radius: 8px;
    color: #065f46;
    font-weight: 600;
}

.feedback-icon {
    font-size: 1.5rem;
}

.knowledge-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--border);
    border-left: 4px solid var(--primary);
}

.knowledge-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
}

/* BIDRAG */
.contribution-box {
    background: var(--bg-alt);
    border-radius: 12px;
    padding: 2rem;
    border: 2px solid var(--border);
}

.contribution-box textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 1rem;
}

.contribution-box textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contribution-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

/* BESKEDER */
.messages-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid var(--border);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.message-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.message-card.message-high {
    border-left: 4px solid #f59e0b;
}

.message-card.message-urgent {
    border-left: 4px solid #ef4444;
    background: #fef2f2;
}

.message-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
    gap: 1rem;
}

.message-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.message-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
}

.message-badge-urgent {
    background: #ef4444;
    color: white;
}

.message-badge-high {
    background: #f59e0b;
    color: white;
}

.message-content {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.message-content p {
    margin: 0;
}

.message-date {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* STØT SIDE */
.content-section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.content-section h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-section h2 {
    font-size: 1.75rem;
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.support-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--bg-alt);
    border-radius: 12px;
}

.support-image-wrapper {
    max-width: 500px;
    width: 100%;
}

.support-page-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.support-info {
    text-align: center;
    width: 100%;
}

.support-info h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.mobilepay-box {
    font-size: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    border: 2px solid var(--primary);
    display: inline-block;
    margin-top: 1rem;
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.mobilepay-box strong {
    color: var(--primary);
    font-size: 1.75rem;
    display: block;
    margin-top: 0.5rem;
    word-break: break-all;
}

/* Mobil responsive for stot.html */
@media (max-width: 768px) {
    .content-section {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .content-section h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .content-section p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
    
    .support-content {
        padding: 1.5rem;
        margin-top: 2rem;
        gap: 1.5rem;
    }
    
    .support-image-wrapper {
        max-width: 100%;
    }
    
    .support-info h2 {
        font-size: 1.5rem;
    }
    
    .mobilepay-box {
        font-size: 1.25rem;
        padding: 1.25rem;
        width: 100%;
        max-width: 100%;
    }
    
    .mobilepay-box strong {
        font-size: 1.5rem;
        margin-top: 0.5rem;
    }
    
    .mobilepay-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .mobilepay-btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .copy-feedback-mobilepay {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .stat-main .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-tempo {
        flex-direction: column;
        gap: 1rem;
    }
    
    .sharing-main-title {
        font-size: 2rem;
    }
    
    .share-cards-container {
        grid-template-columns: 1fr;
    }
    
    .share-platforms {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .share-modal-content {
        padding: 1.5rem;
    }
    
    .knowledge-cards {
        grid-template-columns: 1fr;
    }
    
    /* Share card platforms på mobil */
    .share-card-platforms {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .platform-btn-small {
        padding: 0.6rem 0.4rem;
        min-height: 55px;
        font-size: 0.7rem;
    }
    
    .platform-icon-small {
        font-size: 1.1rem;
        margin-bottom: 0.1rem;
    }
    
    .platform-name-small {
        font-size: 0.65rem;
        line-height: 1.1;
    }
    
    /* Bedre spacing på mobil */
    .share-card {
        margin-bottom: 1.5rem;
    }
    
    .share-card-image {
        height: 180px;
    }
    
    .share-card-content {
        padding: 1.25rem;
    }
    
    .share-card-message {
        font-size: 1rem;
        margin-bottom: 0;
    }
    
    .share-card-copy-btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .copy-feedback {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
    
    /* Status card på mobil */
    .status-card {
        padding: 1.5rem;
    }
    
    .status-title {
        font-size: 1.5rem;
    }
    
    .dashboard-sharing-section {
        padding: 1.5rem 0;
    }
    
    .sharing-main-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }
    
    /* Platforms section på mobil */
    .platforms-section {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .platforms-section-title {
        font-size: 1.5rem;
    }
    
    .platforms-section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .platform-btn-large {
        padding: 1rem 0.75rem;
        min-height: 80px;
    }
    
    .platform-icon-large {
        font-size: 1.75rem;
    }
    
    .platform-name-large {
        font-size: 0.85rem;
    }
    
    .native-share-btn {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .native-share-icon {
        font-size: 1.25rem;
    }
    
    /* Stot side mobil forbedringer */
    .support-content {
        padding: 1rem;
    }
    
    .support-image-wrapper {
        margin-bottom: 0;
    }
}

/* MODAL STYLES */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text);
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-content textarea,
.modal-content input,
.modal-content select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.modal-content textarea {
    resize: vertical;
    min-height: 120px;
}

/* Ensure confirmation is visible when shown */
#support-confirmation {
    display: none;
}

#support-confirmation[style*="block"] {
    display: block !important;
}
