/* OSO Dynamics — New Site Design System */

:root {
    /* Brand palette — OSO Design System + existing identity */
    --oso-bg: #F5F7FB;
    --oso-surface: #FFFFFF;
    --oso-card: #FFFFFF;
    --oso-interactive: #ECF4EE;
    --oso-accent: #2F8A59;
    --oso-accent-hover: #328557;
    --oso-info: #3B82F6;
    --oso-primary: #2f5233;
    --oso-secondary: #76b947;
    --oso-accent-light: #94c973;
    --oso-light: #b1d8b7;

    --oso-success: #22C55E;
    --oso-warning: #F59E0B;
    --oso-error: #EF4444;

    --text-primary: #1a2e1c;
    --text-secondary: #4a5f4c;
    --text-muted: #6b7f6d;
    --text-inverse: #ffffff;

    --border: rgba(47, 82, 51, 0.12);
    --border-strong: rgba(47, 82, 51, 0.2);
    --shadow-sm: 0 1px 3px rgba(47, 82, 51, 0.06);
    --shadow-md: 0 4px 20px rgba(47, 82, 51, 0.08);
    --shadow-lg: 0 12px 40px rgba(47, 82, 51, 0.12);
    --shadow-xl: 0 20px 60px rgba(47, 82, 51, 0.15);

    --gradient-brand: linear-gradient(135deg, var(--oso-primary) 0%, var(--oso-secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--oso-accent-light) 0%, var(--oso-secondary) 100%);
    --gradient-hero: linear-gradient(160deg, rgba(11, 15, 18, 0.82) 0%, rgba(47, 82, 51, 0.75) 50%, rgba(47, 138, 89, 0.55) 100%);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --header-height: 180px;
    --container-max: 1200px;
    --section-padding: 5rem;
    --transition: 0.25s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--oso-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

a {
    color: var(--oso-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--oso-accent-hover);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

.lead {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--oso-accent);
    margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--text-inverse);
    border-color: transparent;
}

.btn-primary:hover {
    background: var(--oso-accent-hover);
    color: var(--text-inverse);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-inverse);
    border-color: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
    background: var(--oso-surface);
    color: var(--oso-primary);
    border-color: var(--oso-surface);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--oso-accent);
    border-color: var(--oso-accent);
}

.btn-outline:hover {
    background: var(--oso-interactive);
    color: var(--oso-primary);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--oso-interactive);
    color: var(--oso-primary);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--oso-accent-light);
    color: var(--oso-primary);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.btn .fa-arrow-up-right-from-square {
    font-size: 0.85em;
    opacity: 0.9;
}

/* Header */
.site-header {
    position: relative;
    z-index: 1000;
    overflow: visible;
    background: rgba(47, 82, 51, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: box-shadow var(--transition), background var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(47, 82, 51, 0.98);
}

.header-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0.5rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    line-height: 0;
}

.header-brand {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    align-self: center;
    flex: 0 0 auto;
    width: auto;
    max-width: 300px;
    min-width: auto;
}

.header-company-card {
    flex-direction: row;
    align-items: center;
    gap: 0.65rem;
    padding: 0.4rem 0.7rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    max-width: 300px;
    width: auto;
}

.header-company-card .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 98px;
    width: 98px;
    height: 68px;
    overflow: hidden;
    align-self: center;
    margin-bottom: 0;
    padding: 0;
    line-height: 0;
}

.header-company-card .logo img {
    display: block;
    width: 98px;
    height: auto;
    max-width: none;
    max-height: none;
    flex-shrink: 0;
    transform: scale(1.28) translateY(1%);
    transform-origin: center center;
    filter: brightness(1.05);
}

.header-brand-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 168px;
    padding: 0.1rem 0 0.1rem 0.65rem;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.header-brand-divider {
    display: none;
}

.header-brand-tagline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.12rem;
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
    text-align: center;
    margin: 0 0 0.3rem;
    width: 100%;
    max-width: 100%;
}

.header-brand-tagline-line {
    display: block;
    width: 100%;
    text-align: center;
    white-space: normal;
}

.header-brand-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-self: stretch;
    gap: 0.15rem;
    width: 100%;
}

.header-brand-link {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.625rem;
    font-weight: 500;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
    transition: color var(--transition);
}

.header-brand-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--oso-accent-light);
    transition: width var(--transition);
}

.header-brand-link:hover {
    color: #ffffff;
}

.header-brand-link:hover::after {
    width: 100%;
}

.header-brand-link .oso-icon {
    width: 0.75rem;
    height: 0.75rem;
    flex-shrink: 0;
    color: var(--oso-accent-light);
    transition: color var(--transition);
}

.header-brand-link span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.header-brand-link:hover .oso-icon {
    color: var(--oso-light);
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0 0.55rem;
    width: 100%;
    min-width: 0;
}

.header-nav-group {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    align-self: center;
    margin-left: auto;
    min-width: 0;
    flex: 1 1 auto;
    padding-left: 0.75rem;
}

.main-nav-break {
    display: none;
    flex-basis: 100%;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.main-nav > a,
.main-nav > .nav-dropdown {
    flex-shrink: 0;
    white-space: nowrap;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--oso-accent-light);
    transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--oso-accent-light);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    padding: 0.25rem 0;
}

.nav-dropdown-trigger::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--oso-accent-light);
    transition: width var(--transition);
}

.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.active,
.nav-dropdown.is-open .nav-dropdown-trigger {
    color: var(--oso-accent-light);
}

.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger.active::after,
.nav-dropdown.is-open .nav-dropdown-trigger::after {
    width: 100%;
}

.nav-dropdown-icon {
    font-size: 0.6rem;
    transition: transform var(--transition);
}

.nav-dropdown.is-open .nav-dropdown-icon,
.nav-dropdown:hover .nav-dropdown-icon {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    background: rgba(47, 82, 51, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(8px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.625rem 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition);
}

.nav-dropdown-menu a::after {
    display: none;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--oso-accent-light);
}

.nav-dropdown-menu a i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.mobile-nav-sub {
    padding-left: 2.5rem !important;
    font-size: 0.875rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

.header-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    flex-shrink: 0;
}

.header-cta {
    flex-shrink: 0;
    white-space: nowrap;
}

.header-cta .fa-arrow-up-right-from-square {
    margin-left: 0.15rem;
}

.header-cta-note {
    display: block;
    font-size: 0.65rem;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-align: center;
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-contact-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0.25rem 0;
}

.mobile-nav-contact-tagline {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
    line-height: 1.3;
    margin: 0;
    padding: 0.75rem 1.5rem 0.35rem;
}

.mobile-nav-contact-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    position: relative;
    transition: background var(--transition), color var(--transition);
}

.mobile-nav-contact-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.5rem;
    right: 1.5rem;
    height: 1px;
    background: var(--oso-accent-light);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.mobile-nav-contact-row:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.mobile-nav-contact-row:hover::after {
    transform: scaleX(1);
}

.mobile-nav-contact-row .oso-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--oso-accent-light);
    transition: color var(--transition);
}

.mobile-nav-contact-row:hover .oso-icon {
    color: var(--oso-light);
}

@media (max-width: 1440px) {
    .main-nav {
        gap: 0 0.65rem;
    }

    .main-nav a,
    .nav-dropdown-trigger {
        font-size: 0.8125rem;
    }
}

@media (max-width: 1280px) {
    .header-inner {
        gap: 0.65rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .main-nav {
        gap: 0 0.4rem;
    }

    .main-nav a,
    .nav-dropdown-trigger {
        font-size: 0.72rem;
    }

    .header-brand,
    .header-company-card {
        max-width: 278px;
    }

    .header-company-card .logo {
        flex-basis: 90px;
        width: 90px;
        height: 64px;
    }

    .header-company-card .logo img {
        width: 90px;
        transform: scale(1.24) translateY(1%);
    }

    .header-company-card {
        padding: 0.4rem 0.6rem;
        gap: 0.55rem;
    }

    .header-brand-details {
        max-width: 152px;
        padding-left: 0.55rem;
    }

    .header-brand-tagline {
        font-size: 0.5rem;
        margin-bottom: 0.25rem;
    }

    .header-brand-link {
        font-size: 0.6rem;
        gap: 0.3rem;
    }

    .header-brand-link .oso-icon {
        width: 0.7rem;
        height: 0.7rem;
    }
}

@media (max-width: 1180px) and (min-width: 1025px) {
    .header-inner > .header-brand .header-brand-details {
        display: none;
    }

    .header-brand,
    .header-company-card {
        max-width: none;
    }

    .header-company-card {
        padding: 0.35rem 0.45rem;
    }
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-inverse);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--oso-primary);
    padding: 0.5rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.open {
    display: flex;
}

@media (max-width: 1024px) {
    :root {
        --header-height: 100px;
    }

    .header-inner {
        gap: 0.5rem;
        padding: 0.45rem 1rem;
    }

    .header-inner > .header-nav-group,
    .header-inner > .header-cta-wrap {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .header-brand {
        flex: 0 1 auto;
        width: auto;
        max-width: calc(100% - 2.75rem);
        align-items: flex-start;
    }

    .header-company-card {
        flex-direction: row;
        align-items: center;
        width: auto;
        max-width: 100%;
        padding: 0.4rem 0.55rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-md);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
        gap: 0.55rem;
    }

    .header-inner > .header-brand .header-brand-details {
        display: flex;
    }

    .header-company-card .logo {
        flex: 0 0 80px;
        width: 80px;
        height: 56px;
    }

    .header-company-card .logo img {
        width: 80px;
        height: auto;
        object-fit: contain;
        transform: scale(1.26) translateY(1%);
    }

    .header-brand-details {
        flex: 0 0 auto;
        width: auto;
        max-width: 152px;
        min-width: 0;
        padding: 0.05rem 0 0.05rem 0.45rem;
    }

    .header-brand-tagline {
        width: auto;
        align-self: center;
        font-size: 0.46875rem;
        margin-bottom: 0.18rem;
        gap: 0.08rem;
    }

    .header-brand-tagline-line {
        width: auto;
    }

    .header-brand-links {
        width: auto;
        align-self: center;
    }

    .header-brand-link {
        font-size: 0.5625rem;
        gap: 0.28rem;
    }

    .header-brand-link .oso-icon {
        width: 0.65rem;
        height: 0.65rem;
    }

    .mobile-nav-contact {
        display: none;
    }
}

.mobile-nav a {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.875rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--transition);
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--oso-accent-light);
}

.mobile-nav .header-cta-wrap {
    margin: 1rem 1.5rem 0;
    align-items: center;
}

.mobile-nav .header-cta-note {
    font-size: 0.7rem;
}

.mobile-nav-cta {
    text-align: center;
}

main {
    flex: 1;
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-inverse);
    overflow: hidden;
    padding: 4rem 1.5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../../media/oso-bg.png') center 70% / cover no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    animation: fadeUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--oso-accent-light);
}

.hero h1 {
    color: var(--text-inverse);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero .lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    margin-bottom: 2rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.hero .btn-group {
    margin-bottom: 1.25rem;
}

.hero .btn-secondary,
.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--oso-primary);
    border-color: transparent;
}

.hero .btn-secondary:hover,
.cta-section .btn-secondary:hover {
    background: #fff;
    color: var(--oso-primary);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero .btn-outline,
.cta-section .btn-outline {
    color: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.28);
    background: transparent;
}

.hero .btn-outline:hover,
.cta-section .btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.45);
}

.hero-price {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.hero-cta-group {
    gap: 0.875rem;
    align-items: flex-start;
}

.hero-cta-group .btn-lg {
    min-width: 11.5rem;
}

.hero-cta-primary,
.cta-external-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.cta-external-wrap--start {
    align-items: flex-start;
}

.cta-external-wrap--block {
    display: flex;
    width: 100%;
}

.cta-external-wrap--block .btn {
    width: 100%;
}

.cta-external-inline {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.btn-external-note {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
    text-align: center;
}

.cta-section .btn-external-note {
    color: rgba(255, 255, 255, 0.75);
}

.page-hero .btn-external-note,
.page-wiab .content-block .btn-external-note,
.page-wiab .wiab-price-card .btn-external-note,
.page-wiab .tpl-catalog-note .btn-external-note {
    color: var(--text-muted);
}

.page-wiab .page-hero .btn-external-note {
    color: rgba(255, 255, 255, 0.72);
}

.page-hero .btn-group,
.cta-section .btn-group:has(.cta-external-wrap) {
    align-items: flex-start;
}

.page-wiab .tpl-actions .cta-external-wrap {
    width: 100%;
}

.page-wiab .tpl-actions .btn-external-note {
    font-size: 0.7rem;
}

.hero-price strong {
    color: var(--oso-accent-light);
}

.hero-price-sub {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.25rem;
    font-weight: 500;
}

.hero-price-link {
    color: inherit;
    text-decoration: none;
    transition: opacity var(--transition);
}

.hero-price-link:hover {
    opacity: 0.9;
}

.hero-price-link:hover strong {
    text-decoration: underline;
    text-decoration-color: var(--oso-accent-light);
}

/* Hero V2 (homepage) */
.page-hero-v2 .hero--v2 {
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
    padding: 4.5rem 1.5rem 5rem;
}

.page-hero-v2 .hero-content--v2 {
    max-width: 40rem;
    width: 100%;
}

.page-hero-v2 .hero-v2-title {
    color: var(--text-inverse);
    font-size: clamp(2.25rem, 5.5vw, 3.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.page-hero-v2 .hero-v2-title-line {
    display: block;
}

.page-hero-v2 .hero-v2-lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: -0.01em;
    margin: 0 auto 2.25rem;
    max-width: 28rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.15);
}

.page-hero-v2 .hero-v2-cta-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.75rem;
}

.page-hero-v2 .hero-v2-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.page-hero-v2 .hero-v2-cta .btn-lg {
    min-width: 12rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.page-hero-v2 .hero-v2-cta .btn-external-note {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.75rem;
}

.page-hero-v2 .hero-v2-offer {
    margin-top: 1rem;
    text-align: center;
    max-width: 22rem;
}

.page-hero-v2 .hero-v2-offer-line {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.01em;
}

.page-hero-v2 .hero-v2-offer-line strong {
    color: var(--oso-accent-light);
    font-weight: 700;
}

.page-hero-v2 .hero-v2-offer-founder {
    margin: 0.35rem 0 0;
    font-size: 0.875rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.01em;
}

.page-hero-v2 .hero-v2-rule {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    margin: 0 0 0.35rem;
}

.page-hero-v2 .hero-v2-nav {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.35rem;
}

.page-hero-v2 .hero-v2-nav-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.2rem 0.35rem;
    margin: 0 -0.35rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    transition: background var(--transition), color var(--transition);
}

.page-hero-v2 .hero-v2-nav-row:last-child {
    border-bottom: none;
}

.page-hero-v2 .hero-v2-nav-row:hover {
    background: rgba(255, 255, 255, 0.04);
}

.page-hero-v2 .hero-v2-nav-row:focus-visible {
    outline: 2px solid var(--oso-accent-light);
    outline-offset: 4px;
    border-radius: 2px;
}

.page-hero-v2 .hero-v2-nav-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
    min-width: 0;
    text-align: left;
}

.page-hero-v2 .hero-v2-nav-title {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.94);
    transition: color var(--transition);
}

.page-hero-v2 .hero-v2-nav-desc {
    font-size: 0.8125rem;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

.page-hero-v2 .hero-v2-nav-row:hover .hero-v2-nav-title {
    color: #fff;
}

.page-hero-v2 .hero-v2-nav-arrow {
    flex-shrink: 0;
    margin-top: 0.15rem;
    font-size: 1.125rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition), transform var(--transition);
}

.page-hero-v2 .hero-v2-nav-row:hover .hero-v2-nav-arrow {
    color: var(--oso-accent-light);
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .page-hero-v2 .hero--v2 {
        min-height: auto;
        padding: 3.25rem 1.25rem 3.5rem;
    }

    .page-hero-v2 .hero-v2-lead {
        margin-bottom: 2rem;
    }

    .page-hero-v2 .hero-v2-cta-block {
        margin-bottom: 2.25rem;
    }

    .page-hero-v2 .hero-v2-offer {
        margin-top: 0.85rem;
    }

    .page-hero-v2 .hero-v2-offer-line {
        font-size: 0.9375rem;
    }

    .page-hero-v2 .hero-v2-nav-row {
        padding: 1.1rem 0.25rem;
    }

    .page-hero-v2 .hero-v2-nav-title {
        font-size: 0.975rem;
    }
}

/* Page Hero (inner pages) */
.page-hero {
    background: var(--gradient-brand);
    color: var(--text-inverse);
    padding: 4rem 1.5rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../../media/oso-bg.png') center 60% / cover no-repeat;
    opacity: 0.15;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--text-inverse);
    margin-bottom: 1rem;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 640px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: var(--section-padding) 0;
}

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

.section-tint {
    background: linear-gradient(180deg, var(--oso-interactive) 0%, var(--oso-bg) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header .lead {
    margin: 0 auto;
}

/* Cards */
.card {
    background: var(--oso-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: 2rem;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--oso-interactive);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--oso-accent);
    margin-bottom: 1.25rem;
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

/* Solution path rows (homepage) */
.solution-paths-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.solution-paths {
    border-top: 1px solid var(--border);
}

.solution-path {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 2.5rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.solution-path-intro {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.solution-path-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--oso-interactive);
    color: var(--oso-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.solution-path-copy h3 {
    margin-bottom: 0.35rem;
    font-size: 1.35rem;
}

.solution-path-tagline {
    color: var(--oso-accent);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.solution-path-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
    max-width: 36rem;
}

.solution-path-details {
    padding-left: 2rem;
    border-left: 1px solid var(--border);
}

.solution-path-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.85rem;
}

.solution-path-features {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
}

.solution-path-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.3rem 0;
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.45;
}

.solution-path-features li i {
    color: var(--oso-accent);
    font-size: 0.7rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.solution-path-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0 0 1.25rem;
}

.solution-path-actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 0.25rem;
}

.solution-path-actions .btn {
    justify-content: center;
}

/* Solution Cards (legacy — hosting page, etc.) */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.solution-card {
    background: var(--oso-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.solution-card .card-icon {
    background: linear-gradient(135deg, var(--oso-interactive), rgba(148, 201, 115, 0.3));
}

.solution-card h3 {
    margin-bottom: 0.5rem;
}

.solution-card .card-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.solution-footnote {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.honest-callout {
    background: var(--oso-card);
    border: 1px solid var(--border);
    border-left: 4px solid var(--oso-accent);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.75rem;
}

.honest-callout p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.honest-callout strong {
    color: var(--text-primary);
}

.ea-price-display {
    display: inline-flex;
    align-items: baseline;
    gap: 0.65rem;
    line-height: 1.1;
}

.ea-price-display .price-was {
    font-size: 0.72em;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.ea-price-display .price-now {
    font-size: 1em;
    font-weight: 800;
    color: var(--oso-accent);
}

.ea-price-display--hero .price-was {
    font-size: 1.25rem;
}

.ea-price-display--hero .price-now {
    font-size: 1.75rem;
}

.ea-price-display--inline {
    gap: 0.45rem;
    vertical-align: baseline;
}

.ea-price-display--inline .price-was {
    font-size: 0.95rem;
}

.ea-price-display--inline .price-now {
    font-size: 1.1rem;
}

.page-hero .ea-price-display .price-was {
    color: rgba(255, 255, 255, 0.55);
}

.page-hero .ea-price-display .price-now {
    color: var(--oso-accent-light);
}

.ea-pricing-block {
    margin-bottom: 0.5rem;
}

.ea-price-tagline {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--oso-accent);
    margin: 0.5rem 0 0.15rem;
}

.ea-price-regular {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 0.5rem;
}

/* Three-path pricing */
.biz-comms-spotlight {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: clamp(1.75rem, 4vw, 2.75rem);
    background: linear-gradient(135deg, #1a3320 0%, #2f5233 42%, #1e4d38 100%);
    color: var(--text-inverse);
    box-shadow: 0 20px 50px rgba(47, 82, 51, 0.22);
    border: 1px solid rgba(148, 201, 115, 0.22);
}

.biz-comms-spotlight-glow {
    position: absolute;
    top: -40%;
    right: -10%;
    width: 55%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(118, 185, 71, 0.28) 0%, transparent 68%);
    pointer-events: none;
}

.biz-comms-spotlight-watermark {
    position: absolute;
    right: 1.25rem;
    bottom: -0.5rem;
    font-size: clamp(5rem, 14vw, 8.5rem);
    color: rgba(255, 255, 255, 0.06);
    pointer-events: none;
    line-height: 1;
}

.biz-comms-spotlight-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
}

.biz-comms-spotlight-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #c8e6c9;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.biz-comms-spotlight-title {
    color: var(--text-inverse);
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    line-height: 1.2;
    margin-bottom: 0.85rem;
    max-width: 22ch;
}

.biz-comms-spotlight-desc {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 0.75rem;
    max-width: 42rem;
}

.biz-comms-spotlight-platforms {
    font-size: 0.88rem;
    color: rgba(200, 230, 201, 0.95);
    font-weight: 500;
    margin: 0;
}

.biz-comms-spotlight-panel {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    padding: 1.35rem 1.35rem 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.biz-comms-spotlight-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.biz-comms-spotlight-chip {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0.35rem 0.7rem;
    border-radius: var(--radius-full);
}

.biz-comms-spotlight-price {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.biz-comms-spotlight-price-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.65);
}

.biz-comms-spotlight-price-value {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 800;
    color: var(--oso-accent-light);
    line-height: 1.2;
}

.biz-comms-spotlight-price-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.biz-comms-spotlight-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.biz-comms-spotlight-actions .btn-primary {
    background: var(--oso-accent-light);
    color: var(--oso-primary);
    border-color: transparent;
}

.biz-comms-spotlight-actions .btn-primary:hover {
    background: #fff;
    color: var(--oso-primary);
}

.biz-comms-spotlight-actions .btn-secondary {
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.35);
}

.biz-comms-spotlight-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.biz-comms-spotlight-wrap {
    margin-bottom: clamp(2rem, 5vw, 3rem);
}

.biz-comms-spotlight-wrap--pricing {
    margin-bottom: 0;
}

/* Pricing path guide */
.pricing-path-guide {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-path-guide-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    background: var(--oso-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.pricing-path-guide-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(47, 138, 89, 0.35);
}

.pricing-path-guide-icon {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--oso-interactive);
    color: var(--oso-accent);
    font-size: 1.1rem;
}

.pricing-path-guide-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    flex: 1;
}

.pricing-path-guide-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.pricing-path-guide-tagline {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--oso-accent);
    line-height: 1.4;
}

.pricing-path-guide-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.pricing-path-guide-arrow {
    flex-shrink: 0;
    color: var(--oso-accent);
    opacity: 0.5;
    padding-top: 0.15rem;
    transition: opacity var(--transition), transform var(--transition);
}

.pricing-path-guide-card:hover .pricing-path-guide-arrow {
    opacity: 1;
    transform: translateX(3px);
}

.pricing-path-guide-note {
    text-align: center;
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 36rem;
    margin: 1.5rem auto 0;
    line-height: 1.5;
}

.path-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-standalone-card {
    max-width: 480px;
    margin: 2rem auto 0;
}

.path-price-card {
    background: var(--oso-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 1.75rem 1.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.path-price-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.path-price-card .package-price,
.path-price-card .ea-pricing-block {
    margin-bottom: 0.25rem;
}

.path-price-card .package-price-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.path-price-card .feature-list {
    margin-top: 1.25rem;
}

.path-price-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.path-price-card-actions-top {
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.path-price-card-actions .btn {
    width: 100%;
}

.path-price-card.featured {
    border-color: var(--oso-accent);
    box-shadow: var(--shadow-lg);
    padding-top: 2rem;
    overflow: visible;
    z-index: 1;
}

.path-price-card.highlight {
    border-color: var(--oso-interactive);
    box-shadow: var(--shadow-md);
    padding-top: 2rem;
    overflow: visible;
}

.path-price-card.featured .package-badge,
.path-price-card.highlight .package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

/* Path choice (solutions page) */
.path-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.path-choice-grid--three {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

@media (max-width: 1100px) {
    .path-choice-grid--three {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

.path-choice-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.path-choice-card.featured {
    border-color: var(--oso-accent);
    box-shadow: var(--shadow-lg);
}

.path-choice-tagline {
    font-weight: 600;
    color: var(--oso-accent);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.path-choice-card .feature-list {
    flex: 1;
    margin-bottom: 1.5rem;
}

.path-choice-card .btn {
    width: 100%;
}

.page-hero-price .hero-price-note {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
}

.wiab-early-access-badge {
    display: inline-block;
    margin-left: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(148, 201, 115, 0.25);
    border: 1px solid var(--oso-accent-light);
    border-radius: var(--radius-full);
    color: var(--oso-accent-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    vertical-align: middle;
}

.wiab-early-access-banner {
    max-width: 640px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(148, 201, 115, 0.45);
    border-radius: var(--radius-md);
    text-align: left;
}

.wiab-early-access-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
    line-height: 1.6;
}

.wiab-early-access-banner strong {
    color: var(--oso-accent-light);
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
    flex: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.4rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--oso-accent);
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefits-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.benefit-card .card-icon {
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Pricing Teaser */
.pricing-teaser {
    background: var(--oso-surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 3rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-teaser h2 {
    margin-bottom: 1rem;
}

.pricing-teaser .lead {
    margin-bottom: 2rem;
}

.pricing-highlight {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--oso-accent);
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-brand);
    color: var(--text-inverse);
    text-align: center;
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../../media/oso-bg.png') center / cover no-repeat;
    opacity: 0.1;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--text-inverse);
    margin-bottom: 1rem;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Package Cards */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.package-card {
    background: var(--oso-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 2.5rem 2rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.package-card.featured {
    border-color: var(--oso-accent);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: var(--text-inverse);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.package-tagline {
    color: var(--oso-accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.package-price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.package-card .feature-list {
    margin-bottom: 2rem;
}

.package-card .btn {
    width: 100%;
}

/* Process Steps */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.process-step {
    text-align: center;
    padding: 1.5rem;
}

.process-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--text-inverse);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.process-step h4 {
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse > * {
    direction: ltr;
}

.content-block h2 {
    margin-bottom: 1rem;
}

.content-block p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.content-block .feature-list {
    margin-top: 1.5rem;
}

.visual-block {
    background: var(--oso-interactive);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.visual-block .card-icon {
    width: 72px;
    height: 72px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
}

/* Forms */
.form-card {
    background: var(--oso-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    max-width: 640px;
    margin: 0 auto;
}

.form-card--contact {
    max-width: none;
    margin: 0;
    padding: 1.5rem 2rem;
}

.form-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.form-card-lead {
    color: var(--text-secondary);
    font-size: 0.925rem;
    line-height: 1.45;
    margin-bottom: 1rem;
}

.form-card--contact .form-card-lead {
    margin-bottom: 0.85rem;
}

.form-card h3 {
    margin-bottom: 0.5rem;
}

.form-card > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-fields-top {
    margin-bottom: 0;
}

.form-section {
    margin-bottom: 0.85rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--border);
    border-bottom: none;
}

.form-section--last {
    margin-bottom: 0;
}

.form-card--contact .form-section {
    margin-bottom: 0.35rem;
    padding: 0.4rem 0 0;
}

.form-card--contact .form-section--last {
    margin-bottom: 0;
}

.form-card--contact .form-section-title {
    margin-bottom: 0.35rem;
}

.form-card--contact .form-section--last .form-group {
    margin-bottom: 0;
}

.form-card--contact .form-actions {
    margin-top: 0.5rem;
}

.form-section-title {
    display: block;
    font-size: 0.925rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-section-title .required {
    color: var(--oso-error);
    font-weight: 600;
}

.form-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.form-group--last {
    margin-bottom: 0;
}

.form-actions {
    margin-top: 0.85rem;
}

.oso-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-turnstile {
    margin-bottom: 0.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0.85rem;
}

.form-group {
    margin-bottom: 0.75rem;
}

.form-card--contact .form-group {
    margin-bottom: 0.6rem;
}

.form-card--contact .form-group label {
    margin-bottom: 0.25rem;
    font-size: 0.8125rem;
}

.form-card--contact .form-group input:not([type="radio"]):not([type="checkbox"]),
.form-card--contact .form-group textarea {
    padding: 0.55rem 0.8rem;
    font-size: 0.9375rem;
}

.form-card--contact .form-group textarea {
    min-height: 5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.35rem;
    color: var(--text-secondary);
}

.form-group .required {
    color: var(--oso-error);
}

.form-group input:not([type="radio"]):not([type="checkbox"]),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: var(--oso-bg);
    color: var(--text-primary);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:not([type="radio"]):not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--oso-accent);
    box-shadow: 0 0 0 3px rgba(47, 138, 89, 0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-service-extra[hidden] {
    display: none;
}

.form-field-label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.65rem;
    color: var(--text-secondary);
}

.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.service-pill {
    display: inline-flex;
    align-items: center;
    min-height: 2.125rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-primary);
    background: var(--oso-bg);
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
}

.service-pill:hover {
    border-color: var(--oso-accent);
    background: rgba(47, 138, 89, 0.04);
}

.service-pill input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.service-pill:has(input:checked) {
    border-color: var(--oso-accent);
    background: rgba(47, 138, 89, 0.12);
    color: var(--oso-accent-hover);
    font-weight: 600;
    box-shadow: 0 0 0 3px rgba(47, 138, 89, 0.12);
}

.service-pill:has(input:focus-visible) {
    outline: 2px solid var(--oso-accent);
    outline-offset: 2px;
}

.form-service-extra {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid var(--border);
}

.thank-you-card {
    background: var(--oso-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
    text-align: center;
}

.thank-you-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    background: rgba(47, 138, 89, 0.1);
    color: var(--oso-accent);
    font-size: 1.75rem;
}

.thank-you-card h2 {
    margin-bottom: 1.25rem;
    font-size: 1.35rem;
}

.thank-you-steps {
    text-align: left;
    max-width: 32rem;
    margin: 0 auto 1.5rem;
}

.thank-you-note {
    max-width: 32rem;
    margin: 0 auto 1.75rem;
    font-size: 0.95rem;
    line-height: 1.55;
}

.thank-you-actions {
    justify-content: center;
}

.form-submit {
    width: 100%;
    margin-top: 0;
}

.form-loading {
    display: none;
    text-align: center;
    padding: 1rem;
}

.form-loading.active {
    display: block;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--border);
    border-top-color: var(--oso-accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 0.5rem;
}

/* Contact Page Layout */
.page-hero--compact {
    padding-bottom: 2rem;
}

.contact-section {
    padding-top: 2.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.35fr) minmax(0, 0.65fr);
    gap: 1.5rem 2rem;
    align-items: start;
}

.contact-panel {
    background: var(--oso-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 1.35rem 1.25rem;
}

.contact-panel-title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-panel-intro {
    font-size: 0.925rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.contact-panel-block {
    padding: 0.85rem 0;
    border-top: 1px solid var(--border);
}

.contact-panel-block--note {
    padding-bottom: 0;
}

.contact-panel-row {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.contact-panel-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-sm);
    background: var(--oso-interactive);
    color: var(--oso-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.contact-panel-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.contact-panel-value {
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--text-primary);
    margin: 0;
}

a.contact-panel-value {
    color: var(--oso-accent);
    font-weight: 500;
    text-decoration: none;
}

a.contact-panel-value:hover {
    color: var(--oso-accent-hover);
    text-decoration: underline;
}

.contact-panel-callout {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(47, 138, 89, 0.2);
    background: rgba(47, 138, 89, 0.06);
}

.contact-panel-callout-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.contact-panel-callout-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
}

.contact-form-col {
    min-width: 0;
}

/* Legacy contact info (other pages) */
.contact-info-card {
    background: var(--oso-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 2.5rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-item--last {
    padding-bottom: 0;
}

.contact-quick-links {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.contact-quick-links h4 {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.contact-info-item i {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: var(--oso-interactive);
    color: var(--oso-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h4 {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Feature Grid (inner pages) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    padding: 1.75rem;
    text-align: center;
}

.feature-card .card-icon {
    margin: 0 auto 1rem;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.site-footer {
    background: var(--gradient-brand);
    color: var(--text-inverse);
    padding: 4rem 0 2rem;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-brand-tagline {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    font-size: 0.95rem;
    max-width: 280px;
}

.footer-brand-about {
    color: rgba(255, 255, 255, 0.72);
    margin-top: 0.85rem;
    font-size: 0.875rem;
    line-height: 1.55;
    max-width: 360px;
}

.footer-logo {
    height: 90px;
    width: auto;
    filter: brightness(1.1);
}

.footer-col h4 {
    color: var(--text-inverse);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

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

.footer-col a:hover {
    color: var(--oso-accent-light);
}

.footer-contact i {
    margin-right: 0.5rem;
    width: 16px;
}

.footer-location span,
.contact-panel-row .location-flag {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.location-flag {
    width: 24px;
    height: 16px;
    margin-top: 0.15rem;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    object-fit: contain;
    vertical-align: middle;
}

.contact-panel-icon .location-flag {
    width: 1.35rem;
    height: auto;
    margin-top: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-portal-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-portal-link:hover {
    color: var(--oso-accent-light);
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: var(--oso-accent-light);
}

.footer-legal span {
    color: rgba(255, 255, 255, 0.4);
}

/* Legal pages */
.legal-content {
    background: var(--oso-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
}

.legal-notice {
    background: var(--oso-surface);
    border: 1px solid var(--border);
    border-left: 4px solid var(--oso-accent);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.legal-notice p {
    margin: 0 0 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.legal-notice p:last-child {
    margin-bottom: 0;
}

.legal-notice a {
    color: var(--oso-accent);
    font-weight: 600;
}

.legal-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.25rem;
    margin: 2rem 0 0.75rem;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p,
.legal-content li {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 0 0 1rem 1.25rem;
}

.legal-content a {
    color: var(--oso-accent);
    font-weight: 500;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 1.75rem 1.25rem;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid,
    .benefits-grid.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .package-card.featured {
        transform: none;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 3.5rem;
    }

    .header-inner {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .header-company-card {
        padding: 0.38rem 0.5rem;
        gap: 0.5rem;
    }

    .header-company-card .logo {
        flex: 0 0 84px;
        width: 84px;
        height: 58px;
    }

    .header-company-card .logo img {
        width: 84px;
        object-fit: contain;
        transform: scale(1.28) translateY(1%);
    }

    .header-brand-details {
        max-width: 158px;
        padding-left: 0.45rem;
    }

    .header-brand-tagline {
        font-size: 0.5rem;
    }

    .header-brand-link {
        font-size: 0.59375rem;
    }

    .header-brand-link .oso-icon {
        width: 0.7rem;
        height: 0.7rem;
    }

    .solutions-grid,
    .two-col,
    .contact-grid,
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .contact-form-col {
        order: -1;
    }

    .form-card--contact {
        padding: 1.75rem 1.5rem;
    }

    .contact-panel {
        padding: 1.5rem 1.25rem;
    }

    .two-col.reverse {
        direction: ltr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 3rem 1.5rem 4rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta-group {
        align-items: center;
    }

    .btn-group .btn {
        width: 100%;
        max-width: 320px;
    }

    .pricing-teaser {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .header-inner {
        padding-left: 0.65rem;
        padding-right: 0.65rem;
        gap: 0.4rem;
    }

    .header-brand {
        max-width: calc(100% - 2.5rem);
    }

    .header-company-card {
        padding: 0.36rem 0.48rem;
        gap: 0.45rem;
    }

    .header-company-card .logo {
        flex: 0 0 82px;
        width: 82px;
        height: 57px;
    }

    .header-company-card .logo img {
        width: 82px;
        object-fit: contain;
        transform: scale(1.27) translateY(1%);
    }

    .header-brand-details {
        max-width: 154px;
        padding-left: 0.4rem;
    }

    .header-brand-tagline {
        font-size: 0.484375rem;
    }

    .header-brand-link {
        font-size: 0.578125rem;
    }

    .solution-card,
    .card-body,
    .form-card {
        padding: 1.5rem;
    }
}

/* Blog */
.blog-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.blog-item {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: center;
    padding: clamp(2rem, 5vw, 3.5rem) 0;
    border-bottom: 1px solid var(--border);
}

.blog-item:first-child {
    padding-top: 0;
}

.blog-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.blog-item--no-media {
    grid-template-columns: 1fr;
}

.blog-item-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: linear-gradient(145deg, var(--oso-interactive) 0%, rgba(236, 244, 238, 0.45) 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    transition: opacity var(--transition);
}

.blog-item-media:hover {
    opacity: 0.92;
}

.blog-item-media img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    max-height: 320px;
    object-fit: contain;
    object-position: center;
    padding: 1.25rem;
    display: block;
}

.blog-item-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 0.875rem;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
}

.blog-meta time,
.blog-date {
    color: var(--text-muted);
    font-weight: 500;
}

.blog-category {
    background: transparent;
    color: var(--oso-accent);
    padding: 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.blog-author {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.blog-item-title {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    margin-bottom: 0.875rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.blog-item-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition);
}

.blog-item-title a:hover {
    color: var(--oso-accent);
}

.blog-item-excerpt {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--oso-accent);
    text-decoration: none;
    transition: gap var(--transition), color var(--transition);
}

.blog-read-more:hover {
    gap: 0.75rem;
    color: var(--oso-accent-hover);
}

.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--oso-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.blog-empty h3 {
    margin-bottom: 0.75rem;
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.blog-page-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .blog-item {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .blog-item-media {
        min-height: 200px;
    }

    .blog-item-media img {
        min-height: 200px;
        max-height: 260px;
        padding: 1rem;
    }

    .blog-item-excerpt {
        -webkit-line-clamp: 5;
    }
}

/* Blog Post */
.blog-draft-preview-banner {
    background: #fef3c7;
    border-bottom: 1px solid #f59e0b;
    color: #92400e;
    padding: 0.75rem 1.5rem;
}

.blog-draft-preview-banner-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
}

.blog-draft-preview-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.blog-draft-preview-banner a {
    color: #92400e;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
}

.blog-draft-preview-banner a:hover {
    color: #78350f;
}

.blog-post-header {
    background: var(--gradient-brand);
    color: var(--text-inverse);
    padding: 3rem 1.5rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../../media/oso-bg.png') center 60% / cover no-repeat;
    opacity: 0.12;
}

.blog-post-header .container {
    position: relative;
    z-index: 1;
}

.blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition);
}

.blog-back-link:hover {
    color: var(--oso-accent-light);
}

.blog-meta--post {
    justify-content: center;
    margin-top: 1.5rem;
    gap: 1rem 1.25rem;
}

.blog-post-header .blog-meta time,
.blog-post-header .blog-date {
    color: rgba(255, 255, 255, 0.92);
}

.blog-post-header .blog-category {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-date {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.blog-date-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.blog-post-header h1 {
    color: var(--text-inverse);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-top: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.blog-post-body {
    position: relative;
}

.blog-featured-image {
    margin: -2rem auto 2rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.blog-featured-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    background: var(--oso-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.blog-post-content h2:first-child,
.blog-post-content h3:first-child {
    margin-top: 0;
}

.blog-post-content p {
    margin-bottom: 1.25rem;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-content a {
    color: var(--oso-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-post-content blockquote {
    border-left: 4px solid var(--oso-accent);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--oso-interactive);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

.blog-post-content code {
    background: var(--oso-interactive);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.blog-post-content pre {
    background: var(--oso-bg);
    border: 1px solid var(--border);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-post-content pre code {
    background: none;
    padding: 0;
}

.blog-post-content img {
    border-radius: var(--radius-md);
    margin: 1.5rem 0;
}

.blog-post-content table,
.blog-post-content .blog-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.75rem 0;
    font-size: 0.95rem;
}

.blog-post-content th,
.blog-post-content td {
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    text-align: left;
    vertical-align: top;
}

.blog-post-content th {
    background: var(--oso-interactive);
    color: var(--text-primary);
    font-weight: 600;
}

.blog-post-content tbody tr:nth-child(even) {
    background: rgba(236, 244, 238, 0.35);
}

@media (max-width: 640px) {
    .blog-post-content table,
    .blog-post-content .blog-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.blog-post-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin: 2.5rem 0 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .blog-post-header {
        padding: 1.75rem 1.25rem 1.5rem;
    }

    .blog-post-header h1 {
        font-size: clamp(1.5rem, 6vw, 1.85rem);
        margin-top: 0.75rem;
        line-height: 1.25;
    }

    .blog-meta--post {
        margin-top: 1rem;
        gap: 0.5rem 0.75rem;
    }

    .blog-post-body {
        background: var(--oso-card);
        border: 1px solid var(--border);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        margin-top: 0.25rem;
        padding: 0;
        width: auto;
        max-width: none;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .blog-featured-image {
        margin: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .blog-featured-image img {
        max-height: none;
        width: 100%;
        height: auto;
        object-fit: contain;
        background: var(--oso-bg);
    }

    .blog-post-content {
        padding: 1.5rem;
        border: none;
        border-radius: 0;
        box-shadow: none;
    }

    .blog-post-footer {
        flex-direction: column;
        align-items: stretch;
        margin: 0;
        padding: 0 1.5rem 1.5rem;
        border-top: none;
    }

    .blog-post-footer .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Website-in-a-Box — Template Catalog */
.tpl-catalog {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tpl-live-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .tpl-live-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Live template — compact horizontal card */
.tpl-item--live {
    display: grid;
    grid-template-columns: 140px 1fr;
    grid-template-rows: auto auto;
    gap: 0 1.25rem;
    background: var(--oso-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    align-items: start;
}

.tpl-preview {
    grid-row: 1 / 3;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--oso-bg);
    aspect-ratio: 4 / 3;
}

.tpl-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tpl-body {
    min-width: 0;
}

.tpl-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.tpl-status {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.tpl-status-live {
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
}

.tpl-status-soon {
    background: var(--oso-interactive);
    color: var(--text-muted);
}

.tpl-type {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.tpl-name {
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
    line-height: 1.2;
}

.tpl-tagline {
    font-size: 0.875rem;
    color: var(--oso-accent);
    font-weight: 500;
    margin-bottom: 0.35rem;
    line-height: 1.4;
}

.tpl-for {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

.tpl-for strong {
    color: var(--text-secondary);
    font-weight: 600;
}

.tpl-actions {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.25rem;
}

.tpl-demo-url {
    width: 100%;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Coming soon section */
.tpl-soon-section {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

.tpl-soon-heading {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.tpl-soon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.625rem;
}

@media (min-width: 640px) {
    .tpl-soon-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.tpl-item--soon {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: var(--oso-bg);
    border: 1px dashed var(--border-strong);
    border-radius: var(--radius-md);
    padding: 0.875rem 1rem;
    opacity: 0.9;
}

.tpl-soon-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--oso-interactive);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--oso-accent);
    opacity: 0.5;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.tpl-item--soon .tpl-name {
    font-size: 1rem;
}

.tpl-item--soon .tpl-tagline {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.tpl-catalog-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.tpl-catalog-note a {
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Website-in-a-Box page */
.wiab-highlight-list {
    max-width: 720px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
}

.wiab-highlight {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--border);
}

.wiab-highlight-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--oso-interactive);
    color: var(--oso-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.wiab-highlight-copy h3 {
    font-size: 1.125rem;
    margin-bottom: 0.35rem;
}

.wiab-highlight-copy p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.wiab-feature-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    max-width: 960px;
    margin: 0 auto;
}

.wiab-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--border);
}

.wiab-feature--reverse .wiab-feature-visual {
    order: 2;
}

.wiab-feature--reverse .wiab-feature-copy {
    order: 1;
}

.wiab-feature-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.wiab-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--oso-interactive);
    color: var(--oso-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.wiab-feature-copy h3 {
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

.wiab-feature-copy > p {
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.wiab-feature-copy .feature-list {
    margin: 0;
}

.wiab-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.wiab-visual-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
}

/* WIAB demo showcase — open rows instead of boxed cards */
.page-wiab .tpl-item--live {
    grid-template-columns: minmax(0, 200px) minmax(0, 1fr);
    gap: 0 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    box-shadow: none;
    padding: 2rem 0;
}

.page-wiab .tpl-live-grid {
    gap: 0;
}

.page-wiab .tpl-preview {
    aspect-ratio: 4 / 3;
    max-height: none;
    border-radius: var(--radius-md);
}

.page-wiab .tpl-name {
    font-size: 1.35rem;
}

.page-wiab .tpl-actions .btn-primary {
    background: var(--oso-accent);
    border-color: var(--oso-accent);
    color: #fff;
}

@media (max-width: 767px) {
    .tpl-item--live {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .tpl-preview {
        grid-row: auto;
        aspect-ratio: 16 / 9;
        max-height: 160px;
    }

    .tpl-actions {
        grid-column: 1;
    }

    .page-wiab .tpl-item--live {
        grid-template-columns: 1fr;
        padding: 1.75rem 0;
    }

    .page-wiab .tpl-preview {
        max-height: none;
        aspect-ratio: 16 / 10;
        margin-bottom: 0.25rem;
    }

    .page-wiab .tpl-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .page-wiab .tpl-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .page-wiab .tpl-demo-url {
        text-align: center;
    }

    .wiab-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .wiab-feature--reverse .wiab-feature-visual,
    .wiab-feature--reverse .wiab-feature-copy {
        order: unset;
    }

    .wiab-highlight {
        padding: 1.5rem 0;
    }
}

@media (min-width: 768px) {
    .page-wiab .tpl-live-grid {
        grid-template-columns: 1fr;
    }
}

.wiab-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
    width: 100%;
}

#pricing .wiab-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-top: 0.75rem;
}

.wiab-price-card {
    background: var(--oso-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 1.75rem 1.5rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.wiab-price-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.wiab-price-card .package-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.1;
}

.wiab-price-card .package-price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.wiab-price-card .feature-list {
    flex: 1;
    margin-bottom: 1.5rem;
}

.wiab-price-card .btn {
    width: 100%;
    margin-top: auto;
}

.wiab-price-card.featured {
    border-color: var(--oso-accent);
    box-shadow: var(--shadow-lg);
    padding-top: 2rem;
    overflow: visible;
    z-index: 1;
}

.wiab-price-card.featured .package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.wiab-price-card .package-price span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.module-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.module-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--oso-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.625rem 1.125rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.module-tag i {
    color: var(--oso-accent);
    font-size: 0.75rem;
}

.audience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    max-width: 720px;
    margin: 0 auto;
}

.audience-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--oso-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.audience-tag i {
    color: var(--oso-accent);
    font-size: 0.75rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--oso-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-primary);
}

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

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--oso-accent);
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item p a {
    font-weight: 600;
}

/* Domain Guide */
.guide-content h2 {
    margin-bottom: 1rem;
}

.guide-step {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.guide-step:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 1.5rem;
}

.guide-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: var(--text-inverse);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guide-step h3 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.guide-step p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.guide-step code {
    background: var(--oso-interactive);
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.9em;
}

.dns-record-box {
    background: var(--oso-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    margin-top: 0.75rem;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.dns-record-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
}

.dns-record-row:last-child {
    border-bottom: none;
}

.dns-record-row span {
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}

.guide-tips h3 {
    margin-bottom: 1rem;
}

@media (max-width: 1024px) {
    .path-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .path-choice-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solution-path {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }

    .solution-path-details {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid var(--border);
        margin-top: 0.25rem;
        padding-top: 1.5rem;
    }

    .solution-path-actions .btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .wiab-pricing-grid,
    #pricing .wiab-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 768px) {
    .biz-comms-spotlight-grid {
        grid-template-columns: 1fr;
    }

    .biz-comms-spotlight-title {
        max-width: none;
    }

    .biz-comms-spotlight-watermark {
        right: 0.5rem;
        bottom: auto;
        top: 0.25rem;
        font-size: 4.5rem;
        opacity: 0.5;
    }

    .biz-comms-spotlight-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .pricing-path-guide {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .guide-step {
        flex-direction: column;
    }

    .dns-record-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }
}

/* Focus accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--oso-accent-light);
    outline-offset: 2px;
}
