/* =========================================
   TABLE OF CONTENTS
   -----------------------------------------
   1.  BASE & TYPOGRAPHY
   2.  HEADER & NAVIGATION
   3.  HERO SECTION / BANNER
   4.  ABOUT SECTION
   5.  SERVICES SECTION
   6.  PORTFOLIO SECTION
   7.  PROCESS SECTION
   8.  MEETING & CONTACT SECTION
   9.  TESTIMONIALS SECTION
   10. BLOG SECTION
   11. FOOTER SECTION
   ========================================= */

/* =========================================
   1. BASE & TYPOGRAPHY

   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700&family=Caveat:wght@400;500;600;700&display=swap');

:root {
    --theme-bg: #F9FAFB;
    --clr-base: #1B4965;
    --clr-white: #ffffff;
    --clr-common-text: #4B5563;
    --clr-border: #E5E7EB;
    --font-primary: 'Kanit', sans-serif;
    --font-secondary: 'Caveat', cursive;
    --container-width: 1350px;

    /* Mobile Design Guidelines */
    --mobile-font-size: 16px;
    --mobile-header-size: 30px;
    --mobile-line-height: 1.5;
    --mobile-touch-target: 44px;
    --mobile-spacing: 20px;
}

.back-to-top-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 18px;
    background: var(--refresh-accent, #ff6a1b);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(255, 106, 27, 0.24);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition:
        opacity 0.22s ease,
        transform 0.22s ease,
        box-shadow 0.22s ease,
        visibility 0.22s ease;
}

.back-to-top-btn:hover {
    transform: translateY(10px);
    box-shadow: 0 22px 40px rgba(255, 106, 27, 0.3);
}

.back-to-top-btn:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 4px rgba(255, 106, 27, 0.16),
        0 18px 36px rgba(255, 106, 27, 0.24);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .back-to-top-btn {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
}

/* =========================================
   PROJECT DETAILS REFRESH
   ========================================= */
body.project-page-refresh .project-page-banner {
    background: transparent;
    text-align: left;
    padding: clamp(112px, 14vw, 156px) 0 56px;
}

body.project-page-refresh .project-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.74)),
        radial-gradient(circle at top right, rgba(255, 106, 27, 0.1), transparent 34%);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow);
}

body.project-page-refresh .project-page-copy {
    max-width: 640px;
}

body.project-page-refresh .project-page-title {
    font-size: clamp(2.8rem, 7vw, 5.2rem) !important;
    line-height: 0.96;
    margin-top: 18px;
    margin-bottom: 18px;
}

body.project-page-refresh .project-page-summary {
    margin: 0;
    max-width: 580px;
    color: var(--refresh-text);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
}

body.project-page-refresh .project-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

body.project-page-refresh .project-page-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid rgba(17, 38, 60, 0.08);
    background: rgba(255, 255, 255, 0.9);
    color: var(--refresh-heading);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--refresh-shadow-soft);
}

body.project-page-refresh .project-page-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 27, 0.2);
    color: var(--refresh-accent);
}

body.project-page-refresh .breadcrumb {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 28px;
}

body.project-page-refresh .breadcrumb li {
    color: rgba(17, 38, 60, 0.54);
}

body.project-page-refresh .breadcrumb li a {
    color: var(--refresh-heading);
    font-weight: 600;
}

body.project-page-refresh .breadcrumb li:not(:last-child):after {
    margin-left: 12px;
    color: rgba(17, 38, 60, 0.3);
}

body.project-page-refresh .project-preview-shell {
    position: relative;
    min-height: 320px;
    padding: clamp(26px, 3vw, 34px);
    border-radius: 30px;
    background:
        linear-gradient(160deg, rgba(7, 27, 51, 0.98), rgba(17, 38, 60, 0.96)),
        linear-gradient(135deg, rgba(255, 106, 27, 0.22), transparent);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(17, 38, 60, 0.2);
}

body.project-page-refresh .project-preview-shell::before,
body.project-page-refresh .project-preview-shell::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

body.project-page-refresh .project-preview-shell::before {
    top: 22px;
    right: 24px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 64%);
}

body.project-page-refresh .project-preview-shell::after {
    left: -36px;
    bottom: -42px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 106, 27, 0.18), transparent 66%);
}

body.project-page-refresh .project-preview-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.project-page-refresh .project-preview-shell h2 {
    position: relative;
    z-index: 1;
    margin: 22px 0 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

body.project-page-refresh .project-preview-shell p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

body.project-page-refresh .project-preview-tags {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

body.project-page-refresh .project-preview-tags span,
body.project-page-refresh .project-chip-list li {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

body.project-page-refresh .project-details-area {
    padding-top: 0;
}

body.project-page-refresh .project-details-wrapper {
    max-width: 1180px;
    margin: 0 auto;
}

body.project-page-refresh .project-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body.project-page-refresh .project-overview-card,
body.project-page-refresh .project-copy-card,
body.project-page-refresh .project-highlight-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow-soft);
}

body.project-page-refresh .project-overview-card {
    padding: 24px;
}

body.project-page-refresh .project-overview-label {
    display: block;
    margin-bottom: 12px;
    color: rgba(17, 38, 60, 0.5);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.project-page-refresh .project-overview-value {
    display: block;
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    line-height: 1.35;
}

body.project-page-refresh .project-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 20px;
}

body.project-page-refresh .project-copy-card {
    padding: clamp(26px, 3vw, 34px);
}

body.project-page-refresh .project-copy-card h2,
body.project-page-refresh .project-highlights-block h2 {
    margin-bottom: 16px;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
}

body.project-page-refresh .project-copy-card p,
body.project-page-refresh .project-highlight-card p {
    margin: 0;
    color: var(--refresh-text);
    line-height: 1.85;
}

body.project-page-refresh .project-bullet-list,
body.project-page-refresh .project-chip-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

body.project-page-refresh .project-bullet-list {
    display: grid;
    gap: 14px;
}

body.project-page-refresh .project-bullet-list li {
    position: relative;
    padding-left: 24px;
    color: var(--refresh-text);
    line-height: 1.8;
}

body.project-page-refresh .project-bullet-list li::before {
    content: '';
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--refresh-accent);
    box-shadow: 0 0 0 5px rgba(255, 106, 27, 0.12);
}

body.project-page-refresh .project-delivery-card {
    margin-top: 20px;
}

body.project-page-refresh .project-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

body.project-page-refresh .project-chip-list li {
    background: var(--refresh-accent-soft);
    border-color: rgba(255, 106, 27, 0.14);
    color: var(--refresh-heading);
}

body.project-page-refresh .project-highlights-block {
    margin-top: 20px;
}

body.project-page-refresh .project-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

body.project-page-refresh .project-highlight-card {
    padding: 24px;
}

body.project-page-refresh .project-highlight-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

body.project-page-refresh .project-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(17, 38, 60, 0.08);
}

body.project-page-refresh .project-nav-link,
body.project-page-refresh .project-grid-view {
    text-decoration: none;
}

body.project-page-refresh .project-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    min-height: 92px;
    padding: 18px 22px;
    border-radius: 22px;
    border: 1px solid rgba(17, 38, 60, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--refresh-shadow-soft);
    color: var(--refresh-heading);
    flex: 1;
}

body.project-page-refresh .project-nav-link span {
    display: block;
    color: rgba(17, 38, 60, 0.5);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.project-page-refresh .project-nav-link strong {
    display: block;
    margin-top: 6px;
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.35;
}

body.project-page-refresh .project-nav-link i {
    color: var(--refresh-accent);
}

body.project-page-refresh .project-nav-link:hover,
body.project-page-refresh .project-grid-view:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 27, 0.18);
}

body.project-page-refresh .project-grid-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 22px;
    border: 1px solid rgba(17, 38, 60, 0.08);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--refresh-shadow-soft);
    color: var(--refresh-accent);
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    body.project-page-refresh .project-page-hero {
        grid-template-columns: 1fr;
    }

    body.project-page-refresh .project-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.project-page-refresh .project-detail-grid,
    body.project-page-refresh .project-highlights-grid {
        grid-template-columns: 1fr;
    }

    body.project-page-refresh .project-nav {
        flex-direction: column;
        align-items: stretch;
    }

    body.project-page-refresh .project-grid-view {
        margin: 15px auto !important;
        /* Sentrert mellom lenkene */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 72px !important;
        /* Beholder kvadratisk form */
        height: 72px !important;
    }
}

@media (max-width: 768px) {
    body.project-page-refresh .project-page-banner {
        padding-top: 104px;
        padding-bottom: 32px;
    }

    body.project-page-refresh .project-page-hero {
        padding: 24px;
        border-radius: 28px;
    }

    body.project-page-refresh .project-page-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.project-page-refresh .project-page-secondary {
        width: 100%;
    }

    body.project-page-refresh .project-overview-grid {
        grid-template-columns: 1fr;
    }

    body.project-page-refresh .project-nav-link {
        width: 100%;
    }

    body.project-page-refresh .project-preview-shell {
        min-height: 280px;
    }
}

/* =========================================
   CONTACT PAGE REFRESH
   ========================================= */
body.contact-page-refresh .nav-desktop a.is-current::after,
body.contact-page-refresh .nav-desktop a[href="contact.html"]::after {
    transform: scaleX(1);
}

body.contact-page-refresh .contact-page-banner {
    background: transparent;
    text-align: left;
}

body.contact-page-refresh .breadcrumb {
    justify-content: flex-start;
    margin-top: 18px;
}

body.contact-page-refresh .breadcrumb li {
    color: rgba(17, 38, 60, 0.58);
}

body.contact-page-refresh .breadcrumb li a {
    color: var(--refresh-text);
}

body.contact-page-refresh .breadcrumb li a:hover {
    color: var(--refresh-accent);
}

body.contact-page-refresh .contact-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: stretch;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78)),
        radial-gradient(circle at top right, rgba(255, 106, 27, 0.12), transparent 34%);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow);
}

body.contact-page-refresh .contact-page-copy {
    max-width: 650px;
}

body.contact-page-refresh .contact-page-title {
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 7vw, 5rem) !important;
    line-height: 0.96;
}

body.contact-page-refresh .contact-page-lead {
    margin: 0;
    max-width: 590px;
    color: var(--refresh-text);
    font-size: clamp(1rem, 1.4vw, 1.14rem);
    line-height: 1.85;
}

body.contact-page-refresh .contact-page-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

body.contact-page-refresh .contact-meta-card,
body.contact-page-refresh .contact-form-card,
body.contact-page-refresh .contact-info-card,
body.contact-page-refresh .contact-hero-panel-card {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow-soft);
}

body.contact-page-refresh .contact-meta-card {
    padding: 18px 20px;
}

body.contact-page-refresh .contact-meta-card span,
body.contact-page-refresh .contact-direct-item span {
    display: block;
    margin-bottom: 8px;
    color: rgba(17, 38, 60, 0.5);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.contact-page-refresh .contact-meta-card strong,
body.contact-page-refresh .contact-direct-item a,
body.contact-page-refresh .contact-direct-item strong {
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    text-decoration: none;
}

body.contact-page-refresh .contact-hero-panel-card {
    height: 100%;
    padding: clamp(24px, 3vw, 34px);
    background:
        linear-gradient(160deg, rgba(7, 27, 51, 0.98), rgba(17, 38, 60, 0.96)),
        linear-gradient(135deg, rgba(255, 106, 27, 0.2), transparent);
    color: #fff;
}

body.contact-page-refresh .contact-hero-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.contact-page-refresh .contact-hero-panel-card h2 {
    margin: 20px 0 12px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1;
}

body.contact-page-refresh .contact-hero-panel-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

body.contact-page-refresh .contact-direct-list {
    display: grid;
    gap: 18px;
    margin-top: 22px;
}

body.contact-page-refresh .contact-direct-item {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body.contact-page-refresh .contact-direct-item a,
body.contact-page-refresh .contact-direct-item strong {
    color: #fff;
}

body.contact-page-refresh .contact-page-main {
    padding-top: 0;
}

body.contact-page-refresh .contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
    gap: 22px;
}

body.contact-page-refresh .contact-form-card,
body.contact-page-refresh .contact-info-card {
    padding: clamp(24px, 3vw, 34px);
}

body.contact-page-refresh .contact-section-head h2 {
    margin: 18px 0 12px;
    font-size: clamp(1.9rem, 3vw, 2.5rem);
}

body.contact-page-refresh .contact-section-head p {
    margin: 0;
    color: var(--refresh-text);
    line-height: 1.8;
}

body.contact-page-refresh .contact-form-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 28px;
}

body.contact-page-refresh .contact-field,
body.contact-page-refresh .contact-field-full {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.contact-page-refresh .contact-field-full {
    grid-column: 1 / -1;
}

body.contact-page-refresh .contact-field label {
    color: var(--refresh-heading);
    font-size: 0.92rem;
    font-weight: 700;
}

body.contact-page-refresh .contact-field label.is-required::after {
    content: ' *';
    color: var(--refresh-accent);
}

body.contact-page-refresh .contact-field input,
body.contact-page-refresh .contact-field textarea {
    width: 100%;
    min-height: 58px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(17, 38, 60, 0.1);
    background: rgba(255, 255, 255, 0.88);
    color: var(--refresh-heading);
    font: inherit;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.contact-page-refresh .contact-field textarea {
    min-height: 180px;
    resize: vertical;
}

body.contact-page-refresh .contact-field input:focus,
body.contact-page-refresh .contact-field textarea:focus {
    outline: none;
    border-color: rgba(255, 106, 27, 0.42);
    box-shadow:
        0 0 0 4px rgba(255, 106, 27, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.contact-page-refresh .contact-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

body.contact-page-refresh .contact-consent {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
    color: var(--refresh-text);
    line-height: 1.7;
}

body.contact-page-refresh .contact-consent input {
    margin-top: 2px;
    accent-color: var(--refresh-accent);
}

body.contact-page-refresh .contact-submit-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px 18px;
}

body.contact-page-refresh .contact-submit-row .primary-cta {
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    min-width: 164px;
    padding: 0 26px;
    border-radius: 18px;
    font: inherit;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(255, 106, 27, 0.18);
}

body.contact-page-refresh .contact-submit-row .primary-cta:hover {
    box-shadow: 0 18px 30px rgba(255, 106, 27, 0.22);
}

body.contact-page-refresh .contact-submit-row .primary-cta:focus-visible {
    box-shadow:
        0 0 0 4px rgba(255, 106, 27, 0.14),
        0 14px 26px rgba(255, 106, 27, 0.18);
}

body.contact-page-refresh .contact-submit-row .primary-cta[disabled] {
    cursor: wait;
    opacity: 0.8;
}

body.contact-page-refresh .contact-form-note {
    flex: 1;
    min-width: 220px;
    margin: 0;
    color: var(--refresh-text);
    line-height: 1.7;
}

body.contact-page-refresh .form-status {
    display: none;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
    line-height: 1.6;
}

body.contact-page-refresh .form-status.loading,
body.contact-page-refresh .form-status.success,
body.contact-page-refresh .form-status.error {
    display: block;
}

body.contact-page-refresh .form-status.loading {
    background: rgba(17, 38, 60, 0.06);
    color: var(--refresh-heading);
}

body.contact-page-refresh .form-status.success {
    background: rgba(54, 179, 126, 0.12);
    color: #1d6a47;
}

body.contact-page-refresh .form-status.error {
    background: rgba(239, 68, 68, 0.12);
    color: #b42318;
}

body.contact-page-refresh .contact-step-list {
    display: grid;
    gap: 18px;
    margin-top: 26px;
}

body.contact-page-refresh .contact-step-item {
    position: relative;
    padding-left: 22px;
}

body.contact-page-refresh .contact-step-item::before {
    content: '';
    position: absolute;
    top: 0.6em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--refresh-accent);
    box-shadow: 0 0 0 5px rgba(255, 106, 27, 0.12);
}

body.contact-page-refresh .contact-step-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.02rem;
}

body.contact-page-refresh .contact-step-item p {
    margin: 0;
    color: var(--refresh-text);
    line-height: 1.8;
}

@media (max-width: 991px) {

    body.contact-page-refresh .contact-page-hero,
    body.contact-page-refresh .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.contact-page-refresh .contact-page-banner {
        padding-top: 104px;
        padding-bottom: 28px;
    }

    body.contact-page-refresh .contact-page-hero,
    body.contact-page-refresh .contact-form-card,
    body.contact-page-refresh .contact-info-card {
        padding: 24px;
        border-radius: 28px;
    }

    body.contact-page-refresh .contact-page-meta,
    body.contact-page-refresh .contact-form-grid {
        grid-template-columns: 1fr;
    }

    body.contact-page-refresh .contact-submit-row {
        flex-direction: column;
        align-items: stretch;
    }

    body.contact-page-refresh .contact-submit-row .primary-cta {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   BLOG DETAILS REFRESH
   ========================================= */
body.blog-page-refresh .nav-desktop a.is-current::after,
body.blog-page-refresh .nav-desktop a[href="blog.html"]::after {
    transform: scaleX(1);
}

body.blog-page-refresh .blog-page-banner {
    background: transparent;
    text-align: left;
    padding: clamp(112px, 14vw, 156px) 0 56px;
}

body.blog-page-refresh .blog-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
        radial-gradient(circle at top right, rgba(255, 106, 27, 0.12), transparent 34%);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow);
}

body.blog-page-refresh .blog-page-copy {
    max-width: 640px;
}

body.blog-page-refresh .blog-page-title {
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 7vw, 5.1rem) !important;
    line-height: 0.96;
}

body.blog-page-refresh .blog-page-summary {
    margin: 0;
    max-width: 580px;
    color: var(--refresh-text);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
}

body.blog-page-refresh .blog-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

body.blog-page-refresh .blog-page-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid rgba(17, 38, 60, 0.08);
    background: rgba(255, 255, 255, 0.9);
    color: var(--refresh-heading);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--refresh-shadow-soft);
}

body.blog-page-refresh .blog-page-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 27, 0.2);
    color: var(--refresh-accent);
}

body.blog-page-refresh .breadcrumb {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 28px;
}

body.blog-page-refresh .breadcrumb li {
    color: rgba(17, 38, 60, 0.54);
}

body.blog-page-refresh .breadcrumb li a {
    color: var(--refresh-heading);
    font-weight: 600;
}

body.blog-page-refresh .breadcrumb li a:hover {
    color: var(--refresh-accent);
}

body.blog-page-refresh .breadcrumb li:not(:last-child):after {
    margin-left: 12px;
    color: rgba(17, 38, 60, 0.3);
}

body.blog-page-refresh .blog-preview-shell {
    position: relative;
    min-height: 320px;
    padding: clamp(26px, 3vw, 34px);
    border-radius: 30px;
    background:
        linear-gradient(160deg, rgba(7, 27, 51, 0.98), rgba(17, 38, 60, 0.96)),
        linear-gradient(135deg, rgba(255, 106, 27, 0.22), transparent);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(17, 38, 60, 0.2);
}

body.blog-page-refresh .blog-preview-shell::before,
body.blog-page-refresh .blog-preview-shell::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

body.blog-page-refresh .blog-preview-shell::before {
    top: 24px;
    right: 24px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 64%);
}

body.blog-page-refresh .blog-preview-shell::after {
    left: -40px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 106, 27, 0.18), transparent 66%);
}

body.blog-page-refresh .blog-preview-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.blog-page-refresh .blog-preview-shell h2 {
    position: relative;
    z-index: 1;
    margin: 22px 0 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.04;
}

body.blog-page-refresh .blog-preview-shell p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

body.blog-page-refresh .blog-preview-stats {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

body.blog-page-refresh .blog-preview-stat {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.blog-page-refresh .blog-preview-stat span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.blog-page-refresh .blog-preview-stat strong {
    color: #fff;
    font-weight: 700;
    text-align: right;
}

body.blog-page-refresh .blog-page-main {
    position: relative;
}

body.blog-page-refresh .blog-details-wrapper {
    display: grid;
    gap: clamp(28px, 4vw, 44px);
}

body.blog-page-refresh .blog-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

body.blog-page-refresh .blog-overview-card,
body.blog-page-refresh .blog-article-shell,
body.blog-page-refresh .blog-side-card {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow-soft);
}

body.blog-page-refresh .blog-overview-card {
    padding: 22px 24px;
}

body.blog-page-refresh .blog-overview-label {
    display: block;
    margin-bottom: 10px;
    color: #718097;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.blog-page-refresh .blog-overview-value {
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.02rem, 2vw, 1.24rem);
    line-height: 1.35;
}

body.blog-page-refresh .blog-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.82fr);
    gap: clamp(22px, 3vw, 32px);
    align-items: start;
}

body.blog-page-refresh .blog-article-shell,
body.blog-page-refresh .blog-side-card {
    padding: clamp(24px, 3vw, 34px);
}

body.blog-page-refresh .blog-article-media {
    margin-bottom: 28px;
}

body.blog-page-refresh .blog-article-media img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 18px 34px rgba(36, 61, 89, 0.12);
}

body.blog-page-refresh .blog-article-head p,
body.blog-page-refresh .blog-side-card p {
    margin: 16px 0 0;
    color: var(--refresh-text);
    line-height: 1.8;
}

body.blog-page-refresh .blog-side-card h2 {
    margin: 0;
    color: var(--refresh-heading);
    font-size: clamp(1.45rem, 2.4vw, 2rem);
    line-height: 1.1;
}

body.blog-page-refresh .blog-rich-content {
    margin-top: 28px;
    color: var(--refresh-text);
    font-size: 1.03rem;
    line-height: 1.65;
}

body.blog-page-refresh .blog-rich-content p,
body.blog-page-refresh .blog-rich-content ul,
body.blog-page-refresh .blog-rich-content ol,
body.blog-page-refresh .blog-rich-content blockquote,
body.blog-page-refresh .blog-rich-content img {
    margin-bottom: 12px;
}

body.blog-page-refresh .blog-rich-content p,
body.blog-page-refresh .blog-rich-content li {
    color: var(--refresh-text);
}

body.blog-page-refresh .blog-rich-content h2,
body.blog-page-refresh .blog-rich-content h3,
body.blog-page-refresh .blog-rich-content h4 {
    margin: 16px 0 8px;
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.15;
}

body.blog-page-refresh .blog-rich-content ul,
body.blog-page-refresh .blog-rich-content ol {
    padding-left: 1.25rem;
}

body.blog-page-refresh .blog-rich-content img {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 18px 34px rgba(36, 61, 89, 0.12);
}

body.blog-page-refresh .blog-rich-content blockquote {
    padding: 24px 26px;
    border-left: none;
    border-radius: 24px;
    background: rgba(255, 106, 27, 0.08);
    color: var(--refresh-heading);
    font-style: normal;
    box-shadow: inset 0 0 0 1px rgba(255, 106, 27, 0.12);
}

body.blog-page-refresh .blog-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
    padding: 0;
    list-style: none;
}

body.blog-page-refresh .blog-tag-list li {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--refresh-accent-soft);
    color: var(--refresh-accent);
    font-size: 0.84rem;
    font-weight: 700;
}

body.blog-page-refresh .blog-sidebar-stack {
    position: sticky;
    top: 120px;
    display: grid;
    gap: 22px;
}

body.blog-page-refresh .blog-outline-list {
    display: grid;
    gap: 14px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

body.blog-page-refresh .blog-outline-list li {
    position: relative;
    padding-left: 20px;
    color: var(--refresh-text);
    line-height: 1.7;
}

body.blog-page-refresh .blog-outline-list li::before {
    content: '';
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--refresh-accent);
    box-shadow: 0 0 0 5px rgba(255, 106, 27, 0.12);
}

body.blog-page-refresh .blog-share-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 20px;
}

body.blog-page-refresh .blog-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    border-radius: 18px;
    background: rgba(17, 38, 60, 0.04);
    border: 1px solid rgba(17, 38, 60, 0.08);
    color: var(--refresh-heading);
    text-decoration: none;
}

body.blog-page-refresh .blog-share-link:hover {
    background: var(--refresh-accent);
    border-color: var(--refresh-accent);
    color: #fff;
}

body.blog-page-refresh .blog-recent-list {
    display: grid;
    gap: 14px;
    margin-top: 20px;
}

body.blog-page-refresh .blog-recent-link {
    display: block;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(17, 38, 60, 0.03);
    border: 1px solid rgba(17, 38, 60, 0.06);
    text-decoration: none;
}

body.blog-page-refresh .blog-recent-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 27, 0.16);
    box-shadow: 0 16px 26px rgba(36, 61, 89, 0.08);
}

body.blog-page-refresh .blog-recent-link span,
body.blog-page-refresh .blog-recent-link em {
    display: block;
}

body.blog-page-refresh .blog-recent-link span {
    margin-bottom: 8px;
    color: #718097;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.blog-page-refresh .blog-recent-link strong {
    display: block;
    color: var(--refresh-heading);
    line-height: 1.5;
}

body.blog-page-refresh .blog-recent-link em {
    margin-top: 8px;
    color: var(--refresh-text);
    font-size: 0.92rem;
    font-style: normal;
}

body.blog-page-refresh .blog-cta-card .primary-cta {
    margin-top: 22px;
}

body.blog-page-refresh .blog-post-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 16px;
    align-items: stretch;
}

body.blog-page-refresh .blog-post-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow-soft);
    color: var(--refresh-heading);
    text-decoration: none;
}

body.blog-page-refresh .blog-post-nav-link span {
    display: block;
    margin-bottom: 6px;
    color: #718097;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.blog-page-refresh .blog-post-nav-link strong {
    display: block;
    line-height: 1.45;
}

body.blog-page-refresh .blog-post-nav-link:hover,
body.blog-page-refresh .blog-grid-view:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 27, 0.16);
}

body.blog-page-refresh .blog-grid-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    min-height: 74px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow-soft);
    color: var(--refresh-heading);
    text-decoration: none;
}

body.blog-page-refresh .blog-grid-view i {
    pointer-events: none;
}

@media (max-width: 1100px) {

    body.blog-page-refresh .blog-detail-grid,
    body.blog-page-refresh .blog-page-hero {
        grid-template-columns: 1fr;
    }

    body.blog-page-refresh .blog-sidebar-stack {
        position: static;
    }

    body.blog-page-refresh .blog-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.blog-page-refresh .blog-page-banner {
        padding-top: 104px;
        padding-bottom: 28px;
    }

    body.blog-page-refresh .blog-page-hero,
    body.blog-page-refresh .blog-article-shell,
    body.blog-page-refresh .blog-side-card,
    body.blog-page-refresh .blog-post-nav-link {
        padding: 24px;
        border-radius: 28px;
    }

    body.blog-page-refresh .blog-page-actions,
    body.blog-page-refresh .blog-post-nav {
        grid-template-columns: 1fr;
    }

    body.blog-page-refresh .blog-page-actions {
        display: grid;
    }

    body.blog-page-refresh .blog-page-actions .primary-cta,
    body.blog-page-refresh .blog-page-actions .blog-page-secondary,
    body.blog-page-refresh .blog-grid-view {
        width: 100%;
    }

    body.blog-page-refresh .blog-overview-grid {
        grid-template-columns: 1fr;
    }

    body.blog-page-refresh .blog-share-links {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* =========================================
   BLOG LIST PAGE REFRESH
   ========================================= */
body.blog-list-page-refresh .nav-desktop a.is-current::after,
body.blog-list-page-refresh .nav-desktop a[href="blog.html"]::after {
    transform: scaleX(1);
}

body.blog-list-page-refresh .blog-list-page-banner {
    background: transparent;
}

body.blog-list-page-refresh .blog-list-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
        radial-gradient(circle at top right, rgba(255, 106, 27, 0.12), transparent 34%);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow);
}

body.blog-list-page-refresh .blog-list-copy {
    max-width: 640px;
}

body.blog-list-page-refresh .blog-list-title {
    margin-top: 18px;
    margin-bottom: 18px;
    font-size: clamp(2.8rem, 7vw, 5.1rem) !important;
    line-height: 0.96;
}

body.blog-list-page-refresh .blog-list-summary {
    margin: 0;
    max-width: 580px;
    color: var(--refresh-text);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
}

body.blog-list-page-refresh .blog-list-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

body.blog-list-page-refresh .blog-list-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid rgba(17, 38, 60, 0.08);
    background: rgba(255, 255, 255, 0.9);
    color: var(--refresh-heading);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--refresh-shadow-soft);
}

body.blog-list-page-refresh .blog-list-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 27, 0.2);
    color: var(--refresh-accent);
}

body.blog-list-page-refresh .breadcrumb {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 28px;
}

body.blog-list-page-refresh .breadcrumb li {
    color: rgba(17, 38, 60, 0.54);
}

body.blog-list-page-refresh .breadcrumb li a {
    color: var(--refresh-heading);
    font-weight: 600;
}

body.blog-list-page-refresh .breadcrumb li a:hover {
    color: var(--refresh-accent);
}

body.blog-list-page-refresh .breadcrumb li:not(:last-child):after {
    margin-left: 12px;
    color: rgba(17, 38, 60, 0.3);
}

body.blog-list-page-refresh .blog-list-spotlight {
    position: relative;
    min-height: 320px;
    padding: clamp(26px, 3vw, 34px);
    border-radius: 30px;
    background:
        linear-gradient(160deg, rgba(7, 27, 51, 0.98), rgba(17, 38, 60, 0.96)),
        linear-gradient(135deg, rgba(255, 106, 27, 0.22), transparent);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(17, 38, 60, 0.2);
}

body.blog-list-page-refresh .blog-list-spotlight::before,
body.blog-list-page-refresh .blog-list-spotlight::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

body.blog-list-page-refresh .blog-list-spotlight::before {
    top: 24px;
    right: 24px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 64%);
}

body.blog-list-page-refresh .blog-list-spotlight::after {
    left: -40px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 106, 27, 0.18), transparent 66%);
}

body.blog-list-page-refresh .blog-list-spotlight-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.blog-list-page-refresh .blog-list-spotlight h2 {
    position: relative;
    z-index: 1;
    margin: 22px 0 14px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.04;
}

body.blog-list-page-refresh .blog-list-spotlight p {
    position: relative;
    z-index: 1;
    margin: 0;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

body.blog-list-page-refresh .blog-list-spotlight-meta {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

body.blog-list-page-refresh .blog-list-spotlight-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

body.blog-list-page-refresh .blog-list-spotlight-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

body.blog-list-page-refresh .blog-list-spotlight-link:hover {
    color: #ffba8e;
}

body.blog-list-page-refresh .blog-list-main {
    position: relative;
}

body.blog-list-page-refresh .blog-list-wrapper {
    display: grid;
    gap: clamp(28px, 4vw, 44px);
}

body.blog-list-page-refresh .blog-list-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.blog-list-page-refresh .blog-list-overview-card,
body.blog-list-page-refresh .blog-list-card,
body.blog-list-page-refresh .blog-list-section-head {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow-soft);
}

body.blog-list-page-refresh .blog-list-overview-card {
    padding: 22px 24px;
}

body.blog-list-page-refresh .blog-list-overview-label {
    display: block;
    margin-bottom: 10px;
    color: #718097;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.blog-list-page-refresh .blog-list-overview-value {
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    line-height: 1.1;
}

body.blog-list-page-refresh .blog-list-section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
    gap: 22px;
    align-items: end;
    padding: clamp(24px, 3vw, 34px);
}

body.blog-list-page-refresh .blog-list-section-head h2 {
    margin-top: 16px;
    color: var(--refresh-heading);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.02;
}

body.blog-list-page-refresh .blog-list-section-head p {
    margin: 0;
    color: var(--refresh-text);
    line-height: 1.8;
}

body.blog-list-page-refresh .blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

body.blog-list-page-refresh .blog-list-card {
    overflow: hidden;
}

body.blog-list-page-refresh .blog-list-image {
    display: block;
    aspect-ratio: 1.18 / 1;
    overflow: hidden;
}

body.blog-list-page-refresh .blog-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

body.blog-list-page-refresh .blog-list-card:hover .blog-list-image img {
    transform: scale(1.04);
}

body.blog-list-page-refresh .blog-list-card-body {
    padding: 24px;
}

body.blog-list-page-refresh .blog-list-card-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 16px;
    color: #718097;
    font-size: 0.82rem;
    font-weight: 700;
}

body.blog-list-page-refresh .blog-list-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--refresh-accent-soft);
    color: var(--refresh-accent);
}

body.blog-list-page-refresh .blog-list-card h3,
body.blog-list-page-refresh .blog-list-card h3 a {
    margin: 0;
    color: var(--refresh-heading);
    font-size: clamp(1.22rem, 2vw, 1.6rem);
    line-height: 1.35;
    text-decoration: none;
}

body.blog-list-page-refresh .blog-list-card p {
    margin: 14px 0 18px;
    color: var(--refresh-text);
    line-height: 1.8;
}

body.blog-list-page-refresh .blog-list-link {
    justify-content: flex-start;
}

body.blog-list-page-refresh .blog-list-empty-card {
    grid-column: 1 / -1;
    padding: 30px;
}

body.blog-list-page-refresh .blog-list-empty-card p {
    margin: 0;
    color: var(--refresh-text);
    line-height: 1.8;
}

@media (max-width: 1100px) {

    body.blog-list-page-refresh .blog-list-hero,
    body.blog-list-page-refresh .blog-list-section-head {
        grid-template-columns: 1fr;
    }

    body.blog-list-page-refresh .blog-list-overview-grid,
    body.blog-list-page-refresh .blog-list-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.blog-list-page-refresh .blog-list-page-banner {
        padding-top: 104px;
        padding-bottom: 28px;
    }

    body.blog-list-page-refresh .blog-list-hero,
    body.blog-list-page-refresh .blog-list-overview-card,
    body.blog-list-page-refresh .blog-list-section-head,
    body.blog-list-page-refresh .blog-list-card {
        border-radius: 28px;
    }

    body.blog-list-page-refresh .blog-list-hero,
    body.blog-list-page-refresh .blog-list-section-head,
    body.blog-list-page-refresh .blog-list-card-body {
        padding: 24px;
    }

    body.blog-list-page-refresh .blog-list-actions,
    body.blog-list-page-refresh .blog-list-overview-grid,
    body.blog-list-page-refresh .blog-list-grid {
        grid-template-columns: 1fr;
    }

    body.blog-list-page-refresh .blog-list-actions {
        display: grid;
    }

    body.blog-list-page-refresh .blog-list-actions .primary-cta,
    body.blog-list-page-refresh .blog-list-actions .blog-list-secondary {
        width: 100%;
    }
}

/* =========================================
   LEGAL PAGES REFRESH
   ========================================= */
body.legal-page-refresh .legal-page-banner {
    background: transparent;
    text-align: left;
    padding: clamp(112px, 14vw, 156px) 0 56px;
}

body.legal-page-refresh .legal-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    border-radius: 36px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
        radial-gradient(circle at top right, rgba(255, 106, 27, 0.12), transparent 34%);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow);
}

body.legal-page-refresh .legal-page-copy {
    max-width: 640px;
    min-width: 0;
}

body.legal-page-refresh .legal-page-title {
    margin-top: 18px;
    margin-bottom: 18px;
    max-width: 11ch;
    font-size: clamp(2.25rem, 5.6vw, 4.2rem) !important;
    line-height: 0.98;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    text-wrap: balance;
}

body.legal-page-refresh .legal-page-summary {
    margin: 0;
    max-width: 580px;
    color: var(--refresh-text);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.8;
}

body.legal-page-refresh .legal-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

body.legal-page-refresh .legal-page-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid rgba(17, 38, 60, 0.08);
    background: rgba(255, 255, 255, 0.9);
    color: var(--refresh-heading);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--refresh-shadow-soft);
}

body.legal-page-refresh .legal-page-secondary:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 27, 0.2);
    color: var(--refresh-accent);
}

body.legal-page-refresh .breadcrumb {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 28px;
}

body.legal-page-refresh .breadcrumb li {
    color: rgba(17, 38, 60, 0.54);
}

body.legal-page-refresh .breadcrumb li a {
    color: var(--refresh-heading);
    font-weight: 600;
}

body.legal-page-refresh .breadcrumb li a:hover {
    color: var(--refresh-accent);
}

body.legal-page-refresh .breadcrumb li:not(:last-child):after {
    margin-left: 12px;
    color: rgba(17, 38, 60, 0.3);
}

body.legal-page-refresh .legal-page-spotlight {
    position: relative;
    min-height: 320px;
    padding: clamp(26px, 3vw, 34px);
    border-radius: 30px;
    background:
        linear-gradient(160deg, rgba(7, 27, 51, 0.98), rgba(17, 38, 60, 0.96)),
        linear-gradient(135deg, rgba(255, 106, 27, 0.22), transparent);
    color: #fff;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(17, 38, 60, 0.2);
}

body.legal-page-refresh .legal-page-spotlight::before,
body.legal-page-refresh .legal-page-spotlight::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

body.legal-page-refresh .legal-page-spotlight::before {
    top: 24px;
    right: 24px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 64%);
}

body.legal-page-refresh .legal-page-spotlight::after {
    left: -40px;
    bottom: -40px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 106, 27, 0.18), transparent 66%);
}

body.legal-page-refresh .legal-page-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.legal-page-refresh .legal-page-spotlight h2 {
    position: relative;
    z-index: 1;
    margin: 22px 0 18px;
    color: #fff;
    max-width: 10ch;
    font-size: clamp(1.65rem, 3.3vw, 2.5rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    text-wrap: balance;
}

body.legal-page-refresh .legal-spotlight-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body.legal-page-refresh .legal-spotlight-list li {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.legal-page-refresh .legal-spotlight-list strong,
body.legal-page-refresh .legal-spotlight-list span {
    display: block;
}

body.legal-page-refresh .legal-spotlight-list strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.4;
}

body.legal-page-refresh .legal-spotlight-list span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    line-height: 1.7;
}

body.legal-page-refresh .legal-page-main {
    position: relative;
}

body.legal-page-refresh .legal-page-wrapper {
    display: grid;
    gap: clamp(28px, 4vw, 44px);
}

body.legal-page-refresh .legal-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

body.legal-page-refresh .legal-overview-card,
body.legal-page-refresh .legal-copy-card,
body.legal-page-refresh .legal-note-card {
    min-width: 0;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: var(--refresh-shadow-soft);
}

body.legal-page-refresh .legal-overview-card {
    padding: 22px 24px;
}

body.legal-page-refresh .legal-overview-label {
    display: block;
    margin-bottom: 10px;
    color: #718097;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.legal-page-refresh .legal-overview-value {
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.02rem, 2vw, 1.24rem);
    line-height: 1.35;
}

body.legal-page-refresh .legal-content-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 32px);
}

body.legal-page-refresh .legal-content-grid-accessibility {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.legal-page-refresh .legal-copy-card {
    padding: clamp(24px, 3vw, 34px);
}

body.legal-page-refresh .legal-copy-card h2,
body.legal-page-refresh .legal-note-card h2 {
    margin: 0;
    max-width: 100%;
    color: var(--refresh-heading);
    font-size: clamp(1.5rem, 2.6vw, 2.2rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
    text-wrap: balance;
}

body.legal-page-refresh .legal-copy-card p,
body.legal-page-refresh .legal-note-card p {
    margin: 18px 0 0;
    color: var(--refresh-text);
    line-height: 1.9;
}

body.legal-page-refresh .legal-note-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: clamp(24px, 3vw, 34px);
}

body.legal-page-refresh .legal-note-card .primary-cta {
    min-width: 200px;
    justify-content: center;
}

@media (max-width: 1100px) {

    body.legal-page-refresh .legal-page-hero,
    body.legal-page-refresh .legal-content-grid,
    body.legal-page-refresh .legal-content-grid-accessibility,
    body.legal-page-refresh .legal-note-card {
        grid-template-columns: 1fr;
    }

    body.legal-page-refresh .legal-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.legal-page-refresh .legal-page-banner {
        padding-top: 104px;
        padding-bottom: 28px;
    }

    body.legal-page-refresh .legal-page-hero,
    body.legal-page-refresh .legal-overview-card,
    body.legal-page-refresh .legal-copy-card,
    body.legal-page-refresh .legal-note-card {
        padding: 24px;
        border-radius: 28px;
    }

    body.legal-page-refresh .legal-page-actions,
    body.legal-page-refresh .legal-overview-grid {
        grid-template-columns: 1fr;
    }

    body.legal-page-refresh .legal-page-actions {
        display: grid;
    }

    body.legal-page-refresh .legal-page-actions .primary-cta,
    body.legal-page-refresh .legal-page-actions .legal-page-secondary,
    body.legal-page-refresh .legal-note-card .primary-cta {
        width: 100%;
    }
}

/* =========================================
   COOKIE BANNER
   ========================================= */
#cookie-consent-banner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: min(calc(100% - 40px), 680px);
    max-height: 90vh;
    overflow-y: auto;
    padding: clamp(22px, 3vw, 30px);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: 0 28px 56px rgba(17, 38, 60, 0.18);
    backdrop-filter: blur(14px);
    animation: cookieBannerFadeIn 0.35s ease-out;
}

#cookie-consent-banner .cookie-banner-title {
    margin: 0;
    color: var(--refresh-heading, #11263c);
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.1;
}

#cookie-consent-banner .cookie-banner-description {
    margin: 14px 0 0;
    color: var(--refresh-text, #5a697d);
    font-size: 1rem;
    line-height: 1.8;
}

#cookie-consent-banner .cookie-banner-description a {
    color: var(--refresh-accent, #ff6a1b);
    font-weight: 700;
    text-decoration: none;
}

#cookie-consent-banner .cookie-banner-description a:hover {
    text-decoration: underline;
}

#cookie-consent-banner .cookie-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(17, 38, 60, 0.03);
    border: 1px solid rgba(17, 38, 60, 0.06);
}

#cookie-consent-banner .cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 0 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 38, 60, 0.06);
}

#cookie-consent-banner .cookie-option-label {
    color: var(--refresh-heading, #11263c);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

#cookie-consent-banner .cookie-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 46px !important;
    height: 28px !important;
    min-width: 46px !important;
    min-height: 28px !important;
    max-width: 46px !important;
    max-height: 28px !important;
    padding: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    border: none;
    border-radius: 999px;
    background: #d7dde5;
    cursor: pointer;
    transition: background 0.2s ease;
}

#cookie-consent-banner .cookie-toggle[data-active="true"] {
    background: var(--refresh-accent, #ff6a1b);
}

#cookie-consent-banner .cookie-toggle.is-locked {
    cursor: not-allowed;
    opacity: 0.92;
}

#cookie-consent-banner .cookie-toggle-knob {
    position: absolute;
    top: 50% !important;
    left: 4px !important;
    transform: translateY(-50%) !important;
    width: 20px !important;
    height: 20px !important;
    min-width: 20px !important;
    min-height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(17, 38, 60, 0.14);
    transition: transform 0.2s ease;
}

#cookie-consent-banner .cookie-toggle[data-active="true"] .cookie-toggle-knob {
    transform: translate(18px, -50%) !important;
}

#cookie-consent-banner .cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

#cookie-consent-banner .cookie-action-primary,
#cookie-consent-banner .cookie-action-secondary,
#cookie-consent-banner .cookie-action-tertiary {
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

#cookie-consent-banner .cookie-action-primary {
    border: none;
    background: linear-gradient(135deg, var(--refresh-accent, #ff6a1b), #ff9b5c);
    color: #fff;
    box-shadow: 0 16px 28px rgba(255, 106, 27, 0.22);
}

#cookie-consent-banner .cookie-action-secondary {
    border: 1px solid rgba(17, 38, 60, 0.18);
    background: rgba(255, 255, 255, 0.96);
    color: var(--refresh-heading, #11263c);
}

#cookie-consent-banner .cookie-action-tertiary {
    border: 1px solid transparent;
    background: transparent;
    color: rgba(17, 38, 60, 0.58);
}

#cookie-consent-banner .cookie-action-primary:hover,
#cookie-consent-banner .cookie-action-secondary:hover,
#cookie-consent-banner .cookie-action-tertiary:hover {
    transform: translateY(-1px);
}

#cookie-consent-banner .cookie-action-secondary:hover {
    border-color: rgba(255, 106, 27, 0.22);
    color: var(--refresh-accent, #ff6a1b);
}

#cookie-consent-banner .cookie-action-tertiary:hover {
    color: var(--refresh-heading, #11263c);
}

@keyframes cookieBannerFadeIn {
    from {
        transform: translate(-50%, calc(-50% + 18px));
        opacity: 0;
    }

    to {
        transform: translate(-50%, -50%);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        width: calc(100% - 32px);
        padding: 24px 20px;
        border-radius: 20px;
        max-height: 85vh;
    }

    #cookie-consent-banner .cookie-options,
    #cookie-consent-banner .cookie-actions {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 16px;
    }

    #cookie-consent-banner .cookie-option {
        min-height: 48px;
    }

    #cookie-consent-banner .cookie-action-primary,
    #cookie-consent-banner .cookie-action-secondary,
    #cookie-consent-banner .cookie-action-tertiary {
        min-height: 48px;
    }
}

/* Mobile Global Resets */
@media (max-width: 768px) {

    html,
    body {
        font-size: var(--mobile-font-size);
        line-height: var(--mobile-line-height);
    }

    /* Images: 100% width, consistent aspect ratio */
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    /* Touch Targets: Min 44px */
    button,
    a,
    input,
    select {
        min-height: var(--mobile-touch-target);
        min-width: var(--mobile-touch-target);
    }

    /* Spacing: Side margins */
    .container {
        padding-left: var(--mobile-spacing);
        padding-right: var(--mobile-spacing);
    }

    /* Improved Typography for Mobile */
    p,
    li,
    a {
        font-size: var(--mobile-font-size);
        line-height: var(--mobile-line-height);
    }

    /* Typography overrides moved to MOBILE OVERRIDES section (approx line 410) */

    /* Ensure ample spacing between elements */
    .btn,
    button,
    .service-item,
    .project-card {
        margin-bottom: var(--mobile-spacing);
    }
}

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

body {
    background-color: var(--theme-bg);
    color: var(--clr-common-text);
    font-family: var(--font-primary);
    line-height: 1.5;
    overflow-x: clip;
    width: 100%;
}

html {
    overflow-x: clip;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    /* NOTE: For Mobile sizes, see "MOBILE OVERRIDES" section around line 410 */
    color: var(--clr-base);
    font-weight: 700;
    line-height: 1.2;
    word-break: break-word;
    /* Hindrer at lange ord går utenfor boksen */
    hyphens: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.section-subtitle-lines {
    font-family: var(--font-secondary);
    color: var(--clr-base);
    font-size: 30px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-subtitle-lines::before,
.section-subtitle-lines::after {
    content: '';
    height: 1px;
    background-color: var(--clr-base);
    width: 60px;
    display: block;
}

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

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

.flex {
    display: flex;
}

.flex-wrap {
    flex-wrap: wrap;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

.w-full {
    width: 100%;
}

.pt_120 {
    padding-top: 120px;
}

.pb_120 {
    padding-bottom: 120px;
}

@media (max-width: 992px) {
    .pt_120 {
        padding-top: 80px;
    }

    .pb_120 {
        padding-bottom: 80px;
    }
}

@media (max-width: 480px) {
    .pt_120 {
        padding-top: 60px;
    }

    .pb_120 {
        padding-bottom: 60px;
    }

    .section-subtitle-lines {
        font-size: 24px;
    }

    .section-subtitle-lines::before,
    .section-subtitle-lines::after {
        width: 30px;
    }
}

/* Gap Utilities */
.gap-4 {
    gap: 1rem;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

/* Margin Utilities */
.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-50 {
    margin-top: 50px;
}

/* Animations */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 10s linear infinite;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.animate-scales::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--clr-white);
    border-radius: 50%;
    animation: pulse-border 2s infinite;
}

/* Text Stroke Animation */
.designers {
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: white;
    color: transparent;
    position: relative;
    display: inline-block;
}

.designers::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: var(--clr-base);
    width: 0%;
    overflow: hidden;
    white-space: nowrap;
    animation: pulse-width 3s ease-in infinite;
    -webkit-text-stroke-width: 0px;
    border-right: 2px solid var(--clr-base);
}

@keyframes pulse-width {

    0%,
    100% {
        width: 0%;
    }

    50% {
        width: 100%;
    }
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: 0.3s;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    overflow: hidden;
    border-radius: 50%;
}

.logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.logo-text {
    color: #111111;
    font-family: 'Kanit', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
}

/* =========================================
   MOBILE OVERRIDES (SERVICES, BANNER, ETC.)
   ========================================= */
@media (max-width: 900px) {

    /* --- TYPOGRAPHY (EDIT HERE FOR MOBILE) --- */
    h1 {
        font-size: 40px !important;
    }

    h2 {
        font-size: 30px !important;
    }

    h3 {
        font-size: 24px !important;
    }

    /* Project Title Size (Mobile) */
    .project-title {
        font-size: 40px !important;
    }

    /* Service Item Overrides */
    .service-item .service-content h3,
    .service-item .service-content h3 a {
        font-size: 40px !important;
        line-height: 1.1 !important;
    }

    .service-content p {
        font-size: 18px !important;
    }

    .service-item {
        flex-wrap: nowrap;
        align-items: center !important;
    }

    .service-arrow i {
        font-size: 24px !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1 !important;
        display: block !important;
    }

    .service-arrow {
        margin-left: auto;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .banner-content {
        margin-bottom: 48px;
    }

    .banner {
        padding-top: 40px !important;
    }

    .banner-content h1 {
        margin-bottom: 64px !important;
    }

    .banner h1,
    .banner .banner-title {
        margin-bottom: 48px !important;
    }

    .banner {
        margin-top: 96px;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
        flex-basis: 50px;
    }

    .logo-text {
        font-size: 1.15rem;
    }
}

.nav-desktop ul {
    display: flex;
    gap: 40px;
}

.nav-desktop a {
    color: var(--clr-base);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

.nav-desktop a:hover {
    color: var(--clr-base);
}

.menu-trigger {
    display: none;
    font-size: 24px;
    color: var(--clr-base);
    background: none;
    border: none;
    cursor: pointer;
}

/* =========================================
   3. HERO SECTION / BANNER
   ========================================= */
.banner {
    padding-top: 180px;
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

.banner-content h1 {
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.banner-content .subtitle {
    display: inline-block;
    color: var(--clr-base);
    border-bottom: 1px solid var(--clr-base);
    margin-bottom: 30px;
    padding-bottom: 10px;
    text-transform: capitalize;
    font-size: 18px;
}

.play-video-btn {
    width: 80px;
    height: 80px;
    border: 1px solid var(--clr-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-base);
    font-size: 30px;
    position: relative;
    cursor: pointer;
}

.banner-image {
    position: relative;
}

.banner-image img {
    border-radius: 20px;
}

@media (max-width: 480px) {
    .banner {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .banner-content h1 {
        font-size: 40px;
        line-height: 1.1;
    }

    .banner-content .subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .play-video-btn {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* =========================================
   4. ABOUT SECTION
   ========================================= */
.about-section {
    text-align: center;
}

.about-intro {
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro p {
    font-size: 28px;
    color: var(--clr-base);
    line-height: 1.4;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.tab-btn {
    background: #ffffff;
    color: var(--clr-base);
    border: 1px solid var(--clr-border);
    padding: 15px 30px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--clr-base);
    color: #fff;
}

.tab-content {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.tab-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease;
}

.info-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--clr-border);
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.05);
    transition: 0.3s;
}

.info-card:hover {
    border-color: var(--clr-base);
}

.info-card h4,
.info-card .info-card-label {
    color: var(--clr-base) !important;
    font-size: 14px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.info-card p {
    font-size: 14px;
}

/* =========================================
   5. SERVICES SECTION
   ========================================= */
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-top: 1px solid #262525;
    transition: 0.3s;
    cursor: pointer;
    flex-wrap: wrap;
    gap: 20px;
}

.service-item:hover {
    border-top-color: var(--clr-base);
}

.service-item:last-child {
    border-bottom: 1px solid #262525;
}

.service-id {
    font-size: 20px;
    color: var(--clr-base);
    width: 50px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 40px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.service-item:hover .service-content h3 {
    color: var(--clr-base);
    transform: translateX(10px);
}

.service-arrow {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: var(--clr-base);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.service-arrow i {
    transform: rotate(-45deg);
    transition: 0.3s;
}

.service-item:hover .service-arrow {
    background: var(--clr-base);
    color: #fff;
}

/* =========================================
   6. PORTFOLIO SECTION
   ========================================= */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 40px;
    align-items: start;
}

.project-card {
    position: relative;
}

/* Staggered effect for 2-column grid */
.portfolio-grid .project-card:nth-child(even) {
    margin-top: 80px;
}

.project-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f1f5f9;
}

.project-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-card:hover .project-img-wrapper img {
    transform: scale(1.1);
}

.project-arrow-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--clr-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: 0.4s;
    opacity: 0;
    transform: translate(10px, 10px) rotate(-45deg);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.project-card:hover .project-arrow-btn {
    opacity: 1;
    transform: translate(0, 0) rotate(0);
}

.project-arrow-btn:hover {
    background: var(--clr-base);
    color: #fff;
}

.project-content {
    padding: 0 5px;
}

.project-category {
    display: block;
    color: var(--clr-base);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.project-title {
    /* NOTE: For Mobile size, see "MOBILE OVERRIDES" section around line 410 */
    font-size: 40px;
    font-weight: 600;
    line-height: 1.3;
}

.project-title a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.project-title a:hover {
    color: var(--clr-base);
}

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

    .portfolio-grid .project-card:nth-child(even) {
        margin-top: 0;
    }

    /* .project-title moved to MOBILE OVERRIDES section */

    .project-arrow-btn {
        opacity: 1;
        transform: none;
    }
}

/* =========================================
   7. PROCESS SECTION
   ========================================= */
.process-section {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border: 1px solid var(--clr-border);
    border-radius: 20px;
    padding: 80px 40px;
}

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

.process-card {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    padding: 40px;
    border-radius: 15px;
    position: relative;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.05);
}

.process-card:hover {
    border-color: var(--clr-base);
}

.process-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 50px 50px;
    border-color: transparent transparent var(--theme-bg) transparent;
    transition: 0.3s;
}

.process-card:hover::after {
    border-color: transparent transparent var(--clr-base) transparent;
}

/* Language Switcher */
.lang-btn {
    background: none;
    border: none;
    color: var(--clr-common-text);
    cursor: pointer;
    padding: 5px 10px;
    font-size: 14px;
    position: relative;
}

.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10px;
    right: 10px;
    height: 2px;
    background: var(--clr-base);
}

/* Awards Table Styling */
.awards-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.awards-table td {
    padding: 25px 0;
    border-bottom: 1px solid var(--clr-border);
    color: var(--clr-white);
}

.awards-table td:last-child {
    color: var(--clr-base);
    font-weight: 600;
}

.award-link {
    color: var(--clr-base);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.award-link:hover {
    color: var(--clr-white);
}

/* Fix Star Icon Color */
.about-intro img[alt="Star"] {
    filter: invert(56%) sepia(90%) saturate(1636%) hue-rotate(352deg) brightness(101%) contrast(106%);
}

/* Responsive */
@media (max-width: 992px) {
    .banner-content h1 {
        font-size: 50px;
    }

    .portfolio-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .nav-desktop {
        display: none;
    }

    .menu-trigger {
        display: block;
    }
}

/* Tidlig aktivering av mobilmeny pga stor desktopmeny */
@media (max-width: 1200px) {

    .nav-desktop,
    body.homepage-refresh .nav-desktop {
        display: none !important;
    }

    .menu-trigger,
    body.homepage-refresh .menu-trigger {
        display: inline-flex !important;
    }
}

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

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

/* Marquee */
.marquee-wrapper {
    background-color: var(--clr-base);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 0;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding-right: 40px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.marquee-item::after {
    content: '*';
    margin-left: 40px;
    opacity: 0.55;
}

.marquee-content img {
    height: 30px;
    /* Adjust based on image size */
    width: auto;
    max-width: none;
}

.marquee-content.reverse {
    animation-direction: reverse;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

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

/* Awards Section */
.awards-section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .awards-section {
        padding: 50px 0;
    }
}

.awards-table {
    width: 100%;
    border-collapse: collapse;
}

.awards-table tr {
    border-bottom: 1px solid #2c3030;
}

.awards-table td {
    padding: 30px 0;
    color: var(--clr-white);
    font-size: 18px;
    font-weight: 500;
}

.awards-table tr:hover td {
    color: var(--clr-base);
}

.award-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    color: var(--clr-base);
    font-size: 16px;
}

/* =========================================
   8. MEETING & CONTACT SECTION
   ========================================= */
.meeting-section {
    padding: 120px 0;
    width: 100%;
}

.meeting-bg {
    background: linear-gradient(145deg, #ffffff, #f1f5f9);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.05);
}

.meeting-content h2 {
    font-size: 50px;
    margin-bottom: 30px;
}

.meeting-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #262525;
}

.meeting-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--clr-base);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #141410;
    transition: 0.3s;
}

.meeting-contact-item {
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 1px solid #262525;
}

.meeting-contact-item:hover {
    border-color: var(--clr-base);
}

@media (max-width: 900px) {
    .meeting-bg .flex {
        flex-direction: column-reverse;
        gap: 40px;
    }

    .meeting-bg .flex>div {
        flex: none !important;
        width: 100%;
    }

    .meeting-bg img {
        width: 100%;
        height: auto;
    }

    .meeting-content h2 {
        font-size: 36px;
        line-height: 1.2;
    }
}

/* =========================================
   9. TESTIMONIALS SECTION
   ========================================= */
.testimonial-section {
    padding: 120px 0;
    text-align: center;
    overflow: hidden;
}

.testimonial-bg {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    box-shadow: 0 10px 40px rgba(27, 73, 101, 0.05);
    border-radius: 10px;
    padding: 100px 60px;
    position: relative;
    margin-top: 50px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-text {
    font-size: 24px;
    color: var(--clr-base);
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.stars {
    color: #FFD700;
    margin-bottom: 20px;
}

.client-info h4,
.client-info h3 {
    color: var(--clr-base);
    font-size: 20px;
}

.client-info span {
    color: var(--clr-common-text);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
}

.dot.active {
    opacity: 1;
    background: var(--clr-base);
}

/* Partner Slider */
.partner-slider-container {
    padding-top: 80px;
    overflow: hidden;
}

.partner-track {
    display: flex;
    gap: 50px;
    align-items: center;
    animation: marquee 15s linear infinite;
    width: max-content;
}

/* =========================================
   9. BLOG SECTION
   ========================================= */
.blog-section {
    padding: 120px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 30px;
}

.blog-card:hover h3 a {
    color: var(--clr-base);
}

.blog-date {
    border: 1px solid var(--clr-border);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.blog-img {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.blog-img img {
    transition: 0.5s;
}

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

/* ========== Blog Content Elements ========== */
/* Alert Boxes in Blog Posts */
.alert {
    padding: 20px 24px;
    border-radius: 12px;
    margin: 24px 0;
    border-left: 5px solid;
    font-size: 16px;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.03);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
    color: #93c5fd;
}

.alert-tip {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    color: #6ee7b7;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #fcd34d;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border-color: #ef4444;
    color: #fca5a5;
}

/* Tables in Blog Posts */
.blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.blog-table th,
.blog-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-table th {
    background: rgba(249, 115, 22, 0.1);
    font-weight: 600;
    color: var(--clr-base);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.blog-table td {
    color: var(--clr-common-text);
}

.blog-table tr:last-child td {
    border-bottom: none;
}

.blog-table tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Video Embeds in Blog Posts */
.video-embed {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    margin: 30px 0;
    border: 2px solid rgba(249, 115, 22, 0.2);
}

/* =========================================
   11. FOOTER SECTION
   ========================================= */
.footer-cta {
    border: 1px solid var(--clr-border);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(27, 73, 101, 0.05);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.footer-cta h2 {
    font-size: 6vw;
    text-transform: uppercase;
    color: var(--clr-base);
    margin: 0;
}

@media (max-width: 480px) {
    .footer-cta h2 {
        font-size: 32px;
    }

    .footer-cta {
        padding: 30px 20px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

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

.footer-info {
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.social-link {
    border: 1px solid var(--clr-border);
    background: #ffffff;
    padding: 15px 30px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--clr-common-text);
    transition: 0.3s;
}

.social-link:hover {
    background: var(--clr-base);
    color: #ffffff;
    border-color: var(--clr-base);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.97);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--clr-common-text);
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}

.menu-close:hover {
    color: var(--clr-base);
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav li {
    margin: 32px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu-overlay.active .mobile-nav li:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-nav a {
    color: var(--clr-base);
    font-size: 34px;
    padding: 18px 0;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.mobile-nav a:hover {
    color: var(--clr-base);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

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

/* Subpage Styles */
.page-banner {
    background: #1a1a1a;
    text-align: center;
}

.breadcrumb {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 0;
}

.breadcrumb li {
    color: #666;
    font-size: 16px;
}

.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb li a:hover {
    color: var(--clr-base);
}

.breadcrumb li:not(:last-child):after {
    content: "/";
    margin-left: 10px;
}

.blog-details-thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-details-content p {
    font-size: 18px;
}

/* Language Switcher */
.lang-switch-desktop {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
}

.lang-switch-mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--clr-common-text);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
    padding: 5px;
}

.lang-btn:hover {
    color: var(--clr-white);
}

.lang-btn.active {
    color: var(--clr-base);
    font-weight: 700;
}

.lang-switch-desktop span {
    color: #333;
}

@media (max-width: 992px) {

    /* Språkvelgeren flyttes i stedet for å skjules på mobil */
    .lang-switch-desktop {
        display: none !important;
        /* Pass på at gammel versjon forblir skjult hvis den ikke er i oppdatert header class */
    }

    body.homepage-refresh .lang-switch-desktop {
        display: inline-flex !important;
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 20px 0 auto !important;
        /* Dytter velgeren helt mot høyre, forbi logoen, gruppert med hamburgermenyen */
    }
}

/* --- Blog Details Redesign --- */

.blog-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.blog-sidebar {
    position: sticky;
    top: 120px;
}

@media (max-width: 992px) {
    .blog-details-grid {
        grid-template-columns: 1fr;
    }
}

/* Quote Block */
.blog-quote {
    background: var(--clr-base);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

/* Share Box */
.blog-share-box {
    background: #1d1d1d;
    padding: 30px;
    border-radius: 10px;
    margin-top: 60px;
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tag-btn {
    background: #292929;
    color: #999;
    padding: 10px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.tag-btn:hover {
    background: var(--clr-base);
    color: #fff;
}

.share-links {
    display: flex;
    gap: 15px;
    background: #292929;
    padding: 10px 20px;
    border-radius: 10px;
}

.share-links a {
    color: #fff;
    font-size: 16px;
    transition: 0.3s;
}

.share-links a:hover {
    color: var(--clr-base);
}

/* Reply Form */
.reply-form-box {
    background: #1d1d1d;
    padding: 30px;
    border-radius: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.reply-form-box input,
.reply-form-box textarea {
    width: 100%;
    background: #292929;
    border: 1px solid #333;
    padding: 18px 20px;
    border-radius: 10px;
    color: #fff;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}

.reply-form-box input:focus,
.reply-form-box textarea:focus {
    border-color: var(--clr-base);
}

.reply-form-box textarea {
    margin-bottom: 20px;
    resize: vertical;
}

.submit-btn {
    background: var(--clr-base);
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    background: #fff;
}


/* Sidebar Widgets */
.widget {
    margin-bottom: 60px;
}

.widget-title {
    color: #fff;
    font-size: 24px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

/* Search Widget */
.search-form {
    display: flex;
    position: relative;
}

.search-form input {
    width: 100%;
    background: transparent;
    border: 1px solid #333;
    padding: 15px 20px;
    border-radius: 10px;
    color: #fff;
    outline: none;
}

.search-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 60px;
    border: none;
    background: var(--clr-base);
    color: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    cursor: pointer;
    font-size: 18px;
}

/* Categories Widget */
.categories-widget ul {
    list-style: none;
    padding: 0;
}

.categories-widget ul li {
    margin-bottom: 20px;
}

.categories-widget ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.categories-widget ul li a .arrow {
    width: 24px;
    height: 24px;
    background: var(--clr-base);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    color: #fff;
    font-size: 12px;
    transition: 0.3s;
}

.categories-widget ul li a:hover {
    color: #fff;
}

.categories-widget ul li a:hover .arrow {
    background: #fff;
}

/* Recent Post Widget */
.recent-post-widget ul {
    list-style: none;
    padding: 0;
}

.recent-post-widget ul li {
    margin-bottom: 30px;
}

.recent-post-widget ul li a {
    display: flex;
    gap: 20px;
    align-items: center;
    text-decoration: none;
}

.recent-post-widget ul li a img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.post-info {
    display: flex;
    flex-direction: column;
}

.post-title {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    transition: 0.3s;
}

.post-date {
    color: var(--clr-base);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-post-widget ul li a:hover .post-title {
    color: var(--clr-base);
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    color: #999;
    border: 1px solid #333;
    padding: 10px 20px;
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.tag-cloud a:hover {
    background: var(--clr-base);
    color: #fff;
    border-color: var(--clr-base);
}

/* Legal Pages Typography */
.legal-content h1 {
    font-size: 42px !important;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px !important;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #fff;
}

.legal-content p {
    font-size: 16px !important;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .legal-content h1 {
        font-size: 32px !important;
    }

    .legal-content h2 {
        font-size: 22px !important;
    }

    .legal-content p {
        font-size: 15px !important;
    }
}

/* =========================================
   HOMEPAGE LIGHT REFRESH
   ========================================= */
body.homepage-refresh {
    --refresh-bg: #f3f7fb;
    --refresh-surface: rgba(255, 255, 255, 0.84);
    --refresh-surface-strong: #ffffff;
    --refresh-border: rgba(18, 55, 92, 0.09);
    --refresh-shadow: 0 24px 70px rgba(36, 61, 89, 0.08);
    --refresh-shadow-soft: 0 18px 45px rgba(36, 61, 89, 0.06);
    --refresh-text: #5a697d;
    --refresh-heading: #11263c;
    --refresh-accent: #ff6a1b;
    --refresh-accent-soft: #fff1e7;
    background:
        radial-gradient(circle at top left, rgba(255, 211, 182, 0.35), transparent 38%),
        radial-gradient(circle at 85% 14%, rgba(255, 236, 214, 0.42), transparent 26%),
        linear-gradient(180deg, #f6fbff 0%, var(--refresh-bg) 40%, #eef4f9 100%);
    color: var(--refresh-text);
    font-family: 'Manrope', sans-serif;
}

body.homepage-refresh h1,
body.homepage-refresh h2,
body.homepage-refresh h3,
body.homepage-refresh h4,
body.homepage-refresh h5,
body.homepage-refresh h6 {
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.03em;
}

body.homepage-refresh a,
body.homepage-refresh button,
body.homepage-refresh .project-card,
body.homepage-refresh .service-item,
body.homepage-refresh .process-card,
body.homepage-refresh .blog-card,
body.homepage-refresh .social-link {
    transition: all 0.35s ease;
}

body.homepage-refresh .header {
    position: sticky;
    top: 0;
    z-index: 1100;
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(17, 38, 60, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: 0 12px 34px rgba(41, 72, 108, 0.06);
    padding: 0 !important;
}

body.mobile-menu-active .header {
    background: #ffffff !important;
    backdrop-filter: none !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    z-index: 10001 !important;
    position: fixed !important;
    top: 0 !important;
}

body.homepage-refresh .header.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 40px rgba(41, 72, 108, 0.1);
}

body.homepage-refresh .nav-container {
    min-height: 80px;
    /* Harmonert for både desktop og mobil */
}

body.homepage-refresh .logo-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
}

body.homepage-refresh .logo-text {
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

body.homepage-refresh .nav-desktop a {
    position: relative;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--refresh-heading);
    letter-spacing: 0.01em;
}

/* --- PERFEKT MIDTSTILT DESKTOP NAVIGASJON --- */
@media (min-width: 1201px) {
    body.homepage-refresh .nav-container {
        display: flex;
        align-items: center;
        width: 100%;
        gap: 20px;
    }

    body.homepage-refresh .logo {
        flex: 1 1 0%;
        display: inline-flex;
        min-width: fit-content;
    }

    body.homepage-refresh .nav-desktop {
        flex: 3 1 auto;
        /* Tillat navigasjonen å bruke så mye plass som nødvendig */
        display: flex;
        justify-content: center;
        white-space: nowrap;
        /* Tving alt til én linje, ingen orddeling for "OM OSS" */
    }

    body.homepage-refresh .nav-desktop ul {
        gap: clamp(12px, 2vw, 40px);
        /* Tillat mindre padding på feks 13" Macbooks */
    }

    body.homepage-refresh .lang-switch-desktop {
        flex: 1 1 0%;
        display: inline-flex !important;
        justify-content: flex-end;
        min-width: fit-content;
    }

    body.homepage-refresh .menu-trigger {
        display: none !important;
    }
}

body.homepage-refresh .nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--refresh-accent), #ffb37a);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

body.homepage-refresh .nav-desktop a:hover::after,
body.homepage-refresh .nav-desktop a:focus-visible::after {
    transform: scaleX(1);
}

body.homepage-refresh .lang-switch-desktop,
body.homepage-refresh .lang-switch-mobile {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: 0 4px 16px rgba(41, 72, 108, 0.06);
    margin-top: 0;
    margin-bottom: 0;
    box-sizing: border-box;
    vertical-align: middle;
}

body.homepage-refresh .lang-switch-mobile {
    width: fit-content;
    margin: 30px auto 0;
}

body.homepage-refresh .lang-btn {
    width: 52px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none !important;
    background: transparent;
    color: var(--refresh-heading);
    border-radius: 999px;
    /* Ekte pill-design */
    box-shadow: none;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

body.homepage-refresh .lang-btn:hover {
    background: rgba(17, 38, 60, 0.05);
    color: var(--refresh-heading);
}

body.homepage-refresh .menu-trigger,
body.homepage-refresh .menu-close {
    border: 1px solid rgba(17, 38, 60, 0.08);
    background: rgba(255, 255, 255, 0.92);
    color: var(--refresh-heading);
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(41, 72, 108, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    vertical-align: middle;
}

body.homepage-refresh .lang-btn.active {
    background: linear-gradient(135deg, var(--refresh-accent), #ffb37a);
    color: #fff;
    border-color: transparent;
}

body.homepage-refresh .lang-btn.active::after {
    content: none;
}

body.homepage-refresh .mobile-menu-overlay {
    background: #ffffff;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    padding: 0;
    z-index: 1000;
}

/* Den faktiske headeren brukes nå i stedet for denne blokken */
body.homepage-refresh .mobile-menu-header {
    display: none;
}

body.homepage-refresh .mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* Midtstill innhold horisontalt */
    /* Unngå at lenkene strekkes ut til bunnen */
    padding: 65px 24px 15px;
    overflow-y: auto;
    /* Tillat scrolling hvis innholdet er for stort */
    text-align: center;
}

/* Sørg for at headeren er sticky over menyen */
body.mobile-menu-active .header {
    z-index: 10001 !important;
}

body.homepage-refresh .mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 6px !important;
    /* Enda mer kompakt avstand */
    margin: 15px 0;
    /* Fast avstand i stedet for auto */
    padding: 0;
    list-style: none;
}

body.homepage-refresh .mobile-nav li {
    margin: 0 !important;
    padding: 0;
}

body.homepage-refresh .mobile-nav a {
    color: var(--refresh-heading);
    font-size: 1.35rem;
    /* Litt mindre font */
    font-weight: 700;
    padding: 6px 0 !important;
    /* Enda mer kompakt */
    display: block;
}

body.homepage-refresh .mobile-menu-footer {
    width: 100%;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(17, 38, 60, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px !important;
    /* Mer kompakt footer */
    text-align: center;
}

body.homepage-refresh .mobile-contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px !important;
    /* Enda mer kompakt */
}

body.homepage-refresh .mobile-contact-info a {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: var(--clr-base) !important;
}

body.homepage-refresh .mobile-social-links {
    display: flex;
    justify-content: center;
    /* Midtstill sosiale ikoner */
    gap: 16px;
}

body.homepage-refresh .mobile-social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 38, 60, 0.04);
    border-radius: 12px;
    color: var(--clr-base);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

body.homepage-refresh .mobile-social-links a:hover {
    background: var(--refresh-accent);
    color: #fff;
    transform: translateY(-2px);
}

body.homepage-refresh .lang-switch-mobile {
    margin: 0;
    justify-content: flex-start;
}

body.homepage-refresh .banner,
body.homepage-refresh .page-banner,
body.homepage-refresh .blog-list-page-banner,
body.homepage-refresh .blog-page-banner,
body.homepage-refresh .contact-page-banner,
body.homepage-refresh .project-page-banner,
body.homepage-refresh .legal-page-banner {
    position: relative;
    padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 60px) 70px !important;
    background: transparent;
    overflow: hidden;
    margin-top: 0 !important;
}

body.homepage-refresh .banner::before {
    content: '';
    position: absolute;
    inset: 12px 18px 0;
    border-radius: 40px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.35)),
        radial-gradient(circle at top right, rgba(255, 106, 27, 0.14), transparent 38%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: var(--refresh-shadow);
}

body.homepage-refresh .banner::after {
    content: none;
}

body.homepage-refresh .banner .container {
    position: relative;
    z-index: 1;
}

body.homepage-refresh .banner .flex.flex-wrap.items-center {
    align-items: flex-start;
}

body.homepage-refresh .banner-content {
    max-width: 620px;
}

body.homepage-refresh .banner h1,
body.homepage-refresh .banner .banner-title,
body.homepage-refresh .banner-content h1 {
    font-size: clamp(3.2rem, 10vw, 7rem) !important;
    line-height: 0.92;
    margin-top: 12px;
    color: var(--refresh-heading) !important;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
}

body.homepage-refresh .banner-content h1 .hero-title-line {
    color: #000 !important;
    display: block;
    white-space: nowrap;
}

body.homepage-refresh .designers {
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: #000 !important;
}

body.homepage-refresh .banner-content h1 .hero-title-line.designers {
    display: inline-block;
    width: fit-content;
    max-width: max-content;
}

body.homepage-refresh .banner-content .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(17, 38, 60, 0.08);
    background: rgba(255, 255, 255, 0.72);
    color: var(--refresh-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

body.homepage-refresh .banner-content .subtitle::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #36b37e;
    box-shadow: 0 0 0 5px rgba(54, 179, 126, 0.12);
}

body.homepage-refresh .hero-lead {
    margin-top: 22px;
    max-width: 560px;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
    line-height: 1.8;
    color: var(--refresh-text);
}

body.homepage-refresh .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

body.homepage-refresh .primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 22px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--refresh-accent), #ff9b5c);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 16px 30px rgba(255, 106, 27, 0.22);
}

body.homepage-refresh .primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(255, 106, 27, 0.28);
}

body.homepage-refresh .hero-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(17, 38, 60, 0.08);
}

body.homepage-refresh .hero-proof-value {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    min-height: 52px;
    padding: 0 12px;
    border-radius: 14px;
    background: var(--refresh-accent-soft);
    color: var(--refresh-accent);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
}

body.homepage-refresh .hero-proof-label {
    max-width: 120px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--refresh-heading);
}

body.homepage-refresh .play-video-btn {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: linear-gradient(135deg, #bb4c12, #ff8a47);
    box-shadow: 0 18px 34px rgba(187, 76, 18, 0.2);
}

body.homepage-refresh .play-video-btn i {
    color: #fff;
}

body.homepage-refresh .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 34px;
}

body.homepage-refresh .hero-metric {
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 38, 60, 0.07);
    box-shadow: var(--refresh-shadow-soft);
}

body.homepage-refresh .hero-metric strong {
    display: block;
    margin-bottom: 6px;
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
}

body.homepage-refresh .hero-metric span {
    display: block;
    color: #607086;
    font-size: 0.9rem;
    line-height: 1.5;
}

body.homepage-refresh .banner-image {
    position: relative;
    align-self: flex-start;
    padding: 28px 18px 18px;
    margin-top: -42px;
}

body.homepage-refresh .banner-image::before {
    content: '';
    position: absolute;
    inset: 12% 4% 6% 10%;
    border-radius: 34px;
    background: linear-gradient(150deg, rgba(255, 106, 27, 0.15), rgba(255, 186, 142, 0.18));
    transform: rotate(-7deg);
}

body.homepage-refresh .banner-image img {
    position: relative;
    z-index: 1;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 32px 60px rgba(36, 61, 89, 0.14);
}

body.homepage-refresh .hero-design-visual {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: clamp(420px, 48vw, 620px);
    padding: clamp(20px, 3vw, 32px);
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(17, 38, 60, 0.08);
    background: linear-gradient(180deg, #f9fbfd 0%, #f2f6fa 100%);
    box-shadow: 0 28px 48px rgba(36, 61, 89, 0.1);
}

body.homepage-refresh .hero-design-visual::before {
    content: none;
}

body.homepage-refresh .hero-design-visual::after {
    content: none;
}

body.homepage-refresh .hero-design-browser {
    position: relative;
    z-index: 1;
    width: min(100%, 580px);
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(17, 38, 60, 0.1);
    box-shadow:
        0 24px 40px rgba(36, 61, 89, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

body.homepage-refresh .hero-design-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 54px;
    padding: 0 16px;
    background: #f5f7fa;
    border-bottom: 1px solid rgba(17, 38, 60, 0.08);
}

body.homepage-refresh .hero-design-toolbar>span:not(.hero-design-badge) {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(17, 38, 60, 0.14);
}

body.homepage-refresh .hero-design-address {
    flex: 1;
    height: 12px;
    margin-left: 6px;
    border-radius: 999px;
    background: rgba(17, 38, 60, 0.1);
}

body.homepage-refresh .hero-design-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--refresh-accent-soft);
    color: var(--refresh-accent);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.homepage-refresh .hero-design-canvas {
    display: grid;
    grid-template-columns: 82px 1fr;
    min-height: clamp(320px, 36vw, 470px);
}

body.homepage-refresh .hero-design-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 22px 16px;
    background: linear-gradient(180deg, #13253a 0%, #0f1c2c 100%);
}

body.homepage-refresh .hero-design-sidebar span {
    display: block;
    width: 100%;
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
}

body.homepage-refresh .hero-design-sidebar span:first-child {
    height: 56px;
    margin-bottom: 6px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 106, 27, 0.3), rgba(255, 106, 27, 0.14));
}

body.homepage-refresh .hero-design-main {
    position: relative;
    padding: clamp(18px, 3vw, 30px);
    background: linear-gradient(180deg, #ffffff 0%, #f5f8fb 100%);
}

body.homepage-refresh .hero-design-wireframe {
    width: min(100%, 320px);
    padding: 16px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: 0 18px 30px rgba(36, 61, 89, 0.08);
}

body.homepage-refresh .hero-design-wireframe-header {
    height: 140px;
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 106, 27, 0.22), rgba(255, 186, 142, 0.28)),
        linear-gradient(180deg, #eef3f8, #e4ebf2);
}

body.homepage-refresh .hero-design-wireframe-body {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

body.homepage-refresh .hero-design-wireframe-body span {
    display: block;
    min-height: 54px;
    border-radius: 14px;
    background: #edf2f7;
    border: 1px solid rgba(17, 38, 60, 0.04);
}

body.homepage-refresh .hero-design-wireframe-body span:first-child {
    grid-column: 1 / -1;
    min-height: 14px;
    border-radius: 999px;
    background: rgba(17, 38, 60, 0.1);
}

body.homepage-refresh .hero-design-palette {
    position: absolute;
    top: 24px;
    right: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 112px;
    padding: 12px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(17, 38, 60, 0.1);
    box-shadow: 0 14px 24px rgba(36, 61, 89, 0.08);
}

body.homepage-refresh .hero-design-palette span {
    display: block;
    aspect-ratio: 1;
    border-radius: 12px;
}

body.homepage-refresh .hero-design-palette span:nth-child(1) {
    background: #ff6a1b;
}

body.homepage-refresh .hero-design-palette span:nth-child(2) {
    background: #111111;
}

body.homepage-refresh .hero-design-palette span:nth-child(3) {
    background: #fff1e7;
}

body.homepage-refresh .hero-design-palette span:nth-child(4) {
    background: #dbe4ee;
}

body.homepage-refresh .hero-design-mobile {
    position: absolute;
    right: clamp(20px, 4vw, 36px);
    bottom: clamp(18px, 4vw, 30px);
    width: clamp(112px, 16vw, 154px);
    min-height: clamp(220px, 26vw, 300px);
    padding: 14px 12px;
    border-radius: 30px;
    background: linear-gradient(180deg, #13253a 0%, #0f1c2c 100%);
    border: 4px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 26px rgba(18, 33, 52, 0.14);
}

body.homepage-refresh .hero-design-mobile-notch {
    width: 44%;
    height: 8px;
    margin: 0 auto;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

body.homepage-refresh .hero-design-mobile-card {
    height: 92px;
    margin-top: 16px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(255, 106, 27, 0.24), rgba(255, 186, 142, 0.28)),
        linear-gradient(180deg, #f3f6fa, #ebf0f6);
}

body.homepage-refresh .hero-design-mobile-lines {
    height: 82px;
    margin-top: 14px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 12px, transparent 12px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 12px, transparent 12px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 12px, transparent 12px);
    background-size: 100% 24px;
    background-position: 0 0, 0 28px, 0 56px;
    background-repeat: no-repeat;
}

body.homepage-refresh .hero-spotlight {
    position: absolute;
    right: 0;
    bottom: 10%;
    z-index: 2;
    max-width: 220px;
    padding: 18px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: 0 18px 35px rgba(36, 61, 89, 0.12);
}

body.homepage-refresh .hero-spotlight-label {
    display: block;
    margin-bottom: 8px;
    color: #6d7c91;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.homepage-refresh .hero-spotlight strong {
    display: block;
    color: var(--refresh-heading);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

body.homepage-refresh .section-subtitle-lines {
    display: inline-grid;
    grid-auto-flow: column;
    grid-template-columns: 34px auto 34px;
    align-items: center;
    column-gap: 14px;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    color: var(--refresh-accent);
    font-family: 'Manrope', sans-serif;
    font-size: 0.82rem !important;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.homepage-refresh .section-subtitle-lines::before,
body.homepage-refresh .section-subtitle-lines::after {
    display: block;
    width: 34px;
    min-width: 34px;
    height: 1px;
    background-color: rgba(255, 106, 27, 0.28);
}

body.homepage-refresh .section-title,
body.homepage-refresh #projects h2,
body.homepage-refresh #services h2,
body.homepage-refresh #testimonial h2,
body.homepage-refresh #blog h2,
body.homepage-refresh .process-section h2,
body.homepage-refresh .meeting-content h2,
body.homepage-refresh .footer-cta h2 {
    color: var(--refresh-heading) !important;
    font-size: clamp(2.35rem, 6vw, 4.5rem) !important;
    line-height: 1.03;
    letter-spacing: -0.04em;
}

body.homepage-refresh .marquee-wrapper {
    margin: 0 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: 0 16px 36px rgba(36, 61, 89, 0.05);
}

body.homepage-refresh .marquee-content {
    gap: 0;
    padding: 20px 0;
}

body.homepage-refresh .marquee-item {
    padding-right: 56px;
    color: #6a6a70;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.15rem, 2vw, 2rem);
    font-weight: 700;
}

body.homepage-refresh .marquee-item::after {
    margin-left: 56px;
    color: #8a8a90;
    opacity: 0.7;
}

body.homepage-refresh .marquee-content img {
    opacity: 0.66;
    filter: grayscale(1) contrast(0.9);
}

body.homepage-refresh .about-intro {
    max-width: 900px;
    margin: 0 auto 42px;
    padding: 36px;
    border-radius: 32px;
    background: var(--refresh-surface);
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow-soft);
    text-align: center;
}

body.homepage-refresh .about-intro p {
    color: var(--refresh-text);
    font-size: 1.05rem;
    line-height: 1.9;
}

body.homepage-refresh .tab-buttons {
    display: inline-flex;
    gap: 10px;
    padding: 8px;
    margin: 0 auto 28px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow-soft);
}

body.homepage-refresh .tab-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 0 !important;
    border-radius: 14px !important;
    padding: 14px 24px !important;
    margin: 0 !important;
    background: transparent;
    color: #6a7a90;
    font-weight: 800;
    line-height: normal !important;
    letter-spacing: 0.05em;
    height: auto !important;
    box-sizing: border-box !important;
    text-align: center;
}

body.homepage-refresh .tab-btn.active {
    background: linear-gradient(135deg, var(--refresh-accent), #ff9b5c);
    color: #fff;
}

body.homepage-refresh .tab-content-area {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding: 18px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow);
}

body.homepage-refresh .tab-content {
    grid-column: 1 / -1;
    display: none;
    gap: 18px;
}

body.homepage-refresh .tab-content.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body.homepage-refresh .info-card {
    padding: 24px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow-soft);
}

body.homepage-refresh .info-card h3,
body.homepage-refresh .info-card h4,
body.homepage-refresh .info-card .info-card-label {
    color: var(--refresh-heading);
}

body.homepage-refresh .info-card h4,
body.homepage-refresh .info-card .info-card-label {
    margin-bottom: 10px;
    color: var(--refresh-accent);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

body.homepage-refresh .info-card p {
    margin-top: 10px;
    color: var(--refresh-text);
    line-height: 1.7;
}

body.homepage-refresh .awards-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow);
}

body.homepage-refresh .awards-table td {
    padding: 24px 28px;
    color: var(--refresh-heading);
}

body.homepage-refresh .awards-table tr+tr td {
    border-top: 1px solid rgba(17, 38, 60, 0.06);
}

body.homepage-refresh .awards-table tr:first-child td {
    padding-top: 30px;
    padding-bottom: 30px;
}

body.homepage-refresh .award-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--refresh-accent);
    font-weight: 700;
    white-space: nowrap;
}

body.homepage-refresh .awards-title-text {
    font-size: clamp(24px, 6vw, 40px);
    line-height: 1.2;
    display: inline-block;
}

body.homepage-refresh .award-link:hover {
    gap: 14px;
}

body.homepage-refresh .portfolio-grid {
    gap: 26px;
}

body.homepage-refresh .project-card {
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow-soft);
}

body.homepage-refresh .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 50px rgba(36, 61, 89, 0.12);
}

body.homepage-refresh .project-img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    background: #edf4fb;
}

body.homepage-refresh .project-img-wrapper img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

body.homepage-refresh .project-card-kudos .project-img-wrapper {
    background: #e8eee4;
}

body.homepage-refresh .kudos-photo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(280px, 36vw, 390px);
    padding: clamp(18px, 3vw, 28px);
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 28% 12%, rgba(255, 248, 216, 0.42), transparent 14%),
        radial-gradient(circle at 72% 18%, rgba(183, 199, 130, 0.2), transparent 18%),
        radial-gradient(circle at 84% 18%, rgba(44, 72, 38, 0.24), transparent 24%),
        linear-gradient(135deg, #5a6644 0%, #354129 36%, #232b1f 100%);
}

body.homepage-refresh .kudos-photo-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 14%, rgba(252, 248, 219, 0.7), transparent 7%),
        radial-gradient(circle at 36% 20%, rgba(165, 184, 117, 0.18), transparent 11%),
        radial-gradient(circle at 82% 18%, rgba(136, 162, 98, 0.2), transparent 14%),
        radial-gradient(circle at 78% 82%, rgba(255, 255, 255, 0.08), transparent 8%),
        linear-gradient(180deg, rgba(8, 12, 7, 0.1), rgba(8, 12, 7, 0.42));
    filter: blur(18px) saturate(0.9);
}

body.homepage-refresh .kudos-photo-frame {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 520px);
    min-height: clamp(232px, 31vw, 332px);
}

body.homepage-refresh .kudos-photo-frame::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4%;
    width: clamp(88px, 11vw, 132px);
    height: clamp(128px, 16vw, 194px);
    border-radius: 44px 44px 32px 32px;
    background: linear-gradient(180deg, #f2c9aa 0%, #d8a07b 100%);
    box-shadow:
        0 10px 20px rgba(30, 22, 18, 0.14),
        inset 0 8px 10px rgba(255, 255, 255, 0.14);
    transform: translateX(-10%) rotate(12deg);
    opacity: 0.92;
}

body.homepage-refresh .kudos-photo-frame::after {
    content: '';
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 16%;
    height: 28px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(12, 18, 10, 0.28), rgba(12, 18, 10, 0.02) 74%);
    filter: blur(10px);
}

body.homepage-refresh .kudos-photo-card {
    position: relative;
    z-index: 2;
    width: min(86%, 438px);
    min-height: clamp(136px, 17vw, 194px);
    padding: clamp(22px, 3vw, 32px);
    border-radius: 8px;
    border: 1px solid rgba(18, 24, 20, 0.06);
    background: linear-gradient(180deg, #ffffff 0%, #f7f7f6 100%);
    box-shadow:
        0 24px 44px rgba(23, 28, 18, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    transform: rotate(-0.8deg) translateY(-8px);
}

body.homepage-refresh .kudos-photo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 40%);
    pointer-events: none;
}

body.homepage-refresh .kudos-photo-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.8vw, 22px);
    min-height: 100%;
}

body.homepage-refresh .kudos-photo-hand {
    position: absolute;
    left: 50%;
    bottom: 2%;
    z-index: 3;
    width: clamp(68px, 8vw, 92px);
    height: clamp(92px, 12vw, 132px);
    border-radius: 36px 36px 28px 28px;
    background: linear-gradient(180deg, #f2c9aa 0%, #d59b75 100%);
    box-shadow:
        0 12px 18px rgba(30, 22, 18, 0.12),
        inset 0 8px 10px rgba(255, 255, 255, 0.14);
    transform: translateX(-18%) rotate(14deg);
}

body.homepage-refresh .kudos-photo-thumb {
    position: absolute;
    top: -10px;
    right: -6px;
    width: 46%;
    height: 30%;
    border-radius: 999px;
    background: linear-gradient(180deg, #efc2a0 0%, #d69d79 100%);
    transform: rotate(28deg);
    box-shadow: inset 0 6px 8px rgba(255, 255, 255, 0.12);
}

body.homepage-refresh .kudos-photo-mark {
    color: #97c847;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3.4rem, 6.8vw, 5.6rem);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.08em;
}

body.homepage-refresh .kudos-photo-divider {
    width: 3px;
    align-self: stretch;
    min-height: clamp(72px, 10vw, 104px);
    background: rgba(15, 20, 28, 0.92);
}

body.homepage-refresh .kudos-photo-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(2px, 0.6vw, 6px);
    line-height: 1;
}

body.homepage-refresh .kudos-photo-copy strong,
body.homepage-refresh .kudos-photo-copy span {
    display: block;
    color: #111111;
    white-space: nowrap;
}

body.homepage-refresh .kudos-photo-copy strong {
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

body.homepage-refresh .kudos-photo-copy span {
    font-size: clamp(1.18rem, 2.5vw, 2.15rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

body.homepage-refresh .project-card-identikon .project-img-wrapper img {
    object-position: center top;
    transform: translateY(-18px) scale(1.05);
    transform-origin: center top;
}

body.homepage-refresh .project-card-identikon:hover .project-img-wrapper img {
    transform: translateY(-24px) scale(1.1);
}

body.homepage-refresh .kudos-project-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(280px, 36vw, 390px);
    padding: clamp(18px, 3vw, 28px);
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.75), transparent 30%),
        radial-gradient(circle at 85% 20%, rgba(193, 211, 152, 0.38), transparent 24%),
        linear-gradient(180deg, #edf2f5 0%, #dbe4ea 100%);
}

body.homepage-refresh .kudos-project-visual::before {
    content: '';
    position: absolute;
    inset: auto 12% 10% 12%;
    height: 24px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(50, 62, 74, 0.22), rgba(50, 62, 74, 0.02) 70%);
    filter: blur(6px);
}

body.homepage-refresh .kudos-laptop {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

body.homepage-refresh .kudos-laptop-screen {
    position: relative;
    width: 100%;
    min-height: clamp(230px, 30vw, 320px);
    overflow: hidden;
    border-radius: 18px;
    border: 10px solid #cfd7de;
    background:
        linear-gradient(90deg, rgba(10, 15, 20, 0.8) 0%, rgba(10, 15, 20, 0.58) 30%, rgba(42, 27, 12, 0.44) 58%, rgba(88, 57, 23, 0.7) 100%),
        radial-gradient(circle at 72% 38%, rgba(213, 147, 67, 0.36), transparent 18%),
        radial-gradient(circle at 82% 66%, rgba(184, 122, 52, 0.28), transparent 22%),
        linear-gradient(118deg, #495257 0%, #704f30 48%, #58401f 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 26px 40px rgba(34, 49, 65, 0.18);
}

body.homepage-refresh .kudos-laptop-screen::before {
    content: '';
    position: absolute;
    inset: 60px auto 0 23%;
    width: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
    box-shadow:
        28px 0 0 rgba(255, 255, 255, 0.1),
        56px 0 0 rgba(255, 255, 255, 0.06);
    opacity: 0.24;
}

body.homepage-refresh .kudos-laptop-base {
    position: relative;
    width: calc(100% + 34px);
    height: 16px;
    margin-top: -1px;
    border-radius: 0 0 22px 22px;
    background: linear-gradient(180deg, #dfe6ec 0%, #bcc8d3 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.7),
        0 12px 24px rgba(50, 62, 74, 0.12);
}

body.homepage-refresh .kudos-laptop-base::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 2px;
    width: 84px;
    height: 6px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: rgba(123, 137, 150, 0.35);
}

body.homepage-refresh .kudos-browser-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(247, 248, 243, 0.96);
    border-bottom: 1px solid rgba(24, 37, 24, 0.08);
}

body.homepage-refresh .kudos-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

body.homepage-refresh .kudos-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(171, 196, 112, 0.18);
    color: #7ea441;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

body.homepage-refresh .kudos-brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1;
}

body.homepage-refresh .kudos-brand-copy strong,
body.homepage-refresh .kudos-brand-copy span {
    display: block;
    color: #111826;
}

body.homepage-refresh .kudos-brand-copy strong {
    font-size: 0.78rem;
    letter-spacing: 0.04em;
}

body.homepage-refresh .kudos-brand-copy span {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

body.homepage-refresh .kudos-nav {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 14px);
    color: #1d2432;
    font-size: 0.66rem;
    font-weight: 700;
    white-space: nowrap;
}

body.homepage-refresh .kudos-cta-chip,
body.homepage-refresh .kudos-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #a9c76b;
    color: #10180d;
    font-size: 0.7rem;
    font-weight: 800;
}

body.homepage-refresh .kudos-cta-chip {
    min-height: 30px;
    padding: 0 12px;
    white-space: nowrap;
}

body.homepage-refresh .kudos-hero-copy {
    position: absolute;
    top: 72px;
    left: clamp(16px, 3vw, 26px);
    right: 34%;
    bottom: clamp(16px, 3vw, 24px);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

body.homepage-refresh .kudos-eyebrow {
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 2px solid rgba(169, 199, 107, 0.9);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.68rem;
    font-weight: 600;
}

body.homepage-refresh .kudos-headline {
    max-width: 9ch;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.2rem, 2vw, 2.05rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.04em;
}

body.homepage-refresh .kudos-subline {
    max-width: 12ch;
    margin-top: 10px;
    color: #bad97d;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(0.82rem, 1vw, 1.05rem);
    font-weight: 700;
    line-height: 1.15;
}

body.homepage-refresh .kudos-button {
    min-height: 30px;
    width: fit-content;
    padding: 0 14px;
    margin-top: 14px;
}

body.homepage-refresh .kudos-figure {
    position: absolute;
    right: 8%;
    bottom: 2px;
    width: clamp(54px, 7vw, 82px);
    height: clamp(116px, 15vw, 168px);
    background:
        radial-gradient(circle at 50% 18%, rgba(31, 32, 36, 0.82) 0 16px, transparent 17px),
        linear-gradient(180deg, rgba(17, 17, 19, 0.78) 0%, rgba(8, 8, 10, 0.9) 100%);
    border-radius: 44% 44% 18% 18%;
    box-shadow:
        0 -26px 0 -18px rgba(10, 10, 12, 0.56),
        inset 0 -8px 0 rgba(255, 255, 255, 0.02);
    opacity: 0.68;
}

body.homepage-refresh .kudos-figure::before,
body.homepage-refresh .kudos-figure::after {
    content: none;
}

body.homepage-refresh .project-card-hkm .project-img-wrapper {
    background: #f3ede4;
}

body.homepage-refresh .hkm-project-visual {
    position: relative;
    display: block;
    min-height: clamp(280px, 36vw, 390px);
    padding: clamp(18px, 3vw, 28px);
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 16% 14%, rgba(255, 255, 255, 0.7), transparent 20%),
        radial-gradient(circle at 86% 16%, rgba(239, 182, 98, 0.3), transparent 22%),
        linear-gradient(180deg, #e8eef3 0%, #d7dfdf 100%);
}

body.homepage-refresh .hkm-project-visual::before {
    content: '';
    position: absolute;
    inset: auto 10% 9% 10%;
    height: 24px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(42, 51, 65, 0.24), rgba(42, 51, 65, 0.02) 72%);
    filter: blur(6px);
}

body.homepage-refresh .hkm-browser {
    position: relative;
    z-index: 1;
    width: min(100%, 540px);
    padding: 9px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f5f7f9 0%, #d7e0e6 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 22px 38px rgba(35, 49, 67, 0.15);
    transform: rotate(-1.1deg);
}

body.homepage-refresh .hkm-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 20px;
    padding: 0 8px;
}

body.homepage-refresh .hkm-browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(123, 137, 150, 0.55);
}

body.homepage-refresh .hkm-address-bar {
    flex: 1;
    height: 8px;
    margin-left: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
}

body.homepage-refresh .hkm-screen {
    position: relative;
    min-height: clamp(228px, 30vw, 320px);
    overflow: hidden;
    border-radius: 16px;
    background:
        radial-gradient(circle at 68% 54%, rgba(255, 222, 160, 0.76), rgba(255, 222, 160, 0.16) 11%, transparent 14%),
        linear-gradient(180deg, #959caf 0%, #bbb2b4 30%, #ddb177 58%, #855837 75%, #2c211d 100%);
}

body.homepage-refresh .hkm-screen::before {
    content: '';
    position: absolute;
    top: 3%;
    right: 3%;
    width: 20%;
    height: 24%;
    opacity: 0.14;
    background:
        linear-gradient(116deg, transparent 45%, rgba(35, 24, 18, 0.78) 46%, transparent 48%, transparent 57%, rgba(35, 24, 18, 0.78) 58%, transparent 60%),
        linear-gradient(156deg, transparent 38%, rgba(35, 24, 18, 0.6) 39%, transparent 42%, transparent 70%, rgba(35, 24, 18, 0.52) 71%, transparent 73%);
}

body.homepage-refresh .hkm-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 19, 32, 0.04) 0%, rgba(13, 19, 32, 0.24) 100%);
    pointer-events: none;
}

body.homepage-refresh .hkm-topnav {
    position: absolute;
    top: clamp(12px, 2vw, 16px);
    left: clamp(12px, 2vw, 16px);
    right: clamp(12px, 2vw, 16px);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 44px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(244, 248, 244, 0.96);
    border: 1px solid rgba(26, 40, 59, 0.05);
    box-shadow: 0 8px 18px rgba(38, 52, 70, 0.1);
}

body.homepage-refresh .hkm-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

body.homepage-refresh .hkm-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #cf7b35;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
}

body.homepage-refresh .hkm-brand-text {
    color: #1e2430;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

body.homepage-refresh .hkm-nav {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.1vw, 14px);
    color: #171f2b;
    font-size: 0.67rem;
    font-weight: 700;
    white-space: nowrap;
}

body.homepage-refresh .hkm-give,
body.homepage-refresh .hkm-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ff6a1b;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 800;
}

body.homepage-refresh .hkm-give {
    min-height: 30px;
    padding: 0 12px;
    white-space: nowrap;
}

body.homepage-refresh .hkm-sun {
    position: absolute;
    right: 22%;
    bottom: 36%;
    z-index: 1;
    width: clamp(40px, 6vw, 68px);
    height: clamp(40px, 6vw, 68px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 247, 227, 0.98) 0%, rgba(255, 235, 187, 0.96) 40%, rgba(255, 191, 101, 0.36) 66%, transparent 68%);
    box-shadow: 0 0 34px rgba(255, 190, 100, 0.28);
}

body.homepage-refresh .hkm-ridge {
    position: absolute;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
}

body.homepage-refresh .hkm-ridge-back {
    bottom: 18%;
    height: 24%;
    background:
        linear-gradient(180deg, transparent, transparent),
        linear-gradient(90deg, transparent 0, transparent 100%);
    clip-path: polygon(0 78%, 12% 64%, 25% 70%, 40% 54%, 54% 62%, 68% 44%, 82% 58%, 100% 40%, 100% 100%, 0 100%);
    background-color: rgba(95, 74, 70, 0.34);
}

body.homepage-refresh .hkm-ridge-front {
    bottom: 0;
    height: 30%;
    clip-path: polygon(0 70%, 14% 50%, 28% 60%, 44% 42%, 58% 52%, 74% 34%, 88% 46%, 100% 28%, 100% 100%, 0 100%);
    background: linear-gradient(180deg, rgba(88, 62, 45, 0.12) 0%, rgba(52, 35, 23, 0.82) 100%);
}

body.homepage-refresh .hkm-cityline {
    position: absolute;
    left: 6%;
    bottom: 12%;
    z-index: 1;
    width: 34%;
    height: 18%;
    opacity: 0.5;
    background:
        linear-gradient(90deg, transparent 0 4%, rgba(225, 214, 194, 0.9) 4% 8%, transparent 8% 12%, rgba(212, 202, 182, 0.88) 12% 18%, transparent 18% 23%, rgba(206, 197, 178, 0.82) 23% 30%, transparent 30% 36%, rgba(220, 209, 189, 0.86) 36% 42%, transparent 42%);
    filter: blur(0.2px);
}

body.homepage-refresh .hkm-copy {
    position: absolute;
    top: 54%;
    left: clamp(20px, 4vw, 30px);
    right: 39%;
    bottom: auto;
    z-index: 2;
    transform: translateY(-14%);
}

body.homepage-refresh .hkm-headline {
    max-width: 9ch;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.45rem, 2.5vw, 2.35rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-shadow: 0 4px 18px rgba(16, 22, 29, 0.18);
}

body.homepage-refresh .hkm-subline {
    max-width: 30ch;
    margin-top: 10px;
    color: rgba(255, 245, 236, 0.92);
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.35;
}

body.homepage-refresh .hkm-button {
    min-height: 34px;
    padding: 0 14px;
    margin-top: 14px;
    background: rgba(11, 20, 35, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

body.homepage-refresh .project-card-mandal .project-img-wrapper {
    background: #e0e9f1;
}

body.homepage-refresh .mandal-project-visual {
    position: relative;
    display: block;
    min-height: clamp(280px, 36vw, 390px);
    padding: clamp(18px, 3vw, 28px);
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.16), transparent 20%),
        linear-gradient(180deg, #183c58 0%, #1e4f72 52%, #18354d 100%);
}

body.homepage-refresh .mandal-panel {
    position: relative;
    min-height: clamp(244px, 31vw, 340px);
    overflow: hidden;
    border-radius: 20px;
    background:
        linear-gradient(90deg, rgba(11, 35, 56, 0.92) 0%, rgba(14, 49, 78, 0.84) 32%, rgba(24, 71, 109, 0.7) 58%, rgba(30, 86, 128, 0.52) 100%),
        linear-gradient(180deg, #274f6f 0%, #183750 100%);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.06),
        0 24px 44px rgba(19, 39, 58, 0.2);
}

body.homepage-refresh .mandal-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background:
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 3px, transparent 3px 20px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 34%);
}

body.homepage-refresh .mandal-panel::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 25, 40, 0.04) 0%, rgba(8, 25, 40, 0.22) 100%);
}

body.homepage-refresh .mandal-backdrop {
    position: absolute;
    inset: 0;
}

body.homepage-refresh .mandal-backdrop::before {
    content: '';
    position: absolute;
    left: 6%;
    bottom: 14%;
    width: 12%;
    height: 36%;
    border-radius: 16px 16px 8px 8px;
    background: linear-gradient(180deg, rgba(10, 23, 34, 0.42) 0%, rgba(8, 21, 33, 0.68) 100%);
    box-shadow: 140px 26px 0 -14px rgba(235, 243, 250, 0.09);
}

body.homepage-refresh .mandal-backdrop::after {
    content: '';
    position: absolute;
    right: 6%;
    bottom: 10%;
    width: 34%;
    height: 30%;
    border-radius: 18px 18px 0 0;
    background:
        radial-gradient(circle at 50% 26%, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(180deg, rgba(229, 239, 248, 0.14) 0%, rgba(228, 238, 247, 0.04) 100%);
    box-shadow:
        -168px -22px 0 -38px rgba(233, 241, 248, 0.08),
        -114px -28px 0 -48px rgba(233, 241, 248, 0.06);
}

body.homepage-refresh .mandal-copy {
    position: absolute;
    top: 50%;
    left: clamp(20px, 4vw, 36px);
    right: clamp(20px, 4vw, 36px);
    z-index: 2;
    transform: translateY(-50%);
    text-align: center;
}

body.homepage-refresh .mandal-headline {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.9rem, 3.6vw, 3.4rem);
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: -0.05em;
}

body.homepage-refresh .mandal-subline {
    max-width: 22ch;
    margin: 14px auto 0;
    color: rgba(238, 246, 252, 0.92);
    font-size: clamp(0.88rem, 1.2vw, 1.2rem);
    font-weight: 500;
    line-height: 1.35;
}

body.homepage-refresh .mandal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: 18px;
    padding: 0 20px;
    border-radius: 999px;
    border: 2px solid rgba(218, 231, 242, 0.42);
    background: rgba(18, 63, 97, 0.56);
    color: #f8fbfe;
    font-size: 0.9rem;
    font-weight: 700;
    backdrop-filter: blur(2px);
}

body.homepage-refresh .project-arrow-btn {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--refresh-accent);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: 0 16px 30px rgba(36, 61, 89, 0.12);
}

body.homepage-refresh .project-arrow-btn:hover {
    background: var(--refresh-accent);
    color: #fff;
}

body.homepage-refresh .project-content {
    padding: 24px 8px 8px;
}

body.homepage-refresh .project-category {
    color: #6d7c91;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

body.homepage-refresh .project-title,
body.homepage-refresh .project-title a {
    color: var(--refresh-heading);
    font-size: clamp(1.3rem, 2vw, 2rem);
}

body.homepage-refresh .meeting-bg {
    padding: clamp(26px, 4vw, 44px);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 243, 0.92)),
        linear-gradient(135deg, rgba(255, 106, 27, 0.06), rgba(255, 186, 142, 0.08));
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow);
}

body.homepage-refresh .meeting-content h2 {
    max-width: 520px;
    margin-bottom: 16px;
}

body.homepage-refresh .meeting-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(17, 38, 60, 0.08);
}

body.homepage-refresh .meeting-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--refresh-accent-soft);
    color: var(--refresh-accent);
}

body.homepage-refresh .meeting-contact-item div>span:first-child {
    color: #718097 !important;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.homepage-refresh .meeting-contact-item div>a,
body.homepage-refresh .meeting-contact-item div>span:last-child {
    color: var(--refresh-heading) !important;
    font-size: clamp(1.05rem, 2vw, 1.3rem) !important;
}

body.homepage-refresh .meeting-cta {
    margin-top: 30px;
}

body.homepage-refresh .meeting-bg img {
    width: 100%;
    border-radius: 28px !important;
    box-shadow: 0 22px 45px rgba(36, 61, 89, 0.12);
}

body.homepage-refresh .services-list {
    padding: 14px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow);
}

body.homepage-refresh .service-item {
    border-radius: 26px;
    padding: 26px 28px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid transparent;
    box-shadow: none;
}

body.homepage-refresh .service-item+.service-item {
    margin-top: 14px;
}

body.homepage-refresh .service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 106, 27, 0.14);
    box-shadow: 0 20px 36px rgba(36, 61, 89, 0.08);
}

body.homepage-refresh .service-id {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--refresh-accent-soft);
    color: var(--refresh-accent);
    font-family: 'Space Grotesk', sans-serif;
}

body.homepage-refresh .service-content h5,
body.homepage-refresh .service-content .service-category {
    color: #718097 !important;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.homepage-refresh .service-content h3,
body.homepage-refresh .service-content h3 a {
    color: var(--refresh-heading) !important;
    font-size: clamp(1.35rem, 2vw, 2.05rem);
}

body.homepage-refresh .service-content p {
    color: var(--refresh-text) !important;
}

body.homepage-refresh .service-arrow {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(17, 38, 60, 0.08);
    color: var(--refresh-accent);
}

body.homepage-refresh .service-arrow a {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

body.homepage-refresh .service-arrow i {
    color: inherit;
}

body.homepage-refresh .service-item:hover .service-arrow {
    background: var(--refresh-accent);
    border-color: var(--refresh-accent);
    color: #fff;
}

body.homepage-refresh .process-section {
    padding: clamp(28px, 4vw, 46px);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow);
}

body.homepage-refresh .process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

body.homepage-refresh .process-card {
    padding: 28px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow-soft);
}

body.homepage-refresh .process-card li+li {
    margin-top: 8px;
}

body.homepage-refresh .testimonial-bg {
    padding: clamp(28px, 4vw, 46px);
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 250, 255, 0.92));
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow);
}

body.homepage-refresh .stars i {
    color: #ffb347;
}

body.homepage-refresh .testimonial-text {
    color: var(--refresh-heading);
    font-size: clamp(1.15rem, 2vw, 1.7rem);
    line-height: 1.7;
}

body.homepage-refresh .client-info h4,
body.homepage-refresh .client-info h3 {
    color: var(--refresh-heading);
}

body.homepage-refresh .client-info span {
    color: #718097;
}

body.homepage-refresh .dot {
    background: rgba(17, 38, 60, 0.16);
}

body.homepage-refresh .dot.active {
    background: var(--refresh-accent);
}

body.homepage-refresh .partner-slider-container {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(17, 38, 60, 0.08);
}

body.homepage-refresh .partner-slider-container p[style] {
    color: var(--refresh-heading) !important;
    font-size: clamp(1rem, 2vw, 1.2rem) !important;
}

body.homepage-refresh .partner-track {
    gap: 18px;
}

body.homepage-refresh .partner-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 38, 60, 0.08);
    box-shadow: 0 12px 26px rgba(36, 61, 89, 0.06);
    color: var(--refresh-heading);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

body.homepage-refresh .partner-track img {
    opacity: 0.68;
    filter: grayscale(1) contrast(0.88);
}

body.homepage-refresh .blog-grid {
    gap: 24px;
}

body.homepage-refresh .blog-card {
    padding: 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow-soft);
}

body.homepage-refresh .blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 50px rgba(36, 61, 89, 0.12);
}

body.homepage-refresh .blog-img {
    margin-bottom: 18px;
    border-radius: 22px;
    overflow: hidden;
}

body.homepage-refresh .blog-img img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

body.homepage-refresh .blog-date {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--refresh-accent-soft);
    color: var(--refresh-accent);
    font-weight: 700;
}

body.homepage-refresh .blog-card h3,
body.homepage-refresh .blog-card h3 a {
    color: var(--refresh-heading);
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    line-height: 1.35;
}

body.homepage-refresh footer {
    border-top: none !important;
    background: transparent;
}

body.homepage-refresh footer .container {
    padding: clamp(28px, 4vw, 48px);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(17, 38, 60, 0.06);
    box-shadow: var(--refresh-shadow);
}

body.homepage-refresh .footer-cta {
    padding-bottom: 28px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(17, 38, 60, 0.08);
}

body.homepage-refresh .footer-content {
    gap: 30px;
}

body.homepage-refresh .footer-info p[style] {
    color: var(--refresh-text) !important;
    font-size: clamp(1rem, 1.6vw, 1.18rem) !important;
    line-height: 1.8;
}

body.homepage-refresh .footer-info a[style] {
    color: var(--refresh-heading) !important;
    font-size: clamp(1.5rem, 3vw, 2.35rem) !important;
    text-decoration-thickness: 2px;
}

body.homepage-refresh .social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 22px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(17, 38, 60, 0.08);
    color: var(--refresh-heading);
    font-weight: 700;
    gap: 12px;
}

body.homepage-refresh .social-link:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 106, 27, 0.18);
    box-shadow: 0 16px 26px rgba(36, 61, 89, 0.08);
}

body.homepage-refresh footer .container>.flex.flex-wrap.justify-between.items-center {
    margin-top: 30px;
    padding-top: 24px !important;
    border-top: 1px solid rgba(17, 38, 60, 0.08) !important;
}

body.homepage-refresh footer .container>.flex.flex-wrap.justify-between.items-center p {
    color: #69788d;
}

body.homepage-refresh footer .container>.flex.flex-wrap.justify-between.items-center a[style] {
    color: var(--refresh-heading) !important;
}

body.homepage-refresh .video-modal .modal-content {
    background: #fff;
    border: 1px solid rgba(17, 38, 60, 0.08);
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(18, 43, 69, 0.2);
    overflow: hidden;
}

@media (max-width: 1100px) {
    body.homepage-refresh .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.homepage-refresh .hero-spotlight {
        right: 18px;
        bottom: 24px;
    }

    body.homepage-refresh .kudos-nav {
        gap: 12px;
        font-size: 0.72rem;
    }

    body.homepage-refresh .tab-content.active,
    body.homepage-refresh .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    body.homepage-refresh .nav-container {
        min-height: 80px;
    }

    body.homepage-refresh .logo {
        gap: 10px;
    }

    body.homepage-refresh .logo-icon {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    body.homepage-refresh .logo-text {
        font-size: 1.2rem;
    }

    /* Gruppere språkvelger med hamburgermeny til høyre på små skjermer */
    body.homepage-refresh .nav-container {
        position: relative;
    }

    body.homepage-refresh .lang-switch-desktop {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 16px 0 auto !important;
    }

    body.homepage-refresh .banner {
        padding: clamp(40px, 6vw, 70px) clamp(24px, 5vw, 60px) 60px !important;
        /* Samme luft og avstander som på desktop */
    }

    body.homepage-refresh .banner::before {
        inset: 12px 18px 0;
        /* Matcher dekstop nøyaktig */
        border-radius: 28px;
    }

    body.homepage-refresh .kudos-browser-bar {
        gap: 10px;
        padding: 12px 14px;
    }

    body.homepage-refresh .kudos-project-visual {
        min-height: 260px;
        padding: 14px;
    }

    body.homepage-refresh .kudos-laptop-screen {
        border-width: 8px;
        min-height: 214px;
    }

    body.homepage-refresh .kudos-laptop-base {
        width: calc(100% + 18px);
        height: 14px;
    }

    body.homepage-refresh .kudos-nav,
    body.homepage-refresh .kudos-cta-chip {
        display: none;
    }

    body.homepage-refresh .kudos-hero-copy {
        top: 60px;
        right: 24%;
        bottom: 18px;
    }

    body.homepage-refresh .kudos-headline {
        max-width: none;
        font-size: clamp(1.12rem, 6vw, 1.65rem);
    }

    body.homepage-refresh .kudos-subline {
        max-width: 14ch;
        font-size: 0.82rem;
    }

    body.homepage-refresh .kudos-figure {
        right: 4%;
        width: 56px;
        height: 118px;
        opacity: 0.45;
    }

    body.homepage-refresh .kudos-photo-visual {
        min-height: 260px;
        padding: 14px;
    }

    body.homepage-refresh .kudos-photo-card {
        width: min(90%, 340px);
        padding: 16px;
        transform: rotate(-0.6deg) translateY(-4px);
    }

    body.homepage-refresh .kudos-photo-frame::before {
        width: 88px;
        height: 126px;
        bottom: 3%;
    }

    body.homepage-refresh .kudos-photo-hand {
        width: 62px;
        height: 94px;
        bottom: 1%;
    }

    body.homepage-refresh .kudos-photo-mark {
        font-size: clamp(2.7rem, 11vw, 4rem);
    }

    body.homepage-refresh .kudos-photo-copy strong {
        font-size: clamp(1.22rem, 5.8vw, 2rem);
    }

    body.homepage-refresh .kudos-photo-copy span {
        font-size: clamp(0.9rem, 4.4vw, 1.35rem);
    }

    body.homepage-refresh .hkm-project-visual {
        min-height: 260px;
        padding: 14px;
    }

    body.homepage-refresh .hkm-browser {
        padding: 8px;
        transform: none;
    }

    body.homepage-refresh .hkm-screen {
        min-height: 214px;
    }

    body.homepage-refresh .hkm-topnav {
        min-height: 42px;
        padding: 6px 10px;
    }

    body.homepage-refresh .hkm-nav,
    body.homepage-refresh .hkm-give {
        display: none;
    }

    body.homepage-refresh .hkm-brand-text {
        font-size: 0.72rem;
    }

    body.homepage-refresh .hkm-copy {
        top: auto;
        left: 18px;
        right: 18px;
        bottom: 18px;
        transform: none;
    }

    body.homepage-refresh .hkm-headline {
        max-width: none;
        font-size: clamp(1.32rem, 7vw, 1.95rem);
    }

    body.homepage-refresh .hkm-subline {
        max-width: 24ch;
        font-size: 0.76rem;
    }

    body.homepage-refresh .mandal-project-visual {
        min-height: 260px;
        padding: 14px;
    }

    body.homepage-refresh .mandal-panel {
        min-height: 214px;
    }

    body.homepage-refresh .mandal-copy {
        left: 18px;
        right: 18px;
    }

    body.homepage-refresh .mandal-headline {
        font-size: clamp(1.45rem, 7vw, 2.15rem);
    }

    body.homepage-refresh .mandal-subline {
        max-width: 24ch;
        font-size: 0.8rem;
    }

    body.homepage-refresh .mandal-button {
        min-height: 36px;
        padding: 0 16px;
        font-size: 0.82rem;
    }

    body.homepage-refresh .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.homepage-refresh .primary-cta,
    body.homepage-refresh .hero-proof {
        width: 100%;
        justify-content: center;
    }

    body.homepage-refresh .hero-proof-label {
        max-width: none;
    }

    body.homepage-refresh .hero-metrics,
    body.homepage-refresh .tab-content.active,
    body.homepage-refresh .process-grid {
        grid-template-columns: 1fr;
    }

    body.homepage-refresh .banner-image {
        align-self: auto;
        margin-top: 28px;
        padding: 18px 0 0;
    }

    body.homepage-refresh .hero-design-visual {
        min-height: 320px;
        padding: 14px;
    }

    body.homepage-refresh .hero-design-visual::after {
        top: 16px;
        right: 16px;
        width: 92px;
        height: 92px;
        border-radius: 22px;
    }

    body.homepage-refresh .hero-design-canvas {
        grid-template-columns: 64px 1fr;
        min-height: 260px;
    }

    body.homepage-refresh .hero-design-sidebar {
        padding: 16px 12px;
        gap: 10px;
    }

    body.homepage-refresh .hero-design-wireframe {
        width: calc(100% - 74px);
        max-width: 250px;
        padding: 12px;
    }

    body.homepage-refresh .hero-design-wireframe-header {
        height: 96px;
    }

    body.homepage-refresh .hero-design-palette {
        top: 16px;
        right: 16px;
        width: 88px;
        gap: 8px;
        padding: 10px;
    }

    body.homepage-refresh .hero-design-mobile {
        right: 16px;
        bottom: 16px;
        width: 94px;
        min-height: 190px;
        padding: 12px 10px;
    }

    body.homepage-refresh .hero-spotlight {
        position: static;
        max-width: none;
        margin-top: 20px;
    }

    body.homepage-refresh .marquee-wrapper {
        margin: 0 16px;
    }

    body.homepage-refresh .about-intro,
    body.homepage-refresh .tab-content-area,
    body.homepage-refresh .awards-table,
    body.homepage-refresh .meeting-bg,
    body.homepage-refresh .services-list,
    body.homepage-refresh .process-section,
    body.homepage-refresh .testimonial-bg,
    body.homepage-refresh footer .container {
        border-radius: 24px;
    }

    body.homepage-refresh .about-intro,
    body.homepage-refresh .meeting-bg,
    body.homepage-refresh .process-section,
    body.homepage-refresh .testimonial-bg,
    body.homepage-refresh footer .container {
        padding: 24px;
    }

    body.homepage-refresh .tab-buttons {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
        justify-content: center;
        gap: clamp(4px, 1.5vw, 10px);
        padding: 4px;
        overflow-x: auto;
    }

    body.homepage-refresh .tab-btn {
        -webkit-appearance: none;
        appearance: none;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 0 !important;
        border-radius: 12px !important;
        padding: 14px clamp(10px, 3.5vw, 18px) !important;
        margin: 0 !important;
        height: auto !important;
        box-sizing: border-box !important;
        text-align: center;
        flex: 0 0 auto;
        font-size: clamp(0.7rem, 3.2vw, 0.95rem);
        font-weight: 800 !important;
        line-height: normal !important;
    }

    body.homepage-refresh .awards-table,
    body.homepage-refresh .awards-table tbody {
        display: block;
        width: 100%;
        border: none !important;
    }

    body.homepage-refresh .awards-table tr {
        display: flex;
        flex-direction: column;
        width: auto;
        margin: 0 20px;
        border-top: 1px solid rgba(17, 38, 60, 0.06);
        border-bottom: none !important;
    }

    body.homepage-refresh .awards-table tr:first-child {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
        padding: 24px 0px;
        border-top: none;
    }

    body.homepage-refresh .awards-table tr:first-child td {
        padding: 0 !important;
        width: auto !important;
        display: block;
        border: none !important;
    }

    body.homepage-refresh .awards-table tr:not(:first-child) td {
        display: block;
        width: 100%;
        padding: 4px 0px;
        text-align: left !important;
        border: none !important;
    }

    body.homepage-refresh .awards-table tr:not(:first-child) td:first-child {
        padding-top: 20px;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--refresh-heading);
    }

    body.homepage-refresh .awards-table tr:not(:first-child) td:nth-child(2) {
        color: #6a7a90;
        padding-bottom: 8px;
        line-height: 1.6;
    }

    body.homepage-refresh .awards-table tr:not(:first-child) td:nth-child(3) {
        padding-bottom: 20px;
        font-weight: 600;
        font-size: 0.9rem;
        color: var(--refresh-accent);
    }

    body.homepage-refresh .service-item {
        padding: 22px 18px;
        gap: 16px;
    }

    body.homepage-refresh .service-content h3,
    body.homepage-refresh .service-content h3 a {
        font-size: clamp(1.05rem, 4.5vw, 1.3rem) !important;
        line-height: 1.25;
        letter-spacing: -0.01em;
    }

    body.homepage-refresh .service-arrow {
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        border-radius: 14px !important;
        font-size: 0.9rem !important;
    }

    body.homepage-refresh .footer-links {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    body.homepage-refresh .social-link {
        padding: 18px 24px !important;
    }

    body.homepage-refresh .hidden-mobile {
        display: none !important;
    }

    /* Footer Bottom Optimization */
    .footer .flex.flex-wrap.justify-between.items-center {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    /* Footer Bottom Optimization - Balanced v30 */
    footer .flex.flex-wrap.justify-between.items-center {
        flex-direction: column !important;
        gap: 20px !important;
        text-align: center !important;
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }

    footer .flex.flex-wrap.justify-between.items-center .flex.gap-4 {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
        align-items: center !important;
        margin-top: 5px !important;
    }

    .admin-secret {
        opacity: 0 !important;
        cursor: default !important;
        pointer-events: auto !important;
        user-select: none !important;
    }

    footer .flex.flex-wrap.justify-between.items-center p {
        margin-bottom: 2px !important;
        font-size: 0.95rem !important;
        opacity: 0.8;
        word-spacing: 4px !important;
        /* Økt ordavstand for bedre lesbarhet */
    }

    /* v31 Optimeringer - Midtstilt footer & Prosjektsider */
    body.homepage-refresh .footer-content {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 40px !important;
    }

    body.homepage-refresh .footer-info {
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    body.homepage-refresh .footer-links {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 380px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }

    body.homepage-refresh .footer-links a.social-link {
        width: 100% !important;
        justify-content: center !important;
    }

    /* Breadcrumb & Project Hero Mobil - v31 */
    @media (max-width: 768px) {
        .breadcrumb {
            justify-content: center !important;
            gap: 8px !important;
            margin-top: 15px !important;
            flex-wrap: wrap !important;
        }

        .breadcrumb li {
            font-size: 13px !important;
        }

        body.project-page-refresh .project-page-banner {
            padding-top: 90px !important;
            padding-bottom: 40px !important;
        }

        body.project-page-refresh .project-page-title {
            font-size: 2.1rem !important;
            /* Redusert fra 2.5rem for bedre plass */
            margin-top: 10px !important;
            margin-bottom: 12px !important;
            line-height: 1.1 !important;
        }

        body.project-page-refresh .project-page-summary {
            font-size: 0.95rem !important;
            margin-bottom: 20px !important;
            line-height: 1.5 !important;
        }

        body.project-page-refresh .project-page-actions {
            gap: 12px !important;
            /* Sikre gap mellom stablede knapper */
        }

        body.project-page-refresh .project-page-hero {
            padding: 24px 20px !important;
        }

        .breadcrumb {
            justify-content: center !important;
            gap: 6px !important;
            margin-top: 25px !important;
            /* Økt fra 15px for å unngå tetthet */
            flex-wrap: wrap !important;
            opacity: 0.9;
        }
    }
}

/* Blog Header Mobile Optimization */
.blog-header-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
}

.blog-header-flex h2 {
    font-size: 38px !important;
    line-height: 1.2 !important;
}

.blog-header-flex .award-link {
    margin-top: 10px !important;
}