/* ===== Omnit Brand Design System ===== */

:root {
    --omnit-navy: #0D2C54;
    --omnit-navy-dark: #091E3A;
    --omnit-navy-light: #1A4A7A;
    --omnit-teal: #00A5B5;
    --omnit-teal-dark: #008A97;
    --omnit-teal-light: #E0F7FA;
    --omnit-gray-light: #F5F7FA;
    --omnit-gray: #6B7280;
    --omnit-gray-dark: #374151;
    --omnit-white: #FFFFFF;
    --omnit-text: #1F2937;
    --omnit-radius: 8px;
    --omnit-shadow: 0 2px 12px rgba(13, 44, 84, 0.08);
    --omnit-shadow-lg: 0 8px 32px rgba(13, 44, 84, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--omnit-text);
    background: var(--omnit-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--omnit-navy);
    line-height: 1.2;
    margin-top: 0;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

:lang(nb) h1, :lang(nb) h2 {
    hyphens: auto;
    -webkit-hyphens: auto;
}

a {
    color: var(--omnit-teal);
    transition: color 0.2s;
}

a:hover {
    color: var(--omnit-teal-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Layout ===== */

.text-center {
    text-align: center;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(1.1rem, 4vw, 2rem);
}

.section {
    padding: clamp(3.25rem, 8vw, 5rem) 0;
}

.section-alt {
    background: var(--omnit-gray-light);
}

.section-title {
    font-size: clamp(1.55rem, 4.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 1.25rem;
    text-align: center;
    letter-spacing: -0.3px;
}

.section-text {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: var(--omnit-gray-dark);
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center;
    line-height: 1.75;
}

/* ===== Hero Section ===== */

.hero {
    background: linear-gradient(135deg, var(--omnit-navy) 0%, var(--omnit-navy-dark) 100%);
    color: #fff;
    text-align: center;
    padding: clamp(4.5rem, 10vw, 7rem) clamp(1.1rem, 4vw, 2rem) clamp(3.75rem, 9vw, 6rem);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(0, 165, 181, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.hero-icon {
    width: clamp(64px, 16vw, 80px);
    height: clamp(64px, 16vw, 80px);
    margin: 0 auto clamp(1.25rem, 4vw, 2rem);
    opacity: 0.85;
}

.hero-icon svg {
    width: 100%;
    height: 100%;
}

.hero h1 {
    font-size: clamp(2rem, 7vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.6vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: clamp(1.75rem, 5vw, 2.5rem);
    line-height: 1.65;
}

/* ===== Page Hero (sub-pages) ===== */

.page-hero {
    background: linear-gradient(135deg, var(--omnit-navy) 0%, var(--omnit-navy-dark) 100%);
    color: #fff;
    text-align: center;
    padding: clamp(3.25rem, 8vw, 5rem) 0 clamp(2.5rem, 7vw, 4rem);
}

.page-hero h1 {
    font-size: clamp(1.55rem, 6vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.page-hero p {
    font-size: clamp(0.98rem, 2.3vw, 1.15rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ===== Buttons ===== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--omnit-radius);
    transition: all 0.25s;
    cursor: pointer;
    border: 2px solid transparent;
    letter-spacing: 0.2px;
    min-height: 44px;
    line-height: 1.25;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: var(--omnit-teal);
    color: #fff;
    border-color: var(--omnit-teal);
}

.btn-primary:hover {
    background: var(--omnit-teal-dark);
    border-color: var(--omnit-teal-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 165, 181, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--omnit-teal);
    border-color: var(--omnit-teal);
}

.btn-outline:hover {
    background: var(--omnit-teal);
    color: #fff;
    transform: translateY(-1px);
}

.btn-sm {
    padding: 0.55rem 1.25rem;
    font-size: 0.85rem;
    min-height: 38px;
}

.btn-white {
    background: #fff;
    color: var(--omnit-navy);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--omnit-teal-light);
    border-color: var(--omnit-teal-light);
    color: var(--omnit-navy);
    transform: translateY(-1px);
}

/* ===== Cards ===== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.card {
    background: #fff;
    border-radius: var(--omnit-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--omnit-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--omnit-shadow-lg);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--omnit-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ===== CTA Section ===== */

.section-cta {
    background: linear-gradient(135deg, var(--omnit-teal) 0%, var(--omnit-teal-dark) 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: clamp(1.55rem, 4.5vw, 2rem);
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.3vw, 1.1rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Services Page ===== */

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: #fff;
    border-radius: var(--omnit-radius);
    padding: 2.5rem;
    box-shadow: var(--omnit-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--omnit-shadow-lg);
}

.service-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: var(--omnit-gray);
    line-height: 1.7;
    margin: 0;
}

/* ===== Contact Page ===== */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--omnit-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--omnit-shadow-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--omnit-gray);
    margin: 0 0 1rem;
}

.contact-card .btn {
    margin-top: auto;
}

/* ===== Contact Form ===== */

.contact-form-wrapper {
    max-width: 640px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--omnit-shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--omnit-navy);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: max(16px, 0.95rem);
    font-family: inherit;
    border: 1.5px solid rgba(13, 44, 84, 0.12);
    border-radius: var(--omnit-radius);
    background: var(--omnit-gray-light);
    color: var(--omnit-text);
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
    box-sizing: border-box;
    min-height: 48px;
}

.form-input:focus {
    outline: none;
    border-color: var(--omnit-teal);
    box-shadow: 0 0 0 3px rgba(0, 165, 181, 0.1);
    background: #fff;
}

.form-textarea {
    min-height: 160px;
    resize: vertical;
}

.form-success {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--omnit-navy);
    font-size: 1.05rem;
    line-height: 1.6;
}

.form-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: var(--omnit-radius);
    padding: 0.75rem 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

/* Honeypot field — invisible to humans, bots fill it in */
.form-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 0;
    height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.contact-form-wrapper .btn-primary {
    width: 100%;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.phone-code {
    width: 120px;
    flex-shrink: 0;
    cursor: pointer;
}

.phone-number {
    flex: 1;
    min-width: 0;
}

.field-error {
    color: #991b1b;
    font-size: 0.8rem;
    margin-top: 0.35rem;
    display: block;
}

/* ===== Content blocks ===== */

.content-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.content-block p {
    color: var(--omnit-gray-dark);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== Connectify product page ===== */

/* Eyebrow label (used across multiple sections) */
.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--omnit-teal);
    margin-bottom: 1rem;
}

/* Hero overrides for the Connectify page */
.connectify-hero {
    padding: clamp(5rem, 11vw, 7.5rem) clamp(1.1rem, 4vw, 2rem) clamp(4.5rem, 10vw, 7rem);
}

.connectify-hero .hero-content {
    max-width: 880px;
}

.connectify-hero h1 {
    font-size: clamp(2rem, 7.5vw, 3.4rem);
    line-height: 1.1;
    letter-spacing: -0.6px;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.connectify-hero .hero-subtitle {
    font-size: clamp(1rem, 2.4vw, 1.2rem);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.connectify-hero-eyebrow {
    display: inline-block;
    font-size: clamp(0.7rem, 1.6vw, 0.78rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(0, 165, 181, 1);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    padding: 0.4rem 0.95rem;
    background: rgba(0, 165, 181, 0.14);
    border: 1px solid rgba(0, 165, 181, 0.3);
    border-radius: 999px;
}

.connectify-hero-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
    color: #fff;
    transform: translateY(-1px);
}

/* Hero trust strip (logo wall below CTAs) */
.hero-trust {
    margin-top: 3.5rem;
    text-align: center;
}

.hero-trust-label {
    display: inline-block;
    position: relative;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
    padding: 0 1.25rem;
}

.hero-trust-label::before,
.hero-trust-label::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 48px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-trust-label::before {
    right: 100%;
}

.hero-trust-label::after {
    left: 100%;
}

.hero-trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.75rem;
    flex-wrap: wrap;
    row-gap: 1.5rem;
}

.hero-trust-logos img {
    max-height: 28px;
    max-width: 120px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: opacity 0.25s, transform 0.25s;
    object-fit: contain;
}

.hero-trust-logos img:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.hero-trust-text {
    display: inline-flex;
    align-items: baseline;
    gap: 0.18rem;
    font-family: 'Inter', sans-serif;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #fff;
    opacity: 0.55;
    transition: opacity 0.25s, transform 0.25s;
    font-size: 1.05rem;
}

.hero-trust-text:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.hero-trust-text-primary {
    font-weight: 600;
}

.hero-trust-text-accent {
    font-weight: 800;
}

@media (max-width: 768px) {
    .hero-trust-text {
        font-size: 0.88rem;
    }
}

/* Integration logo grid (replaces old card-grid for integrations) */
.integration-group {
    margin-top: 3.5rem;
}

.integration-group:first-of-type {
    margin-top: 4rem;
}

.integration-group-label {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--omnit-navy);
    margin: 0 auto 2rem;
    max-width: 700px;
    justify-content: center;
}

.integration-group-label::before,
.integration-group-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(13, 44, 84, 0.15);
    max-width: 100px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.logo-card {
    background: #fff;
    border-radius: var(--omnit-radius);
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--omnit-shadow);
    border: 1px solid rgba(13, 44, 84, 0.06);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    position: relative;
}

.logo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--omnit-shadow-lg);
    border-color: rgba(0, 165, 181, 0.3);
}

.logo-card-target::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 3px;
    background: var(--omnit-teal);
    border-radius: 0 0 3px 3px;
}

.logo-image {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.logo-image img {
    max-height: 56px;
    max-width: 150px;
    width: auto;
    object-fit: contain;
}

.logo-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--omnit-navy);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.logo-descriptor {
    color: var(--omnit-gray);
    font-size: 0.8rem;
    line-height: 1.45;
}

@media (max-width: 768px) {
    .hero-trust {
        margin-top: 2.5rem;
    }
    .hero-trust-logos {
        gap: 1.75rem;
        row-gap: 1.25rem;
    }
    .hero-trust-logos img {
        max-height: 22px;
        max-width: 90px;
    }
    .integration-group-label::before,
    .integration-group-label::after {
        max-width: 40px;
    }
    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.85rem;
    }
    .logo-card {
        padding: 1.5rem 1rem 1.25rem;
    }
    .logo-image {
        height: 44px;
    }
    .logo-image img {
        max-height: 44px;
    }
}

/* Emphasis section (white, larger typography) */
.section-emphasis {
    background: #fff;
    padding: 6rem 0;
}

.section-emphasis .section-title {
    font-size: clamp(1.65rem, 5vw, 2.5rem);
    line-height: 1.12;
    letter-spacing: -0.5px;
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
}

.section-emphasis .section-text {
    font-size: clamp(1rem, 2.3vw, 1.1rem);
}

/* Comparison table */
.compare {
    display: grid;
    grid-template-columns: minmax(150px, 0.6fr) 1fr 1fr;
    margin-top: 3rem;
    background: #fff;
    border-radius: var(--omnit-radius);
    overflow: hidden;
    box-shadow: var(--omnit-shadow);
}

.compare-header {
    padding: 1.1rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-bottom: 2px solid rgba(13, 44, 84, 0.1);
    background: var(--omnit-gray-light);
}

.compare-header-label {
    background: transparent;
}

.compare-header-conv {
    color: var(--omnit-gray);
}

.compare-header-conn {
    color: var(--omnit-teal);
    background: rgba(0, 165, 181, 0.06);
    border-bottom-color: var(--omnit-teal);
}

.compare-row {
    display: contents;
}

.compare-row > * {
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid rgba(13, 44, 84, 0.07);
    line-height: 1.6;
    font-size: 0.95rem;
}

.compare-row:last-child > * {
    border-bottom: none;
}

.compare-cell-label {
    font-weight: 700;
    color: var(--omnit-navy);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-self: center;
    background: var(--omnit-gray-light);
}

.compare-cell-conv {
    color: var(--omnit-gray);
}

.compare-cell-conn {
    color: var(--omnit-text);
    background: rgba(0, 165, 181, 0.04);
    position: relative;
    padding-left: 2.6rem !important;
}

.compare-cell-conn::before {
    content: "→";
    position: absolute;
    left: 1.4rem;
    top: 1.35rem;
    color: var(--omnit-teal);
    font-weight: 800;
    font-size: 1.1rem;
    line-height: 1;
}

/* Architecture diagram – desktop wrapper + mobile stacked alternative */
.connectify-diagram {
    margin: 0 auto;
    max-width: 760px;
}

.connectify-diagram-mobile {
    display: none;
}

@media (max-width: 768px) {
    .connectify-diagram {
        display: none;
    }

    .connectify-diagram-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin: 0 auto 0.5rem;
        max-width: 380px;
        width: 100%;
    }

    .cdm-group {
        width: 100%;
        text-align: center;
    }

    .cdm-group-label {
        font-size: 0.68rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: var(--omnit-gray);
        margin-bottom: 0.65rem;
    }

    .cdm-nodes {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
    }

    .cdm-node {
        background: #fff;
        border: 1.5px solid rgba(13, 44, 84, 0.1);
        border-radius: 8px;
        padding: 0.7rem 0.5rem;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--omnit-navy);
        text-align: center;
        box-shadow: 0 1px 4px rgba(13, 44, 84, 0.05);
    }

    .cdm-arrow {
        width: 2px;
        height: 22px;
        background: rgba(0, 165, 181, 0.45);
        position: relative;
        margin: 0.35rem 0 0.6rem;
    }

    .cdm-arrow::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 50%;
        width: 9px;
        height: 9px;
        border-right: 2px solid var(--omnit-teal);
        border-bottom: 2px solid var(--omnit-teal);
        transform: translateX(-50%) rotate(45deg);
    }

    .cdm-hub {
        background: linear-gradient(135deg, #00B8CC 0%, var(--omnit-teal-dark) 100%);
        color: #fff;
        padding: 1.1rem 1.5rem;
        border-radius: 14px;
        text-align: center;
        box-shadow: 0 6px 20px rgba(0, 138, 151, 0.28);
        min-width: 220px;
    }

    .cdm-hub-name {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.3rem;
        letter-spacing: -0.2px;
    }

    .cdm-hub-label {
        font-size: 0.62rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.14em;
        opacity: 0.85;
        margin-bottom: 0.2rem;
    }

    .cdm-hub-desc {
        font-size: 0.78rem;
        opacity: 0.88;
        line-height: 1.4;
    }
}

/* Architecture pillars */
.pillar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.pillar {
    background: #fff;
    border-radius: var(--omnit-radius);
    padding: 2rem 1.75rem;
    box-shadow: var(--omnit-shadow);
    position: relative;
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pillar:hover {
    transform: translateY(-3px);
    box-shadow: var(--omnit-shadow-lg);
}

.pillar::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--omnit-teal), var(--omnit-teal-dark));
}

.pillar-number {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--omnit-teal);
    letter-spacing: 0.16em;
    margin-bottom: 0.6rem;
}

.pillar h3 {
    font-size: 1.15rem;
    margin: 0 0 0.65rem;
}

.pillar p {
    color: var(--omnit-gray-dark);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

/* Voucher journey pipeline */
.journey {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

.journey-stage {
    background: #fff;
    border: 1px solid rgba(13, 44, 84, 0.1);
    border-radius: var(--omnit-radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.journey-stage:hover {
    transform: translateY(-2px);
    box-shadow: var(--omnit-shadow);
}

.journey-stage:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -1.2rem;
    top: 50%;
    width: 0.65rem;
    height: 0.65rem;
    border-top: 2px solid var(--omnit-teal);
    border-right: 2px solid var(--omnit-teal);
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.journey-stage-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--omnit-teal);
    background: var(--omnit-teal-light);
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.85rem;
}

.journey-stage h4 {
    font-size: 1rem;
    color: var(--omnit-navy);
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.journey-stage p {
    color: var(--omnit-gray);
    font-size: 0.85rem;
    line-height: 1.55;
    margin: 0;
}

.journey-replay {
    margin-top: 2rem;
    padding: 1.4rem 1.75rem;
    background: rgba(0, 165, 181, 0.06);
    border-left: 4px solid var(--omnit-teal);
    border-radius: 4px;
    color: var(--omnit-text);
    font-size: 0.95rem;
    line-height: 1.65;
}

.journey-replay strong {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--omnit-teal);
}

/* Format note (under the Sources logo grid) */
.format-note {
    margin: 1.75rem auto 0;
    max-width: 720px;
    padding: 1.35rem 1.75rem;
    background: rgba(0, 165, 181, 0.06);
    border-left: 4px solid var(--omnit-teal);
    border-radius: 4px;
    color: var(--omnit-text);
    font-size: 0.95rem;
    line-height: 1.65;
    text-align: left;
}

.format-note-label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--omnit-teal);
}

/* Callout block (FieldMap section) */
.callout {
    max-width: 920px;
    margin: 0 auto;
    padding: clamp(1.6rem, 5vw, 2.75rem) clamp(1.4rem, 4vw, 2.5rem);
    background: #fff;
    border-left: 5px solid var(--omnit-teal);
    border-radius: var(--omnit-radius);
    box-shadow: var(--omnit-shadow);
}

.callout .eyebrow {
    margin-bottom: 0.85rem;
}

.callout h2 {
    font-size: clamp(1.3rem, 4.2vw, 1.85rem);
    line-height: 1.22;
    margin: 0 0 1.25rem;
    color: var(--omnit-navy);
    letter-spacing: -0.3px;
}

.callout p {
    color: var(--omnit-gray-dark);
    font-size: clamp(0.98rem, 2.2vw, 1.05rem);
    line-height: 1.7;
    margin: 0 0 1rem;
}

.callout p:last-child {
    margin-bottom: 0;
}

/* Connectify page – mobile responsiveness */
@media (max-width: 900px) {
    .compare {
        grid-template-columns: 1fr;
    }

    .compare-header {
        display: none;
    }

    .compare-row {
        display: block;
        padding: 1.5rem 1.25rem;
        border-bottom: 1px solid rgba(13, 44, 84, 0.08);
        background: #fff;
    }

    .compare-row > * {
        padding: 0.4rem 0;
        border-bottom: none;
        background: transparent !important;
    }

    .compare-cell-label {
        align-self: auto;
        font-size: 0.72rem;
        background: transparent;
        margin-bottom: 0.25rem;
        padding: 0;
    }

    .compare-cell-conv {
        position: relative;
        padding-left: 4.6rem !important;
    }

    .compare-cell-conv::before {
        content: "Vanlig:";
        position: absolute;
        left: 0;
        top: 0.45rem;
        font-size: 0.7rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--omnit-gray);
    }

    .compare-cell-conn {
        margin-top: 0.6rem;
        padding: 0.85rem 1rem 0.85rem 2.4rem !important;
        background: rgba(0, 165, 181, 0.06) !important;
        border-radius: 6px;
        border-left: 3px solid var(--omnit-teal);
    }

    .compare-cell-conn::before {
        left: 1rem;
        top: 0.95rem;
    }
}

@media (max-width: 768px) {
    .section-emphasis {
        padding: 3.5rem 0;
    }

    .section-emphasis .section-title {
        max-width: 18ch;
    }

    .pillar-grid {
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .pillar {
        padding: 1.6rem 1.4rem;
    }

    .pillar h3 {
        font-size: 1.08rem;
    }

    .journey {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-top: 2.25rem;
    }

    .journey-stage {
        padding: 1.4rem 1.25rem;
    }

    .journey-stage:not(:last-child)::after {
        right: 50%;
        top: auto;
        bottom: -1.25rem;
        transform: translate(50%, 0) rotate(135deg);
    }

    .journey-replay {
        margin-top: 1.5rem;
        padding: 1.15rem 1.25rem;
        font-size: 0.9rem;
    }

    .format-note {
        padding: 1.15rem 1.25rem;
        font-size: 0.9rem;
    }

    .callout {
        padding: 1.6rem 1.4rem;
        border-left-width: 4px;
    }

    .callout h2 {
        font-size: clamp(1.25rem, 4.5vw, 1.55rem);
    }

    .callout p {
        font-size: 1rem;
    }

    .integration-group {
        margin-top: 2.5rem;
    }

    .integration-group:first-of-type {
        margin-top: 2.75rem;
    }

    .integration-group-label {
        font-size: 0.72rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .connectify-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
        width: 100%;
    }

    .connectify-hero-actions .btn {
        width: 100%;
    }

    .pillar {
        padding: 1.4rem 1.25rem;
    }

    .journey-replay,
    .format-note {
        padding: 1rem 1.1rem;
        font-size: 0.88rem;
    }

    .callout {
        padding: 1.4rem 1.15rem;
    }

    .callout p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .compare-row {
        padding: 1.25rem 1rem;
    }

    .compare-cell-conv {
        padding-left: 0 !important;
    }

    .compare-cell-conv::before {
        position: static;
        display: block;
        margin-bottom: 0.25rem;
    }

    .compare-cell-conn {
        padding: 0.85rem 0.9rem 0.85rem 2.1rem !important;
    }

    .compare-cell-conn::before {
        left: 0.85rem;
        top: 0.9rem;
    }
}

/* ===== Benefit cards (Connectify page) ===== */

.benefit-grid .card {
    text-align: left;
    padding: 2rem;
}

.benefit-grid .card-icon {
    margin: 0 0 1.25rem;
}

.benefit-grid .card h3 {
    text-align: left;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.benefit-lead {
    color: var(--omnit-navy);
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0 1rem;
}

.benefit-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--omnit-gray-dark);
    font-size: 0.95rem;
    line-height: 1.65;
}

.benefit-list li {
    margin-bottom: 0.6rem;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

/* ===== Practical capabilities grid (Connectify page) ===== */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    border-radius: var(--omnit-radius);
    padding: 1.85rem 1.6rem;
    box-shadow: var(--omnit-shadow);
    border: 1px solid rgba(13, 44, 84, 0.06);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--omnit-shadow-lg);
    border-color: rgba(0, 165, 181, 0.3);
}

.feature-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--omnit-teal-light);
    border-radius: 10px;
    padding: 8px;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.08rem;
    font-weight: 600;
    margin: 0 0 0.55rem;
    color: var(--omnit-navy);
    line-height: 1.3;
}

.feature-card p {
    margin: 0;
    color: var(--omnit-gray-dark);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ===== FAQ accordion (Connectify page) ===== */

.faq {
    max-width: 820px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.faq-item {
    background: #fff;
    border-radius: var(--omnit-radius);
    border: 1px solid rgba(13, 44, 84, 0.1);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
    border-color: rgba(0, 165, 181, 0.4);
    box-shadow: var(--omnit-shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.4rem;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: var(--omnit-navy);
    font-size: 1rem;
    line-height: 1.45;
    transition: background 0.15s;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: var(--omnit-gray-light);
}

.faq-chevron {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--omnit-teal);
    border-bottom: 2px solid var(--omnit-teal);
    transform: rotate(45deg);
    transition: transform 0.2s;
    margin-top: -4px;
}

.faq-item[open] .faq-chevron {
    transform: rotate(-135deg);
    margin-top: 4px;
}

.faq-answer {
    padding: 0 1.4rem 1.3rem;
    color: var(--omnit-gray-dark);
    font-size: 0.96rem;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .faq-question {
        padding: 1rem 1.1rem;
        font-size: 0.96rem;
    }

    .faq-answer {
        padding: 0 1.1rem 1.1rem;
        font-size: 0.93rem;
    }
}

/* ===== Text wordmark for logo cards without raster/SVG (Business Nxt) ===== */

.logo-card-text .logo-image {
    height: 56px;
}

.logo-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0.25rem;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
}

.logo-wordmark-primary {
    color: var(--omnit-navy);
    font-size: 1.35rem;
}

.logo-wordmark-accent {
    color: var(--omnit-teal);
    font-size: 1.35rem;
    font-weight: 800;
}

@media (max-width: 768px) {
    .logo-wordmark-primary,
    .logo-wordmark-accent {
        font-size: 1.1rem;
    }
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
    .service-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.75rem 1.5rem;
        gap: 1rem;
    }

    .service-icon {
        width: 48px;
        height: 48px;
    }

    .service-content h3 {
        font-size: 1.15rem;
    }

    .card-grid {
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .card {
        padding: 1.75rem 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-card {
        padding: 1.75rem 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1.25rem;
        border-radius: 10px;
    }

    .form-group {
        margin-bottom: 1.15rem;
    }

    .phone-input-group {
        flex-direction: row;
        gap: 0.5rem;
    }

    .phone-code {
        width: 105px;
    }
}

@media (max-width: 480px) {
    .card {
        padding: 1.5rem 1.25rem;
    }

    .card-grid {
        gap: 1rem;
    }

    .contact-card {
        padding: 1.5rem 1.1rem;
    }

    .contact-form-wrapper {
        padding: 1.25rem 1rem;
    }

    .phone-input-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .phone-code {
        width: 100%;
    }

    .hero-icon {
        margin-bottom: 1.25rem;
    }

    .content-block p {
        font-size: 1rem;
    }
}

/* ===== Form defaults (Blazor) ===== */

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: none;
}

.invalid {
    outline: none;
    border-color: #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}