:root {
    --navy: #354657;
    --navy-dark: #2f3a46;
    --gold: #ecd35f;
    --gold-deep: #c5a64a;
    --ink: #303742;
    --muted: #6d7480;
    --paper: #ffffff;
    --soft: #f3f3f7;
    --line: rgba(48, 55, 66, 0.16);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: Inter, "DM Sans", Manrope, "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.topbar {
    color: #fff;
    background: #2d3b48;
    font-size: 13px;
}

.topbar-inner {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 8px 22px;
}

.topbar span,
.topbar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.topbar svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--gold);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.topbar a:hover,
.city-list a:hover {
    color: var(--gold-deep);
}

.site-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 92px;
    padding: 14px clamp(18px, 6vw, 86px);
    background: rgba(47, 58, 70, 0.94);
    backdrop-filter: blur(14px);
}

.wordmark {
    display: inline-flex;
    align-items: center;
    width: max-content;
    color: var(--gold);
    line-height: 1;
}

.wordmark span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 40px;
    letter-spacing: 0;
}

.wordmark em {
    color: var(--gold-deep);
    font-family: Inter, "DM Sans", Manrope, "Segoe UI", Arial, sans-serif;
    font-size: 0.42em;
    font-style: normal;
    font-weight: 700;
    vertical-align: baseline;
}

.wordmark small {
    margin-left: 6px;
    padding: 7px 12px 6px;
    color: rgba(236, 211, 95, 0.82);
    border: 1px solid rgba(236, 211, 95, 0.45);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    white-space: nowrap;
}

.logo-image {
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
}

.logo-image img {
    display: block;
    width: 220px;
    max-width: 30vw;
    height: auto;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(16px, 1.8vw, 26px);
    color: #fff;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 8px 0;
}

.nav-links a::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    background: var(--gold);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links .nav-cta {
    min-height: 42px;
    padding: 10px 16px;
    color: var(--navy-dark);
    background: var(--gold);
    border-radius: 4px;
    font-weight: 800;
}

.nav-links .nav-cta::after {
    display: none;
}

.nav-links .nav-cta:hover {
    color: var(--navy-dark);
    background: #f0d969;
}

.hero {
    min-height: 640px;
    background:
        linear-gradient(90deg, rgba(24, 31, 39, 0.94), rgba(47, 58, 70, 0.52), rgba(47, 58, 70, 0.28)),
        url("../img/hero-sofina-team.jpeg") center / cover;
}

.hero-inner {
    display: flex;
    align-items: center;
    min-height: 640px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 22px;
}

.hero-panel {
    max-width: 760px;
    padding: clamp(26px, 4vw, 52px);
    color: #fff;
    background: rgba(33, 42, 50, 0.72);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.12;
}

h1 {
    margin-bottom: 20px;
    font-size: clamp(36px, 4.4vw, 56px);
}

h2 {
    margin-bottom: 20px;
    color: var(--navy-dark);
    font-size: clamp(32px, 4vw, 48px);
}

h3 {
    margin-bottom: 12px;
    color: var(--navy-dark);
    font-size: 26px;
}

.hero p {
    max-width: 620px;
    font-size: 19px;
}

.actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 4px;
    font-weight: 900;
    text-align: center;
}

.btn.primary,
.btn.gold {
    color: var(--navy-dark);
    background: var(--gold);
}

.btn.secondary {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.75);
}

.btn:hover {
    transform: translateY(-1px);
}

.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(22px, 3vw, 42px) 22px;
}

.section[id] {
    scroll-margin-top: 132px;
}

.section-title {
    max-width: 760px;
    margin-bottom: 20px;
}

.intro {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: clamp(28px, 5vw, 68px);
    color: #fff;
    background: linear-gradient(135deg, #334757, #25313d);
    max-width: none;
    padding-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    padding-right: max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.intro h2,
.intro-copy p {
    color: #fff;
}

.intro-copy {
    font-size: 18px;
}

.intro-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    margin: 8px 0 22px;
    padding: 0;
    color: #fff;
    list-style: none;
}

.intro-list li {
    position: relative;
    padding-left: 20px;
}

.intro-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
}

.service-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1px;
    max-width: 1180px;
    margin: -34px auto 0;
    padding: 1px;
    background: var(--line);
    box-shadow: 0 22px 52px rgba(47, 58, 70, 0.11);
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.service-card-grid article {
    padding: 26px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.service-card-grid span {
    color: var(--gold-deep);
}

.service-card-grid p {
    color: var(--muted);
}

.service-strip article {
    display: flex;
    flex-direction: column;
    min-height: 178px;
    padding: 24px 22px 22px;
    background: #fff;
}

.service-strip span {
    color: var(--gold-deep);
    font-size: 18px;
    line-height: 1;
}

.service-strip h3 {
    margin: 18px 0 10px;
    font-size: 21px;
    line-height: 1.16;
    letter-spacing: 0;
}

.service-strip p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.55;
}

.why {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
    gap: clamp(28px, 5vw, 68px);
    align-items: center;
}

.why img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
}

.check-list {
    display: grid;
    gap: 10px;
    padding-left: 20px;
    color: var(--muted);
}

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

.feature-grid article {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.feature-grid span {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--gold-deep);
    font-size: 13px;
    font-weight: 900;
}

.feature-grid strong {
    display: block;
    color: var(--navy-dark);
    font-size: 17px;
}

.feature-grid p {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.pricing {
    color: var(--navy-dark);
    background: #fff;
    max-width: 1440px;
    margin-bottom: 0;
}

.pricing .section-title {
    max-width: 860px;
    margin: 0 auto 20px;
    text-align: center;
}

.pricing .section-title p:not(.eyebrow) {
    color: var(--muted);
}

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

.pricing-card,
.pricing-extra {
    background: var(--soft);
    border: 1px solid rgba(47, 67, 88, 0.08);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(47, 58, 70, 0.06);
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: clamp(22px, 2.2vw, 30px);
    text-align: center;
}

.pricing-icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    align-self: center;
    color: var(--navy-dark);
    background: var(--gold);
    border-radius: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.pricing-card h3,
.pricing-extra h3 {
    color: var(--navy-dark);
}

.pricing-card h3 {
    min-height: 62px;
    margin: 16px 0 0;
    font-size: clamp(23px, 1.8vw, 28px);
    line-height: 1.08;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card ul,
.pricing-extra ul {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.pricing-card li,
.pricing-extra li {
    position: relative;
    padding-left: 20px;
    color: var(--gold-deep);
    font-size: 15.5px;
    line-height: 1.42;
}

.pricing-card li + li,
.pricing-extra li + li {
    margin-top: 6px;
}

.pricing-card li::before,
.pricing-extra li::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 0;
    width: 7px;
    height: 7px;
    background: var(--navy-dark);
    border-radius: 50%;
}

.pricing-extra ul {
    columns: auto;
    column-gap: normal;
}

.pricing-cta {
    max-width: 860px;
    margin: 24px auto 0;
    text-align: center;
}

.pricing-cta p {
    color: var(--muted);
    margin-bottom: 16px;
}

.quote-card {
    padding: 30px;
    border: 1px solid var(--line);
    background: var(--soft);
}

.price-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
    gap: clamp(26px, 5vw, 72px);
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at right top, rgba(216, 187, 90, 0.16), transparent 32%),
        linear-gradient(135deg, #334757, #25313d);
    padding: clamp(46px, 6vw, 82px) max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.price-hero h1,
.price-hero p {
    color: #fff;
}

.price-hero-copy {
    max-width: 860px;
}

.price-hero-copy p:not(.eyebrow) {
    max-width: 780px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
}

.price-hero-card {
    padding: clamp(26px, 4vw, 42px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(216, 187, 90, 0.28);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.price-hero-card span {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.price-hero-card strong {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
}

.price-hero-card p {
    margin: 6px 0 24px;
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
}

.price-hero-card p:last-child {
    margin-bottom: 0;
}

.price-section .section-title {
    max-width: 880px;
}

.price-factor-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.price-factor-grid span,
.price-factor-grid li {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 18px;
    color: var(--navy-dark);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
}

.price-factor-grid span::before,
.price-factor-grid li::before {
    width: 8px;
    height: 8px;
    margin-right: 12px;
    background: var(--gold);
    content: "";
    transform: rotate(45deg);
}

.price-note {
    max-width: 820px;
    margin: 22px 0 0;
    color: var(--muted);
}

.pricing-page .pricing-grid {
    gap: 20px;
}

.pricing-page .pricing-card {
    min-height: 470px;
    text-align: left;
}

.pricing-page .pricing-icon {
    align-self: flex-start;
}

.pricing-page .pricing-card h3 {
    min-height: 62px;
    font-size: clamp(25px, 2vw, 31px);
}

.price-value {
    margin: 10px 0 0;
    color: var(--navy-dark);
}

.price-value strong {
    display: block;
    color: var(--gold-deep);
    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1;
}

.price-value span {
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 800;
}

.price-split {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(360px, 1.25fr);
    gap: clamp(24px, 5vw, 64px);
    align-items: start;
}

.price-split > div p:not(.eyebrow) {
    color: var(--muted);
}

.price-dark {
    margin-top: clamp(16px, 3vw, 34px);
}

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

.price-reasons {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.price-final {
    margin-bottom: clamp(26px, 4vw, 52px);
}

.quote-hero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(47, 58, 70, 0.94), rgba(47, 58, 70, 0.72)),
        url("../img/modern-business-meeting.jpeg") center / cover;
    max-width: none;
    padding-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    padding-right: max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.quote-hero > div {
    max-width: 760px;
}

.quote-hero h1,
.quote-hero p {
    color: #fff;
}

.quote-section {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.quote-form-panel {
    padding: clamp(24px, 4vw, 42px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(47, 58, 70, 0.08);
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 26px;
}

.quote-form label,
.quote-fieldset legend {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-dark);
    font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--navy-dark);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
    outline: none;
    border-color: var(--gold-deep);
    box-shadow: 0 0 0 3px rgba(211, 178, 78, 0.18);
}

.quote-form textarea {
    min-height: 128px;
    resize: vertical;
}

.quote-form small,
.quote-submit p {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: 14px;
}

.quote-wide,
.quote-fieldset,
.quote-submit,
.captcha-row {
    grid-column: 1 / -1;
}

.quote-fieldset {
    display: flex;
    gap: 22px;
    align-items: center;
    margin: 0;
    padding: 18px 0 0;
    border: 0;
}

.quote-fieldset legend {
    margin: 0 18px 0 0;
    float: left;
}

.quote-fieldset label {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    margin: 0;
    font-weight: 700;
}

.quote-fieldset input {
    width: auto;
}

.captcha-row {
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

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

.quote-submit .btn {
    border: 0;
    cursor: pointer;
}

.quote-aside {
    padding: 30px;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
}

.quote-aside h2 {
    color: #fff;
    font-size: 30px;
}

.quote-aside ul {
    display: grid;
    gap: 12px;
    margin: 0 0 24px;
    padding-left: 20px;
}

.quote-aside a {
    color: var(--gold);
    font-weight: 900;
}

.success-box,
.error-box {
    margin-bottom: 24px;
    padding: 18px 20px;
    border-radius: 8px;
}

.success-box {
    color: #14532d;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.success-box span {
    display: block;
    margin-top: 4px;
}

.error-box {
    color: #7f1d1d;
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.error-box ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.quote-admin-body {
    min-height: 100vh;
    background: var(--soft);
}

.admin-login {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.admin-login-card {
    width: min(100%, 380px);
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(47, 58, 70, 0.1);
}

.admin-login-card img {
    width: 190px;
    margin-bottom: 24px;
}

.admin-login-card h1 {
    font-size: 34px;
}

.admin-login-card label {
    display: block;
    margin-bottom: 8px;
    color: var(--navy-dark);
    font-weight: 900;
}

.admin-login-card input,
.quote-admin-toolbar input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.admin-login-card .btn {
    width: 100%;
    margin-top: 18px;
    border: 0;
    cursor: pointer;
}

.admin-error {
    padding: 12px 14px;
    color: #7f1d1d;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
}

.quote-admin {
    width: min(100% - 32px, 1480px);
    margin: 0 auto;
    padding: 28px 0 48px;
}

.quote-admin-header {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.quote-admin-header h1 {
    margin: 0;
    font-size: clamp(34px, 4vw, 50px);
}

.quote-admin-toolbar {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.quote-admin-toolbar form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.quote-admin-toolbar input {
    width: min(420px, 70vw);
    background: #fff;
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    color: #fff;
    background: var(--gold-deep);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 900;
    text-decoration: none;
}

.admin-btn.muted {
    color: var(--navy-dark);
    background: #fff;
    border: 1px solid var(--line);
}

.admin-table-wrap {
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 14px 36px rgba(47, 58, 70, 0.08);
}

.admin-table {
    width: 100%;
    min-width: 1100px;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: #fff;
    background: var(--gold-deep);
    white-space: nowrap;
}

.admin-table tr:hover td {
    background: #faf8f2;
}

.admin-table a {
    color: var(--navy-dark);
    font-weight: 800;
}

.company-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(37, 49, 61, 0.96), rgba(47, 58, 70, 0.8)),
        url("../img/modern-business-meeting.jpeg") center / cover;
    padding: clamp(44px, 6vw, 76px) max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.company-hero h1,
.company-hero p {
    color: #fff;
}

.company-hero-copy {
    max-width: 760px;
}

.company-hero-copy p {
    font-size: 18px;
}

.company-visual {
    position: relative;
    min-height: 380px;
}

.company-visual::before {
    content: "";
    position: absolute;
    inset: 48px 0 0 42px;
    border: 1px solid rgba(235, 210, 112, 0.32);
    border-radius: 8px;
}

.visual-window {
    position: relative;
    display: grid;
    gap: 18px;
    max-width: 520px;
    margin-left: auto;
    padding: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}

.visual-bar {
    display: flex;
    gap: 7px;
}

.visual-bar span {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
}

.visual-metric,
.visual-grid div {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.visual-metric {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.visual-metric span,
.visual-grid span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.visual-metric strong {
    color: var(--navy-dark);
    font-size: 46px;
    line-height: 1;
}

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

.visual-grid strong {
    display: block;
    margin-top: 6px;
    color: var(--navy-dark);
    font-size: 18px;
}

.visual-lines {
    display: grid;
    gap: 10px;
}

.visual-lines span {
    display: block;
    height: 10px;
    background: linear-gradient(90deg, rgba(211, 178, 78, 0.44), rgba(47, 58, 70, 0.1));
    border-radius: 999px;
}

.visual-lines span:nth-child(2) {
    width: 78%;
}

.visual-lines span:nth-child(3) {
    width: 56%;
}

.company-section .section-title p,
.company-split > div > p,
.company-seo p {
    color: var(--muted);
}

.visual-split {
    display: grid;
    grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
    gap: clamp(34px, 7vw, 88px);
    align-items: center;
}

.visual-split.reverse {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
}

.visual-photo {
    position: relative;
    margin: 0;
}

.visual-photo::before {
    content: "";
    position: absolute;
    inset: 22px -18px -18px 28px;
    border: 1px solid rgba(216, 187, 90, 0.38);
    border-radius: 8px;
    z-index: 0;
}

.visual-photo img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-height: 460px;
    aspect-ratio: 16 / 11;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(47, 58, 70, 0.16);
}

.visual-note {
    position: absolute;
    right: 22px;
    bottom: 22px;
    z-index: 2;
    max-width: 300px;
    padding: 14px 16px;
    color: #fff;
    background: rgba(37, 49, 61, 0.88);
    border-left: 4px solid var(--gold);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
    backdrop-filter: blur(8px);
}

.visual-copy p {
    color: var(--muted);
}

.insight-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.insight-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 16px;
    color: var(--navy-dark);
    background: #fff;
    border: 1px solid rgba(216, 187, 90, 0.38);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.online-media,
.company-media,
.local-media,
.service-visual-section,
.city-visual-section {
    padding-top: 0;
}

.company-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.company-card-grid article,
.entity-stack article,
.steps-grid article {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.company-card-grid article {
    min-height: 260px;
    padding: 28px;
}

.company-card-grid span {
    color: var(--gold-deep);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.company-card-grid h3 {
    margin-top: 16px;
    font-size: 24px;
}

.company-card-grid p,
.entity-stack p,
.company-steps p {
    color: var(--muted);
}

.company-intro .section-title {
    margin-bottom: 20px;
}

.company-text-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 3vw, 34px);
    padding: clamp(22px, 3vw, 34px);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.company-text-panel p {
    color: var(--muted);
}

.company-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.company-service-list li,
.company-pill-grid li {
    position: relative;
    padding: 16px 18px 16px 42px;
    color: var(--navy-dark);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 800;
}

.company-service-list li::before,
.company-pill-grid li::before {
    content: "";
    position: absolute;
    top: 23px;
    left: 20px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    transform: rotate(45deg);
}

.company-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: start;
}

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

.company-pill-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.entity-stack {
    display: grid;
    gap: 14px;
}

.entity-stack article {
    padding: 24px 26px;
}

.entity-stack h3 {
    font-size: 24px;
}

.company-dark {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, #334757, #25313d);
    max-width: none;
    padding-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    padding-right: max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.company-dark h2,
.company-dark p {
    color: #fff;
}

.company-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.company-benefits li {
    position: relative;
    padding: 18px 18px 18px 46px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-weight: 800;
}

.company-benefits li::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 20px;
    width: 9px;
    height: 9px;
    background: var(--gold);
    transform: rotate(45deg);
}

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

.company-reason-grid article {
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.company-reason-grid h3 {
    color: #fff;
    font-size: 20px;
}

.company-reason-grid p {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

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

.company-steps-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.steps-grid article {
    min-height: 170px;
    padding: 20px;
}

.steps-grid span {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--navy-dark);
    background: var(--gold);
    border-radius: 50%;
    font-weight: 900;
}

.steps-grid h3 {
    margin-top: 18px;
    font-size: 22px;
}

.company-cta {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
}

.company-cta h2,
.company-cta p {
    color: #fff;
}

.company-cta > div:first-child {
    max-width: 760px;
}

.company-cta .actions {
    justify-content: flex-end;
    min-width: 360px;
}

.company-seo {
    max-width: none;
}

.company-final {
    display: flex;
    gap: 22px;
    align-items: center;
    justify-content: space-between;
    background: var(--soft);
    border-left: 5px solid var(--gold);
}

.company-final > div {
    max-width: 840px;
}

.company-final p:not(.eyebrow) {
    color: var(--muted);
}

.company-final .btn {
    flex: 0 0 auto;
}

.contact-hero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(37, 49, 61, 0.96), rgba(47, 58, 70, 0.76)),
        url("../img/modern-business-meeting.jpeg") center / cover;
    padding: clamp(56px, 8vw, 104px) max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.contact-hero > div {
    max-width: 820px;
}

.contact-hero h1,
.contact-hero p {
    color: #fff;
}

.contact-hero p {
    font-size: 19px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(26px, 4vw, 52px);
    align-items: stretch;
    animation: fadeUp 520ms ease both;
}

.contact-main-card {
    padding: clamp(26px, 3.4vw, 38px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 16px 42px rgba(47, 58, 70, 0.08);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-main-card:hover {
    border-color: rgba(216, 187, 90, 0.45);
    box-shadow: 0 22px 56px rgba(47, 58, 70, 0.12);
    transform: translateY(-3px);
}

.contact-main-card h2 {
    font-size: clamp(28px, 3.4vw, 38px);
    line-height: 1.08;
}

.contact-details {
    display: grid;
    gap: 14px;
    margin: 22px 0 26px;
}

.contact-details div {
    padding: 15px 0;
    border-top: 1px solid var(--line);
}

.contact-details dt {
    margin-bottom: 6px;
    color: var(--gold-deep);
    font-weight: 900;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.08em;
}

.contact-details dd {
    margin: 0;
    color: var(--navy-dark);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.55;
}

.contact-channel-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
}

.contact-channel-grid article {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 168px;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-channel-grid article:hover {
    border-color: rgba(216, 187, 90, 0.48);
    box-shadow: 0 20px 50px rgba(47, 58, 70, 0.1);
    transform: translateY(-3px);
}

.contact-channel-grid article:first-child {
    grid-column: 1 / -1;
    color: #fff;
    background: var(--navy);
}

.contact-channel-grid article:first-child h3,
.contact-channel-grid article:first-child a {
    color: #fff;
}

.contact-channel-grid span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 15px;
    color: var(--gold-deep);
    background: rgba(216, 187, 90, 0.16);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.contact-channel-grid h3 {
    margin: 0 0 10px;
    font-size: clamp(21px, 2vw, 24px);
    line-height: 1.12;
    font-weight: 800;
}

.contact-channel-grid a {
    display: block;
    margin-top: 5px;
    color: var(--navy-dark);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.contact-link-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-link-list li {
    margin: 0;
}

.contact-link-list a {
    margin-top: 0;
}

.map-section {
    display: grid;
    grid-template-columns: minmax(340px, 0.72fr) minmax(420px, 1.28fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: stretch;
    min-height: clamp(520px, 48vw, 650px);
    background:
        radial-gradient(circle at left top, rgba(216, 187, 90, 0.11), transparent 30%),
        linear-gradient(135deg, #f4f5f9 0%, #ffffff 100%);
    max-width: none;
    padding-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    padding-right: max(22px, calc((100vw - 1280px) / 2 + 22px));
    border-top: 1px solid rgba(47, 67, 88, 0.07);
    border-bottom: 1px solid rgba(47, 67, 88, 0.06);
    animation: fadeUp 520ms ease both;
}

.map-section p {
    color: var(--muted);
}

.map-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
}

.map-copy h2 {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
}

.map-copy .btn {
    align-self: flex-start;
    margin-top: 22px;
}

.map-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    margin-bottom: 18px;
    padding: 9px 14px;
    color: var(--navy-dark);
    background: #fff;
    border: 1px solid rgba(216, 187, 90, 0.48);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(47, 58, 70, 0.07);
    font-size: 13px;
    font-weight: 900;
}

.map-badge svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--gold-deep);
    stroke-width: 1.8;
}

.map-info-grid {
    display: grid;
    gap: 12px;
    margin-top: 26px;
}

.map-info-grid article {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(47, 67, 88, 0.08);
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(47, 58, 70, 0.06);
}

.map-info-grid span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold-deep);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.map-info-grid strong {
    display: block;
    color: var(--navy-dark);
    font-size: 17px;
    line-height: 1.45;
}

.map-info-grid a {
    color: var(--navy-dark);
}

.map-card {
    position: relative;
    display: block;
    min-height: 100%;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(243, 245, 249, 0.96)),
        radial-gradient(circle at 72% 38%, rgba(216, 187, 90, 0.2), transparent 14%),
        linear-gradient(90deg, rgba(47, 67, 88, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(47, 67, 88, 0.05) 1px, transparent 1px);
    background-size: auto, auto, 76px 76px, 76px 76px;
    border: 1px solid rgba(47, 67, 88, 0.08);
    border-radius: 28px;
    box-shadow: 0 28px 80px rgba(47, 58, 70, 0.16);
    transform: translateY(0);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.map-card:hover {
    box-shadow: 0 34px 90px rgba(47, 58, 70, 0.2);
    transform: translateY(-4px);
}

.sofina-map {
    min-height: clamp(550px, 48vw, 650px);
}

.map-road,
.map-area,
.map-marker,
.map-label {
    position: absolute;
}

.map-road {
    display: block;
    border-radius: 999px;
    background: rgba(47, 67, 88, 0.1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.46);
}

.map-road-1 {
    top: 18%;
    left: -8%;
    width: 118%;
    height: 18px;
    transform: rotate(-11deg);
}

.map-road-2 {
    top: 18%;
    left: 54%;
    width: 16px;
    height: 74%;
    transform: rotate(17deg);
}

.map-road-3 {
    top: 58%;
    left: 8%;
    width: 86%;
    height: 14px;
    transform: rotate(8deg);
}

.map-road-4 {
    top: 6%;
    left: 23%;
    width: 13px;
    height: 86%;
    transform: rotate(-23deg);
}

.map-area {
    border: 1px solid rgba(47, 67, 88, 0.07);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.34);
}

.map-area-1 {
    top: 11%;
    left: 10%;
    width: 26%;
    height: 22%;
}

.map-area-2 {
    right: 8%;
    bottom: 12%;
    width: 30%;
    height: 24%;
}

.map-area-3 {
    bottom: 18%;
    left: 14%;
    width: 24%;
    height: 18%;
}

.map-marker {
    top: 46%;
    left: 57%;
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border: 5px solid var(--gold);
    border-radius: 50% 50% 50% 8px;
    box-shadow: 0 18px 42px rgba(47, 58, 70, 0.24);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.map-marker span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    transform: rotate(45deg);
}

.map-label {
    padding: 9px 13px;
    color: var(--navy-dark);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(47, 67, 88, 0.08);
    border-radius: 999px;
    box-shadow: 0 14px 34px rgba(47, 58, 70, 0.08);
    font-size: 13px;
    font-weight: 900;
}

.map-label-main {
    top: 61%;
    left: 49%;
}

.map-label-city {
    right: 10%;
    top: 14%;
    color: var(--gold-deep);
}

.sofina-map::after {
    position: absolute;
    right: 24px;
    bottom: 22px;
    padding: 10px 14px;
    color: var(--navy-dark);
    background: var(--gold);
    border-radius: 999px;
    content: "Otwórz w Google Maps";
    font-size: 13px;
    font-weight: 900;
}

.contact-cta {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
}

.contact-cta h2,
.contact-cta p {
    color: #fff;
}

.contact-cta > div:first-child {
    max-width: 760px;
}

.contact-cta .actions {
    justify-content: flex-end;
    min-width: 330px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.online-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(37, 49, 61, 0.96), rgba(47, 58, 70, 0.78)),
        url("../img/hero-sofina-team.jpeg") center / cover;
    padding: clamp(44px, 6vw, 76px) max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.online-hero h1,
.online-hero p {
    color: #fff;
}

.online-hero-copy {
    max-width: 780px;
}

.online-hero-copy p {
    font-size: 18px;
}

.online-visual {
    position: relative;
}

.online-visual::before {
    content: "";
    position: absolute;
    inset: 42px 34px -26px -22px;
    border: 1px solid rgba(235, 210, 112, 0.34);
    border-radius: 8px;
}

.online-device {
    position: relative;
    display: grid;
    gap: 18px;
    max-width: 520px;
    margin-left: auto;
    padding: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}

.online-upload {
    padding: 26px;
    background: linear-gradient(135deg, #fff, #fbf7ea);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.online-upload span,
.online-progress span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.online-upload strong {
    display: block;
    margin-top: 8px;
    color: var(--navy-dark);
    font-size: 30px;
}

.online-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.online-progress div {
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.online-progress strong {
    display: block;
    margin-top: 8px;
    color: var(--navy-dark);
    font-size: 18px;
}

.online-section .section-title p,
.online-process .section-title p,
.online-audience p,
.online-seo p {
    color: var(--muted);
}

.online-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.online-card-grid article {
    min-height: 245px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.online-card-grid span {
    color: var(--gold-deep);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.online-card-grid h3 {
    margin-top: 16px;
    font-size: 24px;
}

.online-card-grid p,
.online-timeline p {
    color: var(--muted);
}

.online-timeline {
    display: grid;
    gap: 14px;
    max-width: 980px;
}

.online-timeline article {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.online-timeline span {
    display: inline-grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--navy-dark);
    background: var(--gold);
    border-radius: 50%;
    font-weight: 900;
}

.online-timeline h3 {
    font-size: 24px;
}

.online-dark {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: clamp(24px, 5vw, 58px);
    align-items: center;
    color: #fff;
    background: linear-gradient(135deg, #334757, #25313d);
    max-width: none;
    padding-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    padding-right: max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.online-dark h2,
.online-dark p {
    color: #fff;
}

.online-benefits,
.audience-grid {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.online-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.online-benefits li,
.audience-grid li {
    position: relative;
    padding: 18px 18px 18px 46px;
    border-radius: 8px;
    font-weight: 800;
}

.online-benefits li {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.online-benefits li::before,
.audience-grid li::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 20px;
    width: 9px;
    height: 9px;
    background: var(--gold);
    transform: rotate(45deg);
}

.online-audience {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
    gap: clamp(24px, 5vw, 58px);
    align-items: start;
}

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

.audience-grid li {
    background: #fff;
    border: 1px solid var(--line);
}

.online-cta {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    background: var(--navy);
    border-radius: 8px;
}

.online-cta h2,
.online-cta p {
    color: #fff;
}

.online-cta > div:first-child {
    max-width: 760px;
}

.online-cta .actions {
    justify-content: flex-end;
    min-width: 360px;
}

.online-seo {
    max-width: none;
}

.local-hero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(24, 31, 39, 0.94), rgba(47, 58, 70, 0.68), rgba(47, 58, 70, 0.34)),
        url("../img/modern-business-meeting.jpeg") center / cover;
    padding: clamp(46px, 6vw, 82px) max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.local-hero > div {
    max-width: 820px;
}

.local-hero h1,
.local-hero p {
    color: #fff;
}

.local-hero p {
    max-width: 720px;
    font-size: 19px;
}

.local-services {
    padding-top: 0;
}

.local-services .company-card-grid article {
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.local-services .company-card-grid article:hover {
    border-color: rgba(197, 166, 74, 0.75);
    box-shadow: 0 16px 42px rgba(47, 58, 70, 0.11);
    transform: translateY(-2px);
}

.local-feature-grid article {
    background: #fff;
}

.local-feature-grid span {
    color: var(--gold-deep);
}

.local-seo-copy {
    align-items: start;
}

.local-seo-copy img {
    position: sticky;
    top: 130px;
}

.tuchola-seo-copy img {
    min-height: 0;
    height: clamp(320px, 32vw, 480px);
    max-height: 480px;
    object-fit: cover;
    object-position: center;
}

.local-seo-copy .check-list {
    margin: 18px 0 22px;
}

.local-cities {
    background: var(--soft);
    max-width: none;
    padding-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    padding-right: max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.local-cities .section-title p {
    color: var(--muted);
}

.local-cta {
    margin-top: clamp(22px, 3vw, 42px);
}

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

.city-card {
    min-height: 132px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.city-card:hover {
    border-color: rgba(197, 166, 74, 0.75);
    box-shadow: 0 16px 42px rgba(47, 58, 70, 0.11);
    transform: translateY(-2px);
}

.city-card strong,
.city-card span {
    display: block;
}

.city-card strong {
    color: var(--navy-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.15;
}

.city-card span {
    margin-top: 10px;
    color: var(--muted);
    font-size: 14px;
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.service-links a {
    padding: 10px 14px;
    color: var(--navy-dark);
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-weight: 800;
}

.city-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.city-list a {
    color: var(--navy-dark);
    font-weight: 800;
}

.contact {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 5vw, 58px);
    background: var(--soft);
    max-width: none;
    padding-left: max(22px, calc((100vw - 1280px) / 2 + 22px));
    padding-right: max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.contact .btn.secondary {
    color: var(--navy-dark);
    border-color: var(--navy-dark);
}

address {
    padding: 28px;
    background: #fff;
    border-left: 5px solid var(--gold);
    font-style: normal;
}

address a {
    color: var(--navy-dark);
    font-weight: 800;
}

.global-final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(28px, 6vw, 82px);
    align-items: center;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(216, 187, 90, 0.15), transparent 34%),
        linear-gradient(135deg, #2f4358, #253342);
    padding: clamp(62px, 7vw, 98px) max(22px, calc((100vw - 1280px) / 2 + 22px));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.global-final-cta h2,
.global-final-cta p {
    color: #fff;
}

.global-final-cta h2 {
    max-width: 760px;
    font-size: clamp(34px, 4.5vw, 58px);
}

.global-final-cta p:not(.eyebrow) {
    max-width: 690px;
    font-size: 19px;
}

.global-final-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.btn.large {
    min-height: 56px;
    padding: 16px 28px;
    font-size: 15px;
}

.trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    color: #f4f4f4;
    background: linear-gradient(90deg, #26384a, #2f4358);
    padding: 18px 22px;
    border-top: 1px solid rgba(216, 187, 90, 0.22);
    border-bottom: 1px solid rgba(216, 187, 90, 0.18);
    font-size: 14px;
    font-weight: 800;
}

.trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-bar span::before {
    color: var(--gold);
    content: "✓";
    font-weight: 900;
}

.site-footer {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr 1fr;
    gap: clamp(28px, 5vw, 56px);
    color: var(--navy-dark);
    background: #fff;
    max-width: none;
    margin: 0;
    padding: clamp(34px, 4vw, 52px) max(22px, calc((100vw - 1280px) / 2 + 22px));
}

.footer-wordmark,
.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    width: 185px;
    max-width: 100%;
}

.site-footer p {
    margin-top: 24px;
    color: var(--navy-dark);
}

.site-footer h2 {
    margin-bottom: 18px;
    color: var(--navy-dark);
    font-size: 24px;
}

.site-footer a {
    display: block;
    margin-bottom: 10px;
    color: var(--navy-dark);
    font-weight: 700;
}

.site-footer a:hover {
    color: var(--gold);
}

.site-footer strong {
    color: var(--navy-dark);
}

.copyright {
    padding: 9px 22px;
    color: var(--navy-dark);
    background: var(--gold);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.subhero {
    color: #fff;
    background:
        linear-gradient(90deg, rgba(47, 58, 70, 0.94), rgba(47, 58, 70, 0.66)),
        url("../img/modern-business-meeting.jpeg") center / cover;
}

.subhero > div {
    max-width: 960px;
    margin: 0 auto;
    padding: clamp(44px, 6vw, 76px) 22px;
    text-align: center;
}

.subhero h1,
.subhero p {
    margin-left: auto;
    margin-right: auto;
}

.subhero p {
    max-width: 760px;
    font-size: 19px;
}

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

.two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: start;
}

.quote-card .btn {
    margin-top: 12px;
}

.local-copy {
    max-width: none;
}

.online-seo,
.company-seo,
main > .local-copy {
    margin-top: clamp(8px, 1.4vw, 20px);
    padding: clamp(34px, 4vw, 54px) max(22px, calc((100vw - 1080px) / 2 + 22px));
    background:
        linear-gradient(135deg, rgba(244, 245, 249, 0.96), rgba(255, 255, 255, 0.98)),
        radial-gradient(circle at top right, rgba(216, 187, 90, 0.13), transparent 34%);
    border-top: 1px solid rgba(47, 67, 88, 0.08);
    border-bottom: 1px solid rgba(47, 67, 88, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.online-seo h2,
.company-seo h2,
main > .local-copy h2 {
    max-width: 880px;
}

.online-seo p,
.company-seo p,
main > .local-copy p {
    max-width: 920px;
}

.city-visual-section {
    padding-bottom: clamp(20px, 3vw, 36px);
}

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

.faq-section {
    padding-top: 0;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 920px;
}

.faq-list details {
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.faq-list summary {
    color: var(--navy-dark);
    cursor: pointer;
    font-weight: 900;
}

.faq-list p {
    margin: 12px 0 0;
    color: var(--muted);
}

@media (max-width: 1180px) {
    .service-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        margin-left: 22px;
        margin-right: 22px;
    }
}

@media (max-width: 960px) {
    .topbar-inner,
    .site-nav {
        align-items: flex-start;
        flex-direction: column;
    }

    .intro,
    .why,
    .price-hero,
    .price-split,
    .quote-section,
    .company-hero,
    .company-split,
    .company-dark,
    .contact-layout,
    .map-section,
    .online-hero,
    .online-dark,
    .online-audience,
    .global-final-cta,
    .visual-split,
    .contact,
    .two-col {
        grid-template-columns: 1fr;
    }

    .company-card-grid,
    .price-factor-grid,
    .steps-grid,
    .company-steps-grid,
    .company-service-list,
    .company-text-panel,
    .company-reason-grid,
    .online-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-visual {
        min-height: auto;
    }

    .company-visual::before {
        display: none;
    }

    .visual-window {
        margin: 0;
    }

    .visual-photo::before {
        inset: 16px -10px -12px 16px;
    }

    .company-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-cta,
    .online-cta,
    .company-final {
        align-items: flex-start;
        flex-direction: column;
    }

    .company-cta .actions,
    .contact-cta .actions,
    .online-cta .actions,
    .global-final-actions {
        justify-content: flex-start;
        min-width: 0;
    }

    .service-strip,
    .service-card-grid,
    .price-reasons,
    .city-card-grid,
    .site-footer {
        grid-template-columns: 1fr;
    }

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

    .city-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-strip {
        margin-top: 0;
    }

    .pricing-card {
        min-height: auto;
    }

    .pricing-card h3 {
        min-height: 54px;
    }

    .pricing-page .pricing-card h3 {
        min-height: auto;
    }

    .pricing-extra ul {
        columns: 1;
    }
}

@media (max-width: 640px) {
    .topbar-inner {
        align-items: center;
        flex-direction: row;
        justify-content: flex-start;
        gap: 10px 16px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .topbar-inner span,
    .topbar .facebook-link {
        display: none;
    }

    .site-nav {
        gap: 16px;
        min-height: auto;
        padding-top: 14px;
        padding-bottom: 14px;
    }

    .wordmark {
        align-items: flex-start;
        flex-direction: column;
    }

    .logo-image img {
        width: 200px;
        max-width: 82vw;
    }

    .footer-logo img {
        width: 170px;
    }

    .service-strip {
        grid-template-columns: 1fr;
        margin-left: 0;
        margin-right: 0;
    }

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

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

    .quote-fieldset {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .quote-fieldset legend {
        float: none;
        margin: 0;
    }

    .service-strip article {
        min-height: auto;
        padding: 22px;
    }

    .wordmark span {
        font-size: 34px;
    }

    .wordmark small {
        margin: 4px 0 0;
        font-size: 9px;
        letter-spacing: 4px;
    }

    .nav-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px 12px;
        font-size: 11px;
    }

    .nav-links a {
        min-height: 34px;
        padding: 6px 0;
    }

    .nav-links .nav-cta {
        grid-column: 1 / -1;
        min-height: 40px;
        padding: 9px 14px;
    }

    .hero,
    .hero-inner {
        min-height: 560px;
    }

    .hero-panel {
        padding: 24px;
    }

    .btn {
        width: 100%;
    }

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

    .feature-grid,
    .pricing-grid,
    .price-factor-grid,
    .city-card-grid,
    .company-card-grid,
    .price-reasons,
    .company-benefits,
    .steps-grid,
    .visual-grid,
    .contact-channel-grid,
    .online-card-grid,
    .online-progress,
    .online-benefits,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .price-hero {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .pricing-page .pricing-card {
        min-height: auto;
    }

    .contact-channel-grid article:first-child {
        grid-column: auto;
    }

    .map-section {
        min-height: auto;
    }

    .map-copy {
        max-width: none;
    }

    .map-card,
    .sofina-map {
        min-height: 360px;
    }

    .map-marker {
        width: 68px;
        height: 68px;
    }

    .map-label-main {
        left: 38%;
    }

    .company-card-grid article,
    .steps-grid article {
        min-height: auto;
    }

    .company-hero {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .local-hero {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .local-seo-copy img {
        position: static;
    }

    .online-hero {
        padding-top: 44px;
        padding-bottom: 44px;
    }

    .global-final-cta {
        padding-top: 38px;
        padding-bottom: 42px;
    }

    .online-seo,
    .company-seo,
    main > .local-copy {
        margin-top: 18px;
        padding-top: 34px;
        padding-bottom: 38px;
    }

    .global-final-actions .btn {
        width: 100%;
    }

    .online-visual::before {
        display: none;
    }

    .online-device {
        margin: 0;
    }

    .visual-photo img {
        aspect-ratio: 1.18 / 1;
    }

    .visual-note {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -34px 18px 0;
    }

    .insight-strip span {
        width: 100%;
        justify-content: center;
    }

    .online-timeline article {
        grid-template-columns: 1fr;
    }

    .online-card-grid article {
        min-height: auto;
    }

    .company-service-list,
    .company-text-panel,
    .company-pill-grid,
    .company-reason-grid,
    .company-steps-grid {
        grid-template-columns: 1fr;
    }

    .visual-metric {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}
