:root {
    --dark: #10212b;
    --dark-secondary: #203944;
    --green: #4f6d63;
    --green-dark: #355148;
    --green-light: #e5ece8;
    --off-white: #f6f8f7;
    --white: #ffffff;
    --border: #dce5e1;
    --accent: #d9a441;
    --text: #1b2c33;
    --text-muted: #5d6b70;
    --shadow: 0 20px 60px rgba(16, 33, 43, 0.09);
    --radius: 18px;
    --container: 1180px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    overflow-x: clip;
    color: var(--text);
    background: var(--off-white);
    font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
    font: inherit;
}

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.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;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--dark);
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow);
    transform: translateY(-160%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 4px;
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    background: rgba(16, 33, 43, 0.96);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
}

.brand-mark {
    position: relative;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 8px;
    transform: rotate(45deg);
}

.brand-mark span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: var(--green-light);
    border-radius: 4px;
}

.brand-mark span:first-child {
    transform: rotate(90deg);
}

.brand-mark span:nth-child(2) {
    width: 8px;
    transform: translate(4px, -4px);
}

.brand-mark span:nth-child(3) {
    width: 8px;
    transform: translate(-4px, 4px) rotate(90deg);
}

.brand-name {
    font-size: 20px;
    font-weight: 620;
    letter-spacing: -0.03em;
}

.brand-name strong {
    color: #a9bdb6;
    font-weight: 700;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.primary-nav > a:not(.header-phone) {
    position: relative;
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #d5dfdb;
    font-size: 14px;
    font-weight: 540;
    text-decoration: none;
}

.primary-nav > a:not(.header-phone)::after {
    position: absolute;
    right: 0;
    bottom: 6px;
    left: 0;
    height: 1px;
    content: "";
    background: #a9bdb6;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.primary-nav > a:not(.header-phone):hover::after,
.primary-nav > a:not(.header-phone):focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.primary-nav .nav-business {
    color: var(--white);
    font-weight: 700;
}

.header-phone {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 15px;
    color: var(--dark);
    background: var(--green-light);
    border: 1px solid var(--green-light);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
    transition: background 180ms ease, transform 180ms ease;
}

.header-phone:hover {
    background: var(--white);
    transform: translateY(-1px);
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
    width: 20px;
    height: 2px;
    display: block;
    content: "";
    background: currentColor;
    border-radius: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-lines {
    position: relative;
}

.nav-toggle-lines::before {
    position: absolute;
    top: -6px;
}

.nav-toggle-lines::after {
    position: absolute;
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
    top: 0;
    transform: rotate(-45deg);
}

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 21px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.3;
    text-align: center;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--white);
    background: var(--green);
    border-color: var(--green);
}

.button-primary:hover {
    background: #5e7d72;
    border-color: #5e7d72;
}

.button-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.34);
}

.button-ghost:hover,
.button-cta-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.58);
}

.button-light {
    color: var(--dark);
    background: var(--white);
}

.button-light:hover {
    background: var(--green-light);
}

.button-accent {
    color: var(--dark);
    background: var(--accent);
}

.button-accent:hover {
    background: #e3b657;
}

.button-cta-ghost {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.eyebrow {
    margin: 0 0 18px;
    color: #afc3bc;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.14em;
    line-height: 1.4;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 24px;
    height: 1px;
    display: inline-block;
    margin: 0 10px 3px 0;
    content: "";
    background: currentColor;
}

.eyebrow-dark {
    color: var(--green-dark);
}

.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--dark);
}

.hero::before {
    position: absolute;
    top: -32%;
    right: -12%;
    width: 62vw;
    height: 62vw;
    min-width: 600px;
    min-height: 600px;
    content: "";
    border: 1px solid rgba(135, 164, 153, 0.11);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(135, 164, 153, 0.035), 0 0 0 180px rgba(135, 164, 153, 0.025);
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.45;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
    mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
    align-items: center;
    gap: clamp(56px, 7vw, 100px);
    padding-block: 92px 100px;
}

.hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(46px, 5.2vw, 76px);
    font-weight: 620;
    letter-spacing: -0.055em;
    line-height: 1.02;
    text-wrap: balance;
}

.hero h1,
.section h2,
.audience-section h2,
.business-feature h2,
.final-cta h2,
.audience-card h3,
.guide-card h3 {
    overflow-wrap: break-word;
    hyphens: auto;
}

.hero-intro {
    max-width: 690px;
    margin: 28px 0 0;
    color: #c6d2d1;
    font-size: clamp(17px, 1.7vw, 20px);
    line-height: 1.65;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.direct-contact {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
    color: #dbe4e1;
    text-decoration: none;
}

.direct-contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
}

.direct-contact-icon svg {
    width: 18px;
    height: 18px;
}

.direct-contact small,
.direct-contact strong {
    display: block;
}

.direct-contact small {
    color: #8fa2a3;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.direct-contact strong {
    margin-top: 1px;
    font-size: 15px;
    font-weight: 680;
}

.direct-contact:hover strong {
    color: var(--accent);
}

.hero-portal {
    position: relative;
    padding: 22px;
    background: rgba(32, 57, 68, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
}

.portal-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    color: #b7c5c3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.portal-status {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #dce9e4;
}

.portal-status i {
    width: 7px;
    height: 7px;
    background: #8db6a5;
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(141, 182, 165, 0.1);
}

.portal-map {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.portal-orbit,
.portal-line,
.portal-core,
.portal-node {
    position: absolute;
}

.portal-orbit {
    top: 50%;
    left: 50%;
    border: 1px solid rgba(183, 207, 198, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-one {
    width: 170px;
    height: 170px;
}

.orbit-two {
    width: 285px;
    height: 285px;
}

.portal-core {
    top: 50%;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 17px;
    color: #dfe8e5;
    background: #1b343e;
    border: 1px solid rgba(183, 207, 198, 0.25);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 650;
    transform: translate(-50%, -50%);
}

.portal-core::before {
    position: absolute;
    inset: -7px;
    content: "";
    border: 1px solid rgba(143, 179, 165, 0.14);
    border-radius: 12px;
}

.portal-core svg {
    width: 25px;
    height: 25px;
    color: #9cb9af;
}

.portal-node {
    z-index: 3;
    width: 145px;
    padding: 12px 13px;
    background: #1b343e;
    border: 1px solid rgba(183, 207, 198, 0.22);
    border-radius: 8px;
}

.portal-node span,
.portal-node strong {
    display: block;
}

.node-label {
    color: #91ada4;
    font-size: 9px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portal-node strong {
    margin-top: 2px;
    color: #e0e8e5;
    font-size: 11px;
    font-weight: 650;
}

.node-business {
    top: 42px;
    right: 8px;
    border-color: rgba(217, 164, 65, 0.35);
}

.node-private {
    bottom: 36px;
    left: 6px;
}

.portal-line {
    z-index: 2;
    height: 1px;
    background: rgba(151, 181, 170, 0.34);
    transform-origin: left;
}

.portal-line::after {
    position: absolute;
    top: -2px;
    right: -1px;
    width: 5px;
    height: 5px;
    content: "";
    background: #8dab9f;
    border-radius: 50%;
}

.line-business {
    top: 157px;
    left: 55%;
    width: 120px;
    transform: rotate(-49deg);
}

.line-private {
    top: 176px;
    left: 18%;
    width: 120px;
    transform: rotate(142deg);
    transform-origin: right;
}

.portal-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.portal-metrics div {
    min-width: 0;
    padding: 18px 8px 2px;
}

.portal-metrics div + div {
    padding-left: 16px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.portal-metrics span,
.portal-metrics strong {
    display: block;
    overflow-wrap: break-word;
}

.portal-metrics span {
    color: #91a8ac;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portal-metrics strong {
    margin-top: 3px;
    color: #d8e3df;
    font-size: 11px;
    font-weight: 650;
}

.audience-section {
    padding-block: clamp(78px, 8vw, 112px);
    background: var(--off-white);
}

.section-kicker {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

.section-kicker .eyebrow {
    margin: 0;
}

.section-kicker h2 {
    max-width: 590px;
    margin: 0;
    color: var(--dark);
    font-size: clamp(34px, 4vw, 49px);
    font-weight: 620;
    letter-spacing: -0.045em;
    line-height: 1.1;
    text-align: right;
    text-wrap: balance;
}

.audience-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.62fr) minmax(320px, 1fr);
    gap: 18px;
}

.audience-card {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    padding: clamp(34px, 4.8vw, 58px);
    border-radius: var(--radius);
    scroll-margin-top: 105px;
}

.audience-business {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 70px rgba(16, 33, 43, 0.16);
}

.audience-business::after {
    position: absolute;
    right: -170px;
    bottom: -250px;
    width: 500px;
    height: 500px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 75px rgba(255, 255, 255, 0.018);
}

.audience-private {
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(16, 33, 43, 0.07);
}

.audience-card-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.audience-index,
.audience-tag {
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.11em;
    line-height: 1.4;
    text-transform: uppercase;
}

.audience-business .audience-index {
    color: #9fb4ae;
}

.audience-private .audience-index {
    color: #65756f;
}

.audience-tag {
    padding: 5px 8px;
    border-radius: 4px;
}

.audience-business .audience-tag {
    color: var(--dark);
    background: var(--accent);
}

.audience-private .audience-tag {
    color: var(--green-dark);
    background: var(--green-light);
}

.audience-card h3 {
    position: relative;
    z-index: 1;
    margin: 50px 0 12px;
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 620;
    letter-spacing: -0.05em;
    line-height: 1;
}

.audience-business h3 {
    color: var(--white);
}

.audience-private h3 {
    color: var(--dark);
}

.audience-card > p {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin: 0;
    font-size: 15px;
}

.audience-business > p {
    color: #c9d5d2;
}

.audience-private > p {
    color: var(--text-muted);
}

.highlight-list {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    margin: 31px 0 34px;
    padding: 25px 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    list-style: none;
}

.audience-business .highlight-list {
    border-color: rgba(255, 255, 255, 0.12);
}

.audience-private .highlight-list {
    border-color: var(--border);
}

.highlight-list li {
    position: relative;
    padding-left: 16px;
    font-size: 12px;
    font-weight: 650;
}

.highlight-list li::before {
    position: absolute;
    top: 9px;
    left: 0;
    width: 5px;
    height: 5px;
    content: "";
    border-radius: 50%;
}

.audience-business .highlight-list li {
    color: #e1e9e6;
}

.audience-business .highlight-list li::before {
    background: #9db8ad;
}

.audience-private .highlight-list li {
    color: var(--green-dark);
}

.audience-private .highlight-list li::before {
    background: var(--green);
}

.panel-link {
    position: relative;
    z-index: 1;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 10px;
    margin-top: auto;
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.audience-business .panel-link {
    color: var(--white);
}

.audience-private .panel-link {
    color: var(--green-dark);
}

.panel-link span {
    transition: transform 180ms ease;
}

.panel-link:hover span {
    transform: translateX(4px);
}

.trust-strip {
    background: var(--green-light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.trust-grid > div {
    min-height: 118px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 25px;
}

.trust-grid > div + div {
    border-left: 1px solid #cbd8d2;
}

.trust-grid strong,
.trust-grid span {
    display: block;
}

.trust-grid strong {
    color: var(--green-dark);
    font-size: 20px;
    font-weight: 650;
    letter-spacing: -0.025em;
}

.trust-grid span {
    margin-top: 2px;
    color: #56645f;
    font-size: 11px;
    line-height: 1.45;
}

.section {
    padding-block: clamp(84px, 9vw, 132px);
}

.section h2,
.business-feature h2,
.final-cta h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(35px, 4.3vw, 55px);
    font-weight: 620;
    letter-spacing: -0.045em;
    line-height: 1.1;
    text-wrap: balance;
}

.section-heading {
    margin-bottom: 50px;
}

.heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.58fr);
    align-items: end;
    gap: 60px;
}

.heading-split .eyebrow {
    margin-bottom: 14px;
}

.heading-split > p {
    margin: 0 0 4px;
    color: var(--text-muted);
    font-size: 16px;
}

.problems {
    background: var(--white);
}

.problem-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.66fr) minmax(520px, 1.2fr);
    gap: clamp(70px, 10vw, 135px);
}

.problem-intro {
    position: sticky;
    top: 126px;
    align-self: start;
}

.problem-intro > p:not(.eyebrow) {
    margin: 24px 0 0;
    color: var(--text-muted);
}

.text-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 29px;
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 750;
    text-decoration: none;
}

.text-link span {
    transition: transform 180ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--border);
}

.problem-grid a {
    position: relative;
    min-height: 135px;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: start;
    gap: 10px;
    padding: 27px 22px 27px 0;
    color: var(--dark);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background 180ms ease, padding 180ms ease;
}

.problem-grid a:nth-child(even) {
    padding-left: 22px;
    border-left: 1px solid var(--border);
}

.problem-grid a > span {
    color: #65756f;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.problem-grid a > strong {
    font-size: 16px;
    font-weight: 650;
    line-height: 1.4;
}

.problem-grid a > i {
    color: var(--green);
    font-size: 16px;
    font-style: normal;
    transition: transform 180ms ease;
}

.problem-grid a:hover {
    background: var(--green-light);
}

.problem-grid a:hover > i {
    transform: translateX(4px);
}

.business-feature {
    padding-block: clamp(78px, 8vw, 112px);
    color: var(--white);
    background: var(--dark);
}

.business-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    overflow: hidden;
    background: var(--dark-secondary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.2);
}

.business-copy {
    position: relative;
    padding: clamp(45px, 6vw, 76px);
    overflow: hidden;
}

.business-copy::after {
    position: absolute;
    right: -170px;
    bottom: -240px;
    width: 450px;
    height: 450px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.015);
}

.business-feature h2 {
    position: relative;
    z-index: 1;
    max-width: 680px;
    color: var(--white);
    font-size: clamp(36px, 4.2vw, 54px);
}

.business-copy > p:not(.eyebrow) {
    position: relative;
    z-index: 1;
    max-width: 630px;
    margin: 24px 0 34px;
    color: #c5d2d0;
}

.business-copy .button {
    position: relative;
    z-index: 1;
}

.business-actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.business-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--off-white);
}

.business-services a {
    min-height: 215px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background 180ms ease;
}

.business-services a:nth-child(odd) {
    border-right: 1px solid var(--border);
}

.business-services a:nth-child(n + 3) {
    border-bottom: 0;
}

.business-services a > span {
    color: #65756f;
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.1em;
}

.business-services a > strong {
    margin-top: auto;
    color: var(--dark);
    font-size: 18px;
    font-weight: 670;
    line-height: 1.3;
    hyphens: auto;
    overflow-wrap: anywhere;
}

.business-services a > small {
    margin-top: 7px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
}

.business-services a:hover {
    background: var(--green-light);
}

.private-feature {
    background: var(--off-white);
}

.private-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.private-card {
    min-height: 136px;
    display: grid;
    grid-template-columns: 52px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 25px 27px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.private-card-main {
    grid-row: span 2;
    min-height: 286px;
    grid-template-columns: 62px 1fr auto;
    background: var(--green-light);
}

.card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    background: var(--green-light);
    border-radius: 10px;
}

.private-card-main .card-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
}

.card-icon svg {
    width: 25px;
    height: 25px;
}

.private-card-main .card-icon svg {
    width: 30px;
    height: 30px;
}

.private-card strong,
.private-card small {
    display: block;
}

.private-card strong {
    color: var(--dark);
    font-size: 17px;
    font-weight: 670;
}

.private-card-main strong {
    font-size: 22px;
}

.private-card small {
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.55;
}

.private-card > i {
    color: var(--green);
    font-style: normal;
    transition: transform 180ms ease;
}

.private-card:hover {
    border-color: #b8c9c2;
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.private-card:hover > i {
    transform: translateX(4px);
}

.local {
    color: var(--white);
    background: var(--green-dark);
}

.local-layout {
    display: grid;
    grid-template-columns: minmax(380px, 0.9fr) minmax(350px, 0.8fr);
    align-items: center;
    gap: clamp(70px, 10vw, 145px);
}

.local-map {
    position: relative;
    min-height: 420px;
}

.map-ring,
.map-center,
.map-road,
.map-city {
    position: absolute;
}

.map-ring {
    top: 50%;
    left: 50%;
    border: 1px solid rgba(229, 236, 232, 0.14);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.ring-one {
    width: 130px;
    height: 130px;
}

.ring-two {
    width: 255px;
    height: 255px;
}

.ring-three {
    width: 390px;
    height: 390px;
}

.map-center {
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border: 3px solid var(--green-dark);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(217, 164, 65, 0.16);
    transform: translate(-50%, -50%);
}

.map-road {
    top: 50%;
    left: 50%;
    width: 180px;
    height: 1px;
    background: rgba(229, 236, 232, 0.19);
    transform-origin: left;
}

.road-one {
    transform: rotate(-35deg);
}

.road-two {
    transform: rotate(145deg);
}

.road-three {
    transform: rotate(70deg);
}

.map-city {
    color: #d9e4e0;
    font-size: 11px;
    font-weight: 650;
}

.map-city::before {
    width: 5px;
    height: 5px;
    display: inline-block;
    margin: 0 7px 2px 0;
    content: "";
    background: #9fb6ad;
    border-radius: 50%;
}

.city-viborg {
    top: 9%;
    left: 44%;
}

.city-herning {
    top: 51%;
    left: 2%;
}

.city-silkeborg {
    right: 1%;
    bottom: 17%;
}

.city-ikast {
    bottom: 6%;
    left: 31%;
}

.city-kjellerup {
    top: 43%;
    left: 55%;
    color: var(--white);
}

.local-copy .eyebrow {
    color: #b8cbc4;
}

.local-copy h2 {
    color: var(--white);
}

.local-copy > p:not(.eyebrow):not(.local-note) {
    margin: 24px 0 0;
    color: #d0dcd8;
}

.city-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 31px 0 0;
    padding: 0;
    list-style: none;
}

.city-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 7px 11px;
    color: #e7efec;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 650;
    text-decoration: none;
    transition: background 180ms ease, border-color 180ms ease;
}

.city-links a:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.local-note {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 24px 0 0;
    color: #afc2bb;
    font-size: 12px;
}

.local-note span {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
}

.guides {
    background: var(--white);
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.guide-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    padding: 29px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.guide-featured {
    color: var(--white);
    background: var(--dark-secondary);
    border-color: var(--dark-secondary);
}

.guide-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.guide-topic,
.guide-number {
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.guide-topic {
    padding: 4px 7px;
    color: var(--green-dark);
    background: var(--green-light);
    border-radius: 4px;
}

.guide-featured .guide-topic {
    color: var(--dark);
    background: var(--accent);
}

.guide-featured .guide-number {
    color: #c7d3d0;
}

.guide-number {
    color: #65756f;
}

.guide-card h3 {
    margin: 37px 0 12px;
    color: var(--dark);
    font-size: 20px;
    font-weight: 650;
    letter-spacing: -0.025em;
    line-height: 1.3;
}

.guide-featured h3 {
    color: var(--white);
}

.guide-card p {
    margin: 0 0 25px;
    color: var(--text-muted);
    font-size: 13px;
}

.guide-featured p {
    color: #c7d3d0;
}

.guide-card a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
}

.guide-featured a {
    color: var(--white);
}

.guide-card a span {
    transition: transform 180ms ease;
}

.guide-card a:hover span {
    transform: translateX(4px);
}

.guide-card:hover {
    border-color: #b8c9c2;
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.guide-featured:hover {
    border-color: rgba(255, 255, 255, 0.26);
}

.approach {
    background: var(--green-light);
}

.approach-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.76fr) minmax(480px, 1.05fr);
    gap: clamp(70px, 10vw, 140px);
}

.approach-copy > p:not(.eyebrow) {
    margin: 25px 0 0;
    color: #566861;
}

.approach-points {
    margin: 0;
    padding: 0;
    border-top: 1px solid #c6d4ce;
    list-style: none;
}

.approach-points li {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #c6d4ce;
}

.approach-points li > span {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    background: var(--white);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 750;
}

.approach-points strong {
    color: var(--dark);
    font-size: 17px;
    font-weight: 680;
}

.approach-points p {
    margin: 4px 0 0;
    color: #586b64;
    font-size: 13px;
}

.final-cta {
    position: relative;
    padding-block: clamp(76px, 8vw, 110px);
    overflow: hidden;
    color: var(--white);
    background: var(--dark);
}

.final-cta::after {
    position: absolute;
    top: -150px;
    right: -90px;
    width: 420px;
    height: 420px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.018);
}

.cta-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 0.65fr;
    align-items: center;
    gap: clamp(60px, 10vw, 140px);
}

.final-cta h2 {
    color: var(--white);
}

.final-cta .cta-layout > div:first-child > p:last-child {
    max-width: 680px;
    margin: 23px 0 0;
    color: #becdca;
}

.cta-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.cta-actions .contact-line {
    grid-column: 1 / -1;
}

.contact-line {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    color: #e3ebe8;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 13px;
    text-decoration: none;
}

.contact-line:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-line span {
    color: #92a5a5;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-line strong {
    font-weight: 650;
    overflow-wrap: anywhere;
}

.contact-line:hover strong {
    color: var(--accent);
}

.site-footer {
    color: #b7c5c3;
    background: #0b1820;
}

.footer-main {
    min-height: 145px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.footer-main > div > p {
    max-width: 510px;
    margin: 13px 0 0;
    font-size: 12px;
}

.brand-footer .brand-mark {
    width: 29px;
    height: 29px;
}

.footer-main nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 9px 22px;
}

.footer-main nav a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: #c3cfcd;
    font-size: 12px;
    text-decoration: none;
}

.footer-main nav a:hover {
    color: var(--white);
}

.footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 19px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-meta p {
    margin: 0;
    color: #718388;
    font-size: 10px;
}

@media (max-width: 1080px) {
    .primary-nav {
        gap: 16px;
    }

    .primary-nav > a:not(.header-phone) {
        font-size: 13px;
    }

    .header-phone {
        padding-inline: 12px;
    }

    .hero-layout {
        grid-template-columns: minmax(0, 1fr) 380px;
        gap: 45px;
    }

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

    .business-panel {
        grid-template-columns: minmax(0, 1fr) 430px;
    }
}

@media (max-width: 920px) {
    .container {
        width: min(calc(100% - 32px), var(--container));
    }

    .header-inner {
        min-height: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        max-height: calc(100vh - 70px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        overflow-y: auto;
        background: var(--dark);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
    }

    .primary-nav.is-open {
        display: flex;
    }

    .primary-nav > a:not(.header-phone) {
        min-height: 52px;
        padding: 8px 4px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
    }

    .primary-nav > a:not(.header-phone)::after {
        display: none;
    }

    .header-phone {
        margin-top: 16px;
        font-size: 15px;
    }

    .hero {
        min-height: auto;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 62px;
        padding-block: 82px;
    }

    .hero-copy {
        max-width: 720px;
    }

    .hero-portal {
        width: min(100%, 560px);
    }

    .section-kicker,
    .heading-split,
    .problem-layout,
    .business-panel,
    .local-layout,
    .approach-layout,
    .cta-layout {
        grid-template-columns: 1fr;
    }

    .section-kicker {
        display: grid;
        align-items: start;
        gap: 18px;
    }

    .section-kicker h2 {
        text-align: left;
    }

    .audience-grid {
        grid-template-columns: minmax(0, 1.35fr) minmax(290px, 1fr);
    }

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

    .trust-grid > div:nth-child(4) {
        border-left: 0;
    }

    .trust-grid > div:nth-child(n + 4) {
        border-top: 1px solid #cbd8d2;
    }

    .heading-split {
        align-items: start;
        gap: 22px;
    }

    .problem-layout,
    .approach-layout {
        gap: 55px;
    }

    .problem-intro {
        position: static;
    }

    .business-panel {
        grid-template-columns: 1fr;
    }

    .business-services a {
        min-height: 180px;
    }

    .private-card-main {
        grid-row: auto;
        min-height: 136px;
        grid-template-columns: 52px 1fr auto;
    }

    .private-card-main .card-icon {
        width: 50px;
        height: 50px;
    }

    .private-card-main .card-icon svg {
        width: 25px;
        height: 25px;
    }

    .private-card-main strong {
        font-size: 17px;
    }

    .local-layout {
        gap: 30px;
    }

    .local-map {
        min-height: 360px;
        order: 2;
    }

    .local-map .ring-three {
        width: 340px;
        height: 340px;
    }

    .cta-layout {
        gap: 50px;
    }
}

@media (max-width: 700px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section,
    .audience-section,
    .business-feature {
        padding-block: 74px;
    }

    .hero-layout {
        padding-block: 68px 74px;
    }

    .hero h1 {
        font-size: clamp(41px, 12vw, 58px);
    }

    .hero-intro {
        font-size: 17px;
    }

    .button-row,
    .button-row .button {
        width: 100%;
    }

    .hero-portal {
        padding: 17px;
    }

    .portal-map {
        height: 290px;
    }

    .portal-metrics div {
        padding-inline: 7px;
    }

    .portal-metrics div + div {
        padding-left: 9px;
    }

    .audience-grid,
    .problem-grid,
    .private-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }

    .audience-card {
        min-height: 470px;
        padding: 34px 27px;
    }

    .audience-card h3 {
        margin-top: 38px;
    }

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

    .trust-grid > div {
        min-height: 108px;
        padding: 18px 15px;
        border-top: 1px solid #cbd8d2;
    }

    .trust-grid > div:nth-child(-n + 2) {
        border-top: 0;
    }

    .trust-grid > div:nth-child(odd) {
        border-left: 0;
    }

    .trust-grid > div:nth-child(even) {
        border-left: 1px solid #cbd8d2;
    }

    .trust-grid > div:last-child {
        grid-column: 1 / -1;
        border-right: 0;
    }

    .problem-grid a,
    .problem-grid a:nth-child(even) {
        min-height: 104px;
        padding: 25px 10px 25px 0;
        border-left: 0;
    }

    .business-copy {
        padding: 42px 25px;
    }

    .business-services {
        grid-template-columns: 1fr;
    }

    .business-services a,
    .business-services a:nth-child(odd),
    .business-services a:nth-child(n + 3) {
        min-height: 145px;
        padding: 26px;
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .business-services a:last-child {
        border-bottom: 0;
    }

    .private-card,
    .private-card-main {
        min-height: 142px;
        grid-template-columns: 48px 1fr auto;
        gap: 15px;
        padding: 22px 19px;
    }

    .card-icon,
    .private-card-main .card-icon {
        width: 46px;
        height: 46px;
    }

    .local-map {
        min-height: 310px;
        transform: scale(0.9);
    }

    .local-map .ring-three {
        width: 305px;
        height: 305px;
    }

    .map-road {
        width: 145px;
    }

    .guide-card {
        min-height: 285px;
    }

    .cta-actions {
        grid-template-columns: 1fr;
    }

    .cta-actions .contact-line {
        grid-column: auto;
    }

    .contact-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 1px;
    }

    .footer-main {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
        padding-block: 32px;
    }

    .footer-main nav {
        justify-content: flex-start;
    }

    .footer-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: clamp(39px, 12.5vw, 50px);
    }

    .portal-node {
        width: 126px;
        padding: 10px;
    }

    .node-business {
        right: 0;
    }

    .node-private {
        left: 0;
    }

    .portal-core {
        padding: 13px;
    }

    .portal-core svg {
        width: 21px;
        height: 21px;
    }

    .portal-core span {
        display: none;
    }

    .line-business {
        left: 52%;
        width: 104px;
    }

    .line-private {
        left: 15%;
        width: 104px;
    }

    .highlight-list {
        grid-template-columns: 1fr;
    }

    .trust-grid strong {
        font-size: 18px;
    }

    .private-card,
    .private-card-main {
        grid-template-columns: 44px 1fr;
    }

    .private-card > i {
        display: none;
    }

    .card-icon,
    .private-card-main .card-icon {
        width: 42px;
        height: 42px;
    }
}

@media (hover: none) {
    .button:hover,
    .private-card:hover,
    .guide-card:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
