/* ===== Skolix Pages – Frontend Styles ===== */

/* ── Contact form ── */
.skolix-contact-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.skolix-contact-intro {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 28px;
    font-size: 15px;
    color: #1e3a5f;
}

#skolix-contact-form {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    margin-bottom: 32px;
}

.skolix-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .skolix-form-row { grid-template-columns: 1fr; }
    #skolix-contact-form { padding: 20px 18px; }
}

.skolix-field {
    margin-bottom: 18px;
}

.skolix-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.req { color: #ef4444; margin-left: 2px; }

.skolix-field input[type="text"],
.skolix-field input[type="email"],
.skolix-field input[type="tel"],
.skolix-field select,
.skolix-field textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
    font-family: inherit;
}

.skolix-field input:focus,
.skolix-field select:focus,
.skolix-field textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.skolix-field textarea {
    resize: vertical;
    min-height: 130px;
}

.skolix-gdpr-field label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 400;
    color: #4b5563;
    cursor: pointer;
}

.skolix-gdpr-field input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.skolix-btn {
    display: inline-block;
    background: #2563eb;
    color: #fff !important;
    padding: 13px 28px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .1s;
    text-decoration: none;
    width: 100%;
    text-align: center;
}

.skolix-btn:hover { background: #1d4ed8; }
.skolix-btn:active { transform: scale(.98); }
.skolix-btn:disabled { background: #93c5fd; cursor: not-allowed; }

#skolix-contact-result {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

#skolix-contact-result.success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

#skolix-contact-result.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Contact info cards */
.skolix-contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 12px;
}

@media (max-width: 600px) {
    .skolix-contact-info { grid-template-columns: 1fr; }
}

.skolix-contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px;
}

.contact-icon {
    font-size: 24px;
    line-height: 1;
}

.skolix-contact-card div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.skolix-contact-card strong {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

.skolix-contact-card span,
.skolix-contact-card a {
    font-size: 13px;
    color: #4b5563;
}

.skolix-contact-card a { color: #2563eb; }

/* ── Help center ── */
.skolix-help-wrap {
    max-width: 860px;
    margin: 0 auto;
}

.skolix-help-search {
    display: flex;
    gap: 10px;
    margin-bottom: 24px;
}

.skolix-help-search input[type="text"] {
    flex: 1;
    padding: 11px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    color: #111827;
}

.skolix-help-search input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.skolix-help-search button {
    padding: 11px 24px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.skolix-help-search button:hover { background: #1d4ed8; }

.skolix-help-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.skolix-cat-btn {
    padding: 6px 16px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s;
}

.skolix-cat-btn:hover,
.skolix-cat-btn.active {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.skolix-help-articles {
    display: grid;
    gap: 16px;
}

.skolix-help-article {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
    transition: box-shadow .2s;
}

.skolix-help-article:hover { box-shadow: 0 4px 12px rgba(0,0,0,.1); }

.skolix-help-article h3 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 700;
}

.skolix-help-article h3 a {
    color: #111827;
    text-decoration: none;
}

.skolix-help-article h3 a:hover { color: #2563eb; }

.skolix-help-article p {
    margin: 0 0 12px;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
}

.skolix-read-more {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
}

.skolix-read-more:hover { text-decoration: underline; }

.skolix-help-empty {
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 32px;
    text-align: center;
    color: #64748b;
}

.skolix-help-contact-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 2px solid #e2e8f0;
}

.skolix-help-contact-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px;
}

.skolix-help-contact-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 24px;
}

#skolix-help-form {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

#skolix-help-result {
    padding: 14px 16px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

#skolix-help-result.success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

#skolix-help-result.error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}


/* ===== Om oss sida ===== */

.skolix-om-oss-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.skolix-hero-section {
    position: relative;
    text-align: center;
    padding: 80px 20px 60px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0c4a6e 100%);
}

.skolix-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.skolix-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .35;
    animation: skolix-float 6s ease-in-out infinite;
}

.skolix-orb-1 {
    width: 400px; height: 400px;
    background: #3b82f6;
    top: -100px; left: -80px;
    animation-delay: 0s;
}

.skolix-orb-2 {
    width: 300px; height: 300px;
    background: #8b5cf6;
    top: 50px; right: -60px;
    animation-delay: 2s;
}

.skolix-orb-3 {
    width: 250px; height: 250px;
    background: #06b6d4;
    bottom: -80px; left: 40%;
    animation-delay: 4s;
}

@keyframes skolix-float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-20px) scale(1.05); }
}

.skolix-hero-content {
    position: relative;
    z-index: 2;
}

.skolix-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    color: #e0f2fe;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.2);
    margin-bottom: 24px;
    letter-spacing: .5px;
}

.skolix-hero-title {
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.skolix-gradient-text {
    background: linear-gradient(90deg, #38bdf8, #818cf8, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skolix-hero-desc {
    font-size: 17px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.skolix-hero-ctas {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.skolix-cta-btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all .2s;
}

.skolix-cta-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: 0 4px 16px rgba(59,130,246,.4);
}

.skolix-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59,130,246,.5);
    color: #fff;
    text-decoration: none;
}

.skolix-cta-secondary {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px);
}

.skolix-cta-secondary:hover {
    background: rgba(255,255,255,.22);
    color: #fff;
    text-decoration: none;
}

.skolix-cta-white {
    background: #fff;
    color: #1e3a5f;
    border: 2px solid transparent;
}

.skolix-cta-white:hover {
    background: #f0f9ff;
    color: #1e3a5f;
    text-decoration: none;
}

/* Stats */
.skolix-stats-section {
    margin-bottom: 70px;
}

.skolix-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 700px) {
    .skolix-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.skolix-stat-card {
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .2s, box-shadow .2s;
}

.skolix-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,.09);
}

.skolix-stat-number {
    font-size: 44px;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skolix-stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: #64748b;
}

.skolix-stat-label {
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
    font-weight: 500;
}

/* Section helpers */
.skolix-section-badge {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.skolix-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.skolix-section-header h2 {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: #0f172a;
}

/* Mission */
.skolix-mission-section {
    margin-bottom: 70px;
}

.skolix-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 700px) {
    .skolix-mission-grid { grid-template-columns: 1fr; }
}

.skolix-mission-text .skolix-section-badge { margin-bottom: 12px; }

.skolix-mission-text h2 {
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.skolix-mission-text p {
    font-size: 15px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 12px;
}

.skolix-mission-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #0c4a6e 100%);
    border-radius: 20px;
    padding: 36px 32px;
    color: #fff;
}

.skolix-mission-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.skolix-mission-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: #bfdbfe;
    font-style: italic;
    border: none;
    padding: 0;
    margin: 0 0 16px;
}

.skolix-mission-card cite {
    font-size: 13px;
    color: #7dd3fc;
    font-weight: 600;
}

/* Features */
.skolix-features-section {
    margin-bottom: 70px;
}

.skolix-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

@media (max-width: 560px) {
    .skolix-features-grid { grid-template-columns: 1fr; }
}

.skolix-feature-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    transition: transform .2s, box-shadow .2s;
}

.skolix-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
    border-color: #bfdbfe;
}

.skolix-feature-icon {
    font-size: 32px;
    margin-bottom: 14px;
}

.skolix-feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.skolix-feature-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
}

/* Values */
.skolix-values-section {
    margin-bottom: 70px;
}

.skolix-values-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

@media (max-width: 640px) {
    .skolix-values-list { grid-template-columns: 1fr; }
}

.skolix-value-item {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 24px;
}

.skolix-value-num {
    font-size: 28px;
    font-weight: 900;
    color: #bfdbfe;
    line-height: 1;
    min-width: 40px;
}

.skolix-value-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.skolix-value-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.65;
}

/* Om oss CTA */
.skolix-om-cta-section {
    background: linear-gradient(135deg, #1e40af 0%, #5b21b6 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-bottom: 60px;
}

.skolix-om-cta-inner h2 {
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.skolix-om-cta-inner p {
    font-size: 16px;
    color: #bfdbfe;
    margin-bottom: 32px;
}


/* ===== Priser sida ===== */

.skolix-priser-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.skolix-priser-header {
    text-align: center;
    padding: 60px 20px 50px;
}

.skolix-priser-header h1 {
    font-size: clamp(26px, 4.5vw, 48px);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    line-height: 1.15;
}

.skolix-priser-header p {
    font-size: 16px;
    color: #64748b;
    max-width: 520px;
    margin: 0 auto 16px;
}

.skolix-priser-toggle-hint {
    font-size: 13px;
    color: #94a3b8;
    background: #f1f5f9;
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
}

.skolix-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
    margin-bottom: 60px;
}

@media (max-width: 880px) {
    .skolix-pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

.skolix-pricing-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px 32px;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}

.skolix-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.skolix-pricing-featured {
    border-color: #3b82f6;
    box-shadow: 0 8px 32px rgba(59,130,246,.18);
    background: linear-gradient(180deg, #eff6ff 0%, #fff 60%);
}

.skolix-pricing-school {
    border-color: #059669;
    background: linear-gradient(180deg, #f0fdf4 0%, #fff 60%);
}

.skolix-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 999px;
    white-space: nowrap;
}

.skolix-school-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 999px;
    white-space: nowrap;
}

.skolix-pricing-top { margin-bottom: 24px; }

.skolix-pkg-name {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

.skolix-pkg-price {
    margin-bottom: 12px;
}

.skolix-price-currency {
    font-size: 20px;
    font-weight: 700;
    color: #64748b;
    vertical-align: top;
    line-height: 2;
}

.skolix-price-amount {
    font-size: 52px;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.skolix-price-period {
    font-size: 14px;
    color: #94a3b8;
    margin-left: 4px;
}

.skolix-price-contact {
    font-size: 17px;
    font-weight: 700;
    color: #059669;
}

.skolix-pkg-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.skolix-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.skolix-pkg-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
}

.skolix-pkg-features svg {
    width: 16px;
    height: 16px;
    stroke: #22c55e;
    stroke-width: 3;
    flex-shrink: 0;
    fill: none;
}

.skolix-pkg-btn {
    display: block;
    width: 100%;
    padding: 13px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .2s;
}

.skolix-pkg-btn-outline {
    background: transparent;
    color: #1e3a5f;
    border: 2px solid #e2e8f0;
}

.skolix-pkg-btn-outline:hover {
    border-color: #3b82f6;
    color: #2563eb;
    text-decoration: none;
}

.skolix-pkg-btn-solid {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    box-shadow: 0 4px 16px rgba(59,130,246,.35);
}

.skolix-pkg-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59,130,246,.5);
    color: #fff;
    text-decoration: none;
}

.skolix-pkg-btn-school {
    background: linear-gradient(135deg, #059669, #047857);
    color: #fff;
    box-shadow: 0 4px 16px rgba(5,150,105,.3);
}

.skolix-pkg-btn-school:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5,150,105,.45);
    color: #fff;
    text-decoration: none;
}

/* FAQ */
.skolix-priser-faq {
    max-width: 720px;
    margin: 0 auto 60px;
}

.skolix-priser-faq h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    text-align: center;
    margin-bottom: 32px;
}

.skolix-faq-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s;
}

.skolix-faq-item[open] {
    border-color: #bfdbfe;
}

.skolix-faq-item summary {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.skolix-faq-item summary::-webkit-details-marker { display: none; }

.skolix-faq-item summary::after {
    content: '＋';
    font-size: 18px;
    color: #94a3b8;
    transition: transform .2s;
}

.skolix-faq-item[open] summary::after {
    transform: rotate(45deg);
    color: #3b82f6;
}

.skolix-faq-item p {
    padding: 0 20px 18px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

/* Priser CTA */
.skolix-priser-cta {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    border-radius: 20px;
    text-align: center;
    padding: 56px 40px;
}

.skolix-priser-cta h2 {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.skolix-priser-cta p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 28px;
}


/* ===== Samarbeten sida ===== */

.skolix-sam-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.skolix-sam-hero {
    position: relative;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #0f766e 100%);
    border-radius: 20px;
    padding: 70px 40px 60px;
    text-align: center;
    overflow: hidden;
    margin-bottom: 50px;
}

.skolix-sam-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.skolix-sam-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .3;
    animation: skolix-float 7s ease-in-out infinite;
}

.skolix-sam-orb-1 { width: 380px; height: 380px; background: #34d399; top: -100px; left: -60px; }
.skolix-sam-orb-2 { width: 280px; height: 280px; background: #06b6d4; bottom: -60px; right: -40px; animation-delay: 3s; }

.skolix-sam-hero-content { position: relative; z-index: 2; }

.skolix-sam-hero-content .skolix-section-badge {
    background: rgba(255,255,255,.15);
    color: #d1fae5;
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(6px);
}

.skolix-sam-hero-content h1 {
    font-size: clamp(26px, 4.5vw, 46px);
    font-weight: 800;
    color: #fff;
    margin: 16px 0 18px;
    line-height: 1.2;
}

.skolix-sam-hero-content p {
    font-size: 16px;
    color: #a7f3d0;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Stats */
.skolix-sam-stats { margin-bottom: 60px; }

.skolix-sam-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 700px) { .skolix-sam-stats-grid { grid-template-columns: repeat(2, 1fr); } }

.skolix-sam-stat {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    transition: transform .2s, box-shadow .2s;
}

.skolix-sam-stat:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.09); }

.skolix-sam-stat-num {
    display: block;
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #059669, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.skolix-sam-stat p { font-size: 13px; color: #64748b; margin: 6px 0 0; font-weight: 500; }

/* Featured section */
.skolix-sam-featured-section { margin-bottom: 60px; }

.skolix-sam-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.skolix-sam-card {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s;
    position: relative;
}

.skolix-sam-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,.1);
    border-color: #6ee7b7;
}

.skolix-sam-card-featured { border-color: #6ee7b7; box-shadow: 0 4px 20px rgba(5,150,105,.1); }

.skolix-sam-card-logo {
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    border-bottom: 1px solid #d1fae5;
}

.skolix-sam-card-logo img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.skolix-sam-initials {
    font-size: 36px;
    font-weight: 900;
    color: #059669;
    letter-spacing: -1px;
}

.skolix-sam-card-body { padding: 24px; flex: 1; }

.skolix-sam-card-body h3 { font-size: 18px; font-weight: 700; color: #0f172a; margin: 8px 0 6px; }
.skolix-sam-ort { font-size: 13px; color: #64748b; margin-bottom: 8px; }
.skolix-sam-desc { font-size: 14px; color: #475569; line-height: 1.6; margin-bottom: 12px; }

.skolix-sam-tag {
    display: inline-block;
    background: #dcfce7;
    color: #166534;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
    letter-spacing: .3px;
    text-transform: uppercase;
}

.skolix-sam-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 12px;
}

.skolix-sam-meta span { font-size: 12px; color: #64748b; }

/* All partnerships list */
.skolix-sam-all-section { margin-bottom: 60px; }

.skolix-sam-list { display: flex; flex-direction: column; gap: 14px; }

.skolix-sam-list-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 24px;
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 20px;
    align-items: center;
    transition: border-color .2s, box-shadow .2s;
}

.skolix-sam-list-item:hover {
    border-color: #6ee7b7;
    box-shadow: 0 4px 16px rgba(5,150,105,.08);
}

.skolix-sam-list-logo {
    width: 72px;
    height: 72px;
    background: #f0fdf4;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #d1fae5;
    flex-shrink: 0;
}

.skolix-sam-list-logo img { max-width: 60px; max-height: 60px; object-fit: contain; }

.skolix-sam-initials-sm {
    font-size: 22px;
    font-weight: 900;
    color: #059669;
}

.skolix-sam-list-header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 6px; }
.skolix-sam-list-header h3 { font-size: 15px; font-weight: 700; color: #0f172a; margin: 0; }

.skolix-sam-list-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 6px; }
.skolix-sam-list-meta span { font-size: 12px; color: #64748b; }

.skolix-sam-list-body p { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0; }

.skolix-sam-list-date {
    text-align: right;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.skolix-sam-list-date span { font-size: 15px; font-weight: 700; color: #0f172a; }
.skolix-sam-list-date small { font-size: 12px; color: #94a3b8; }

@media (max-width: 640px) {
    .skolix-sam-list-item { grid-template-columns: 56px 1fr; }
    .skolix-sam-list-date { display: none; }
}

/* Empty state */
.skolix-sam-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f8fafc;
    border-radius: 20px;
    margin-bottom: 60px;
}

.skolix-sam-empty-icon { font-size: 56px; margin-bottom: 16px; }
.skolix-sam-empty h2 { font-size: 24px; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.skolix-sam-empty p { font-size: 15px; color: #64748b; max-width: 400px; margin: 0 auto 24px; }

/* Samarbeten CTA */
.skolix-sam-cta-section { background: linear-gradient(135deg, #064e3b, #065f46); border-radius: 20px; padding: 56px 40px; text-align: center; }
.skolix-sam-cta-inner h2 { font-size: clamp(20px, 3vw, 32px); font-weight: 800; color: #fff; margin-bottom: 12px; }
.skolix-sam-cta-inner p { font-size: 16px; color: #6ee7b7; margin-bottom: 28px; }
