:root {
    --terms-max-width: 1320px;
    --terms-border: #e8e8e8;
    --terms-text: #111111;
    --terms-muted: #6d6d6d;
    --terms-soft: #f7f7f7;
    --terms-soft-2: #fbf6f6;
    --terms-accent: #d91f26;
    --terms-accent-dark: #b5161d;
    --terms-white: #ffffff;
    --terms-topnav-height: 76px;
    --terms-sidebar-top: 118px;
}

html {
    scroll-behavior: smooth;
}

body.page-template-default .terms-content h5,
body .terms-content h5 {
    scroll-margin-top: 140px;
}

.freedom-terms-page {
    color: var(--terms-text);
    background: #fff;
    padding-bottom: 72px;
}

/* HERO */
.terms-hero {
    padding: 34px 24px 18px;
    background: var(--terms-soft-2);
    border-bottom: 1px solid #f1e3e3;
}

.terms-hero__inner {
    max-width: var(--terms-max-width);
    margin: 0 auto;
    padding: 28px 34px;
    background: #fff9f9;
    border: 1px solid #f0d8d8;
    position: relative;
}

.terms-hero__inner::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 10px;
    background: linear-gradient(180deg, var(--terms-accent) 0%, #ff6a4e 100%);
}

.terms-hero__ghost {
    display: block;
    max-width: 980px;
    padding-left: 14px;
    font-size: clamp(19px, 2.9vw, 39px);
    line-height: 0.98;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #111216;
}

/* TOP NAV */
.terms-topnav {
    background: #fff;
    border-bottom: 1px solid var(--terms-border);
}

.terms-topnav__inner {
    max-width: var(--terms-max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 34px;
    align-items: center;
    min-height: var(--terms-topnav-height);
}

.terms-topnav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    font-size: 17px;
    font-weight: 800;
    color: #1c1c1c;
    text-decoration: none;
    transition: color 0.2s ease;
}

.terms-topnav__link:hover {
    color: var(--terms-accent);
}

.terms-topnav__link.is-current {
    color: #fff;
    background: var(--terms-accent);
    padding: 0 20px;
}

.terms-topnav__link.is-current::after {
    display: none;
}

/* UVJETI LAYOUT */
.terms-layout {
    max-width: var(--terms-max-width);
    margin: 0 auto;
    padding: 34px 24px 0;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.terms-sidebar {
    position: sticky;
    top: var(--terms-sidebar-top);
    align-self: start;
}

.terms-sidebar__inner {
    position: sticky;
    top: var(--terms-sidebar-top);
    max-height: calc(100vh - var(--terms-sidebar-top) - 24px);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 22px 24px;
    background: #fff;
    border: 1px solid #f0dede;
}

.terms-sidebar__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.terms-sidebar__item + .terms-sidebar__item {
    margin-top: 14px;
}

.terms-sidebar a {
    display: block;
    position: relative;
    padding: 6px 0 6px 18px;
    color: #5b5e66;
    text-decoration: none;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 800;
    transition: color 0.2s ease, transform 0.2s ease;
}

.terms-sidebar a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 8px;
    width: 4px;
    background: transparent;
    transition: background 0.2s ease;
}

.terms-sidebar a:hover {
    color: var(--terms-text);
    transform: translateX(2px);
}

.terms-sidebar a:hover::before {
    background: #f0b3b6;
}

.terms-sidebar a.is-active {
    color: var(--terms-accent);
}

.terms-sidebar a.is-active::before {
    background: var(--terms-accent);
}

.terms-content {
    min-width: 0;
}

.terms-content__inner {
    position: relative;
    background: #fff;
    border: 1px solid var(--terms-border);
    padding: 46px 52px;
}

.terms-content__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, var(--terms-accent) 0%, #ff6e52 100%);
}

.terms-content__inner > *:first-child {
    margin-top: 0;
}

.terms-content h1 {
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1;
    margin: 0 0 24px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--terms-text);
}

.terms-content h2,
.terms-content h3,
.terms-content h4 {
    font-weight: 800;
    color: var(--terms-text);
}

.terms-content h5 {
    position: relative;
    font-size: 22px;
    line-height: 1.3;
    margin: 42px 0 14px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: var(--terms-text);
    text-transform: uppercase;
}

.terms-content h5::before {
    content: "";
    display: block;
    width: 38px;
    height: 4px;
    margin-bottom: 12px;
    background: var(--terms-accent);
}

.terms-content h6 {
    font-size: 18px;
    font-weight: 800;
}

.terms-content p,
.terms-content li {
    font-size: 19px;
    line-height: 1.8;
    color: #2b2d33;
}

.terms-content p {
    margin: 0 0 20px;
}

.terms-content ul,
.terms-content ol {
    margin: 0 0 28px 24px;
    padding: 0;
}

.terms-content li + li {
    margin-top: 10px;
}

.terms-content strong {
    font-weight: 900;
}

.terms-content a {
    color: var(--terms-accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.terms-content blockquote {
    margin: 34px 0;
    padding: 24px 26px;
    border-left: 6px solid var(--terms-accent);
    background: #fff8f8;
}

.terms-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 28px 0;
    font-size: 17px;
}

.terms-content table th,
.terms-content table td {
    border: 1px solid var(--terms-border);
    padding: 14px 16px;
    text-align: left;
}

.terms-content table th {
    background: #faf4f4;
    font-weight: 800;
}

.terms-content hr {
    border: 0;
    border-top: 1px solid var(--terms-border);
    margin: 38px 0;
}

/* IMPRESSUM */
.freedom-impressum-page {
    padding-bottom: 80px;
}

.impressum-layout {
    max-width: var(--terms-max-width);
    margin: 0 auto;
    padding: 34px 24px 0;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.impressum-sidebar {
    border-right: 1px solid var(--terms-border);
    padding-right: 34px;
}

.impressum-info-block + .impressum-info-block {
    margin-top: 54px;
}

.impressum-info-block h3 {
    margin: 0 0 18px;
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--terms-text);
}

.impressum-info-block p {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.6;
    color: #2b2d33;
}

.impressum-main {
    min-width: 0;
}

.impressum-section + .impressum-section {
    margin-top: 28px;
}

.impressum-section__title {
    margin: 0 0 18px;
    font-size: clamp(22px, 2.2vw, 30px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #d9d9dc;
}

.impressum-people {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 56px;
}

.impressum-person {
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 26px 0;
    border-top: 1px solid var(--terms-border);
}

.impressum-person__image {
    width: 84px;
    height: 84px;
    background: #ececef;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.impressum-person__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impressum-person__image span {
    font-size: 28px;
    font-weight: 800;
    color: var(--terms-muted);
}

.impressum-person__content h3 {
    margin: 0 0 5px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--terms-text);
}

.impressum-person__role {
    margin: 0 0 3px;
    font-size: 14px;
    line-height: 1.35;
    font-style: italic;
    color: #7b7b7b;
}

.impressum-person__email {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    color: #8a8d93;
}

@media (max-width: 1100px) {
    .terms-layout,
    .impressum-layout {
        grid-template-columns: 280px minmax(0, 1fr);
        gap: 28px;
    }

    .impressum-people {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .terms-content__inner {
        padding: 36px 32px;
    }

    .terms-content p,
    .terms-content li {
        font-size: 18px;
    }
}

@media (max-width: 900px) {
    .terms-layout,
    .impressum-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .terms-sidebar,
    .terms-sidebar__inner {
        position: relative;
        top: 0;
        max-height: none;
        overflow: visible;
    }

    .impressum-sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--terms-border);
        padding-right: 0;
        padding-bottom: 26px;
    }

    .terms-content__inner {
        padding: 30px 24px;
    }
}

@media (max-width: 640px) {
    .terms-hero {
        padding: 20px 18px 14px;
    }

    .terms-hero__inner {
        padding: 20px 20px 20px 22px;
    }

    .terms-hero__ghost {
    font-size: clamp(20px, 7vw, 30px);
    line-height: 1.14;
}

    .terms-topnav {
    overflow: hidden;
}

.terms-topnav__inner {
    max-width: var(--terms-max-width);
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    align-items: center;
    min-height: auto;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.terms-topnav__inner::-webkit-scrollbar {
    display: none;
}

.terms-topnav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 42px;
    padding: 0 14px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
}

.terms-topnav__link.is-current {
    padding: 0 14px;
}

    .terms-layout,
    .impressum-layout {
        padding: 22px 18px 0;
    }

    .terms-content__inner {
        padding: 24px 18px;
    }

    .terms-content h5 {
        font-size: 20px;
        margin-top: 34px;
        margin-bottom: 12px;
    }

    .terms-content p,
    .terms-content li {
        font-size: 16px;
        line-height: 1.72;
    }

    .impressum-info-block h3 {
        font-size: 22px;
    }

    .impressum-info-block p {
        font-size: 16px;
    }

    .impressum-section__title {
        font-size: clamp(30px, 11vw, 44px);
        margin-bottom: 18px;
    }

    .impressum-person {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 14px;
        padding: 18px 0;
    }

    .impressum-person__image {
        width: 68px;
        height: 68px;
    }

    .impressum-person__content h3 {
        font-size: 17px;
    }

    .impressum-person__role,
    .impressum-person__email {
        font-size: 13px;
        line-height: 1.3;
    }
}

.freedom-ads-page {
    padding-bottom: 90px;
}

.ads-layout {
    max-width: var(--terms-max-width);
    margin: 0 auto;
    padding: 40px 24px 0;
}

.ads-intro {
    display: grid;
    grid-template-columns: minmax(0, 460px) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
    margin-bottom: 46px;
    padding-bottom: 8px;
}

.ads-brand {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--terms-accent);
}

.ads-intro__content h1 {
    margin: 0 0 18px;
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.18;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--terms-text);
    max-width: 560px;
}

.ads-intro__content p {
    margin: 0;
    max-width: 540px;
    font-size: 19px;
    line-height: 1.75;
    color: #2b2d33;
}

.ads-intro__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ads-illustration--media {
    position: relative;
    width: min(100%, 620px);
    height: 360px;
    border: 1px solid var(--terms-border);
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    overflow: hidden;
}

.ads-illustration--media::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 18%, rgba(217, 31, 38, 0.08), transparent 18%),
        radial-gradient(circle at 20% 82%, rgba(217, 31, 38, 0.05), transparent 18%);
    pointer-events: none;
}

.ads-ui {
    position: absolute;
    left: 26px;
    top: 30px;
    width: 69%;
    height: 76%;
    border: 1px solid #dfe3e8;
    background: #fff;
}

.ads-ui__top {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 40px;
    padding: 0 14px;
    border-bottom: 1px solid #eceef2;
    background: #fcfcfc;
}

.ads-ui__top span {
    display: block;
    width: 10px;
    height: 10px;
    background: #d1d5db;
}

.ads-ui__top span:first-child {
    background: var(--terms-accent);
}

.ads-ui__sidebar {
    position: absolute;
    left: 0;
    top: 41px;
    bottom: 0;
    width: 82px;
    padding: 16px 12px;
    border-right: 1px solid #eceef2;
    display: grid;
    align-content: start;
    gap: 14px;
    background: #fff;
}

.ads-ui__sidebar span {
    display: block;
    height: 10px;
    background: linear-gradient(90deg, var(--terms-accent) 0 16px, #e4e7eb 16px 100%);
}

.ads-ui__main {
    position: absolute;
    left: 83px;
    right: 0;
    top: 41px;
    bottom: 0;
    padding: 16px;
}

.ads-ui__hero {
    width: 100%;
    height: 88px;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e8ebf0 100%);
}

.ads-ui__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.ads-ui__row span {
    display: block;
    height: 38px;
    background: #f3f5f8;
}

.ads-ui__chart {
    display: flex;
    align-items: end;
    gap: 10px;
    height: 74px;
}

.ads-ui__chart i {
    display: block;
    width: 24px;
    background: linear-gradient(180deg, var(--terms-accent) 0%, #ff7358 100%);
}

.ads-ui__chart i:nth-child(1) { height: 30px; }
.ads-ui__chart i:nth-child(2) { height: 48px; }
.ads-ui__chart i:nth-child(3) { height: 66px; }
.ads-ui__chart i:nth-child(4) { height: 42px; }

.ads-format {
    position: absolute;
    border: 1px solid #dfe3e8;
    background: #fff;
    padding: 10px 12px;
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.05);
}

.ads-format strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    color: var(--terms-text);
}

.ads-format span {
    display: block;
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--terms-muted);
}

.ads-format--billboard {
    top: 30px;
    right: 28px;
    width: 150px;
    border-top: 5px solid var(--terms-accent);
}

.ads-format--halfpage {
    top: 110px;
    right: 40px;
    width: 112px;
    min-height: 126px;
    border-left: 5px solid var(--terms-accent);
}

.ads-format--mobile {
    left: 150px;
    bottom: 26px;
    width: 132px;
    border-bottom: 5px solid var(--terms-accent);
}

.ads-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #fff;
}

.ads-badge--reach {
    left: 26px;
    bottom: 22px;
    background: var(--terms-accent);
}

.ads-badge--video {
    right: 176px;
    bottom: 30px;
    background: #111216;
}

.ads-badge--native {
    right: 24px;
    bottom: 20px;
    background: #ff7358;
}

.ads-table-section + .ads-table-section {
    margin-top: 34px;
}

.ads-table-section h2 {
    margin: 0 0 18px;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 900;
    text-align: center;
    color: var(--terms-text);
}

.ads-table-wrap {
    border: 1px solid var(--terms-border);
    background: #fff;
}

.ads-table {
    width: 100%;
    border-collapse: collapse;
}

.ads-table thead th {
    padding: 16px 14px;
    text-align: left;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    background: linear-gradient(90deg, var(--terms-accent) 0%, #ff6b51 100%);
    border-right: 1px solid rgba(255,255,255,0.14);
}

.ads-table thead th:last-child {
    border-right: 0;
}

.ads-table tbody td {
    padding: 15px 14px;
    border-top: 1px solid var(--terms-border);
    font-size: 15px;
    line-height: 1.45;
    color: #2b2d33;
    vertical-align: top;
}

.ads-table tbody tr:nth-child(even) td {
    background: #fcfcfc;
}

.ads-meta {
    padding: 34px 0 10px;
    text-align: center;
}

.ads-meta p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.5;
    color: #5d6168;
}

.ads-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    margin-top: 16px;
    padding: 0 22px;
    background: var(--terms-accent);
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ads-download:hover {
    background: var(--terms-accent-dark);
    color: #fff;
}

.ads-contact {
    padding-top: 26px;
    text-align: center;
}

.ads-contact h2 {
    margin: 0 0 14px;
    font-size: clamp(26px, 2.8vw, 38px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--terms-text);
}

.ads-contact a {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
    color: var(--terms-accent);
    text-decoration: none;
}

.ads-contact a:hover {
    text-decoration: underline;
}

@media (max-width: 980px) {
    .ads-intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ads-intro__content p {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .freedom-ads-page {
        padding-bottom: 60px;
    }

    .ads-layout {
        padding: 24px 16px 0;
    }

    .ads-brand {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .ads-intro {
        gap: 24px;
        margin-bottom: 30px;
    }

    .ads-intro__content h1 {
        font-size: clamp(26px, 8.5vw, 36px);
        line-height: 1.14;
        margin-bottom: 14px;
    }

    .ads-intro__content p {
        font-size: 16px;
        line-height: 1.68;
    }

    .ads-intro__visual {
        margin-top: 4px;
    }

    .ads-illustration--media {
        height: 250px;
    }

    .ads-ui {
        left: 14px;
        top: 18px;
        width: 72%;
        height: 70%;
    }

    .ads-ui__sidebar {
        width: 56px;
        padding: 12px 8px;
        gap: 10px;
    }

    .ads-ui__main {
        left: 57px;
        padding: 12px;
    }

    .ads-ui__hero {
        height: 54px;
        margin-bottom: 10px;
    }

    .ads-ui__row {
        gap: 8px;
        margin-bottom: 12px;
    }

    .ads-ui__row span {
        height: 24px;
    }

    .ads-ui__chart {
        gap: 7px;
        height: 46px;
    }

    .ads-ui__chart i {
        width: 14px;
    }

    .ads-format {
        padding: 8px 9px;
    }

    .ads-format strong {
        font-size: 11px;
    }

    .ads-format span {
        font-size: 9px;
    }

    .ads-format--billboard {
        top: 16px;
        right: 12px;
        width: 102px;
    }

    .ads-format--halfpage {
        top: 78px;
        right: 16px;
        width: 78px;
        min-height: 82px;
    }

    .ads-format--mobile {
        left: 82px;
        bottom: 14px;
        width: 92px;
    }

    .ads-badge {
        min-height: 24px;
        padding: 0 8px;
        font-size: 9px;
    }

    .ads-badge--reach {
        left: 12px;
        bottom: 12px;
    }

    .ads-badge--video {
        right: 98px;
        bottom: 16px;
    }

    .ads-badge--native {
        right: 10px;
        bottom: 10px;
    }

    .ads-table-section {
        margin-top: 28px;
    }

    .ads-table-section h2 {
        font-size: 22px;
        line-height: 1.1;
        margin: 0 0 14px;
        text-align: center;
    }

    .ads-table-wrap {
        border: 0;
        background: transparent;
    }

    .ads-table {
        width: 100%;
        display: block;
    }

    .ads-table thead {
        display: none;
    }

    .ads-table tbody {
        display: grid;
        gap: 14px;
    }

    .ads-table tr {
        display: block;
        border: 1px solid var(--terms-border);
        background: #fff;
        padding: 0;
    }

    .ads-table tbody td {
        display: block;
        padding: 12px 14px;
        border-top: 1px solid var(--terms-border);
        font-size: 14px;
        line-height: 1.45;
        background: #fff !important;
    }

    .ads-table tbody td:first-child {
        border-top: 0;
        font-weight: 800;
        color: var(--terms-text);
        background: #fff8f8 !important;
    }

    .ads-table tbody td::before {
        display: block;
        margin-bottom: 4px;
        font-size: 11px;
        line-height: 1.2;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--terms-accent);
    }

    .ads-table tbody td:nth-child(1)::before {
        content: "Naziv formata";
    }

    .ads-table tbody td:nth-child(2)::before {
        content: "Dimenzije formata";
    }

    .ads-table tbody td:nth-child(3)::before {
        content: "Bruto CPM (EUR)";
    }

    .ads-meta {
        padding: 28px 16px 10px;
    }

    .ads-meta p {
        font-size: 14px;
        line-height: 1.45;
    }

    .ads-download {
        min-height: 46px;
        padding: 0 18px;
        font-size: 12px;
    }

    .ads-contact {
        padding: 24px 16px 0;
    }

    .ads-contact h2 {
        font-size: 22px;
        line-height: 1.15;
    }

    .ads-contact a {
        font-size: 20px;
        word-break: break-word;
    }
}

.freedom-contact-page {
    padding-bottom: 72px;
}

.contact-layout {
    max-width: var(--terms-max-width);
    margin: 0 auto;
    padding: 32px 24px 0;
}

.contact-intro {
    margin-bottom: 24px;
}

.contact-intro__content {
    border: 1px solid var(--terms-border);
    background: #fff;
    padding: 28px 40px;
}

.contact-kicker {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--terms-accent);
}

.contact-intro__content h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--terms-text);
}

.contact-intro__content p {
    margin: 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.65;
    color: #2b2d33;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.contact-card {
    border: 1px solid var(--terms-border);
    background: #fff;
    padding: 26px 28px;
}

.contact-card__eyebrow {
    margin-bottom: 12px;
    font-size: 11px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--terms-accent);
}

.contact-card h2 {
    margin: 0 0 14px;
    font-size: clamp(22px, 2vw, 28px);
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--terms-text);
}

.contact-card__text {
    margin: 0 0 18px;
    font-size: 15px;
    line-height: 1.6;
    color: #3a3d43;
}

.contact-card__meta {
    margin-bottom: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--terms-border);
}

.contact-card__meta p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.55;
    color: #4f5560;
}

.contact-card__meta p strong {
    color: var(--terms-text);
}

.contact-card__email {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    background: var(--terms-accent);
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.contact-card__email:hover {
    background: var(--terms-accent-dark);
    color: #fff;
}

@media (max-width: 640px) {
    .freedom-contact-page {
        padding-bottom: 56px;
    }

    .contact-layout {
        padding: 24px 16px 0;
    }

    .contact-intro {
        margin-bottom: 18px;
    }

    .contact-intro__content {
        padding: 22px 20px;
    }

    .contact-kicker {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .contact-intro__content h1 {
        font-size: clamp(24px, 8vw, 32px);
        margin-bottom: 10px;
    }

    .contact-intro__content p {
        font-size: 15px;
        line-height: 1.58;
    }

    .contact-card {
        padding: 22px 18px;
    }

    .contact-card h2 {
        font-size: 20px;
        line-height: 1.24;
    }

    .contact-card__meta p {
        font-size: 14px;
        line-height: 1.5;
    }

    .contact-card__email {
        width: 100%;
        min-height: 42px;
        font-size: 12px;
    }
}