/* ═══════════════════════════════════════════════════════════════
   PATLATBET.NET — UI (yeni.png arka plan üzerinde)
   ═══════════════════════════════════════════════════════════════ */

:root {
    --bg: #000000;
    --surface: rgba(8, 18, 42, 0.72);
    --surface-solid: #08122a;
    --surface-hover: rgba(14, 32, 72, 0.85);
    --border: rgba(56, 130, 255, 0.22);
    --border-hover: rgba(56, 130, 255, 0.45);
    --blue: #1a74ff;
    --blue-light: #3d9bff;
    --blue-dark: #0652e0;
    --blue-glow: rgba(26, 116, 255, 0.35);
    --text: #ffffff;
    --text-muted: #a8b8e8;
    --text-dim: #7a8cb8;
    --success: #22c55e;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --header-h: 80px;
    --viewport-min: 100vh;
    --viewport-min: 100dvh;
    --content-max: 58%;
    --pad: clamp(16px, 3.5vw, 48px);
    --font: "Inter", system-ui, -apple-system, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-panel: 0 4px 24px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    --shadow-glow: 0 0 32px var(--blue-glow);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
    min-height: var(--viewport-min);
    display: flex;
    flex-direction: column;
    -webkit-font-smoothing: antialiased;
}

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

/* ── Arka plan (yeni.png) ── */
.site-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: var(--bg) url("../../yeni.png") no-repeat right center / auto 100%;
}

.site-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #000 0%,
        #000 26%,
        rgba(0, 0, 0, 0.55) 40%,
        transparent 54%
    );
}

.header,
.main,
.footer {
    position: relative;
    z-index: 1;
}

.main {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
}

.footer {
    flex-shrink: 0;
}

.text-blue {
    color: var(--blue-light);
}

/* ── İkonlar ── */
.ico {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    display: block;
}

.ico--sm {
    width: 1.125rem;
    height: 1.125rem;
}

/* ── Butonlar ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
    white-space: nowrap;
}

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

.btn:active {
    transform: translateY(0);
}

.btn--primary {
    background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    box-shadow: 0 0 40px rgba(26, 116, 255, 0.5);
}

.btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
}

.btn--outline {
    background: rgba(6, 16, 40, 0.65);
    border-color: rgba(26, 116, 255, 0.5);
    color: #fff;
    backdrop-filter: blur(8px);
}

.btn--outline:hover {
    border-color: var(--blue-light);
    background: rgba(6, 16, 40, 0.85);
}

.btn--lg {
    padding: 1rem 1.75rem;
    font-size: 0.875rem;
}

/* ── Panel ── */
.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-panel);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.header {
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    height: 100%;
    max-width: 100%;
    padding: 0 var(--pad);
}

.brand {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    font-style: italic;
    font-weight: 900;
    font-size: 1.75rem;
    letter-spacing: -0.04em;
    line-height: 1;
    flex-shrink: 0;
}

.brand__patlat {
    color: #fff;
}

.brand__bet {
    color: var(--blue-light);
}

.brand__tld {
    width: 100%;
    font-size: 0.5em;
    text-align: right;
    color: rgba(255, 255, 255, 0.9);
    margin-top: -0.2em;
    padding-right: 0.15em;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex: 1;
    justify-content: center;
}

.header__nav-link {
    padding: 0.5rem 0.85rem;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}

.header__nav-link:hover,
.header__nav-link.is-active {
    color: #fff;
    background: rgba(26, 116, 255, 0.12);
}

.header__nav-link--icon {
    display: flex;
    padding: 0.5rem;
    color: var(--blue-light);
}

.header__nav-link--icon .ico {
    width: 1.125rem;
    height: 1.125rem;
}

.header__actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════
   MAIN LAYOUT
   ═══════════════════════════════════════ */
.main__hero {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    max-width: var(--content-max);
    min-height: 0;
    padding: 0 var(--pad);
}

.main__panels {
    flex-shrink: 0;
    width: 100%;
    margin-top: auto;
    padding: 0 var(--pad) 1rem;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    padding: clamp(1.5rem, 4vh, 2.5rem) 0 clamp(1rem, 3vh, 2rem);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 20px rgba(26, 116, 255, 0.4);
}

.hero__badge-icon .ico {
    width: 1rem;
    height: 1rem;
    color: #fff;
}

.hero__title {
    margin: 1.5rem 0 0.75rem;
    font-style: italic;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero__title-line {
    display: block;
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    color: #fff;
}

.hero__title-tld {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    text-align: left;
    padding-left: 0.1em;
    color: rgba(255, 255, 255, 0.95);
}

.hero__lead {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    max-width: 32rem;
}

.hero__lead em {
    font-style: normal;
    font-weight: 700;
    color: var(--blue-light);
}

.hero__promo {
    margin: 1.75rem 0 1.5rem;
}

.hero__promo-line {
    display: block;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
}

.hero__promo-line--accent {
    color: var(--blue-light);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

/* ═══════════════════════════════════════
   HİZMET KARTLARI — tam genişlik
   ═══════════════════════════════════════ */
.services {
    padding-bottom: 0.75rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    min-height: 5.5rem;
    padding: 1.25rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-panel);
    backdrop-filter: blur(12px);
    transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.service-card:hover {
    border-color: var(--border-hover);
    background: var(--surface-hover);
    transform: translateY(-3px);
}

.service-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(26, 116, 255, 0.2) 0%, rgba(6, 30, 80, 0.5) 100%);
    border: 1px solid rgba(26, 116, 255, 0.25);
}

.service-card__icon .ico {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--blue-light);
}

.service-card__body h3 {
    margin: 0 0 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.service-card__body p {
    margin: 0;
    font-size: 0.6875rem;
    line-height: 1.4;
    color: var(--text-muted);
}

/* ═══════════════════════════════════════
   GÜVEN & DESTEK — tam genişlik
   ═══════════════════════════════════════ */
.trust {
    display: grid;
    grid-template-columns: 1fr minmax(260px, 300px);
    gap: 0.75rem;
}

.trust__features {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-panel);
}

.trust-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.125rem 1rem;
    border-right: 1px solid var(--border);
    transition: background 0.2s;
}

.trust-card:nth-child(6n) {
    border-right: none;
}

.trust-card:hover {
    background: rgba(26, 116, 255, 0.06);
}

.trust-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(26, 116, 255, 0.18) 0%, rgba(6, 30, 80, 0.45) 100%);
    border: 1px solid rgba(26, 116, 255, 0.2);
}

.trust-card__icon .ico {
    width: 1.625rem;
    height: 1.625rem;
    color: var(--blue-light);
}

.trust-card__body h3 {
    margin: 0 0 0.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.trust-card__body p {
    margin: 0;
    font-size: 0.625rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.support-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.125rem;
    background: linear-gradient(145deg, rgba(12, 36, 88, 0.9) 0%, rgba(4, 12, 32, 0.95) 100%);
    border: 1px solid var(--border-hover);
    border-radius: var(--radius);
    box-shadow: var(--shadow-panel), var(--shadow-glow);
    backdrop-filter: blur(12px);
}

.support-card__status {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 10px var(--success);
}

.support-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    box-shadow: 0 4px 20px var(--blue-glow);
}

.support-card__avatar .ico {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.support-card__body h3 {
    margin: 0 0 0.15rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.support-card__body p {
    margin: 0 0 0.75rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.support-card__body .btn {
    padding: 0.625rem 1.125rem;
    font-size: 0.6875rem;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
    padding: 0 var(--pad) clamp(1rem, 2vh, 2rem);
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.25rem;
    margin-bottom: 0.75rem;
    padding: 0.875rem 1.25rem;
}

.footer__nav a {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: var(--blue-light);
}

.footer__inner {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 0.75rem;
}

.footer__payments {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(110px, 14vh, 150px);
    padding: 1.25rem 1.75rem;
    overflow: hidden;
}

.payment-logos {
    display: block;
    width: 100%;
    height: clamp(88px, 11vh, 128px);
    object-fit: contain;
    object-position: center;
    transform: scaleX(1.70);
    transform-origin: center;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
}

.footer__legal-icon .ico {
    width: 2rem;
    height: 2rem;
    color: var(--blue-light);
    flex-shrink: 0;
}

.footer__legal p {
    margin: 0;
    flex: 1;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--text-dim);
}

.footer__age {
    flex-shrink: 0;
    width: 2.75rem;
    height: 2.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
}

/* ═══════════════════════════════════════
   MAKALE SAYFALARI
   ═══════════════════════════════════════ */
.main--article {
    padding: clamp(1.5rem, 3vh, 2.5rem) var(--pad) clamp(1rem, 2vh, 2rem);
}

.article {
    width: 100%;
}

.article--wide {
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1.25rem;
    padding: 0;
    list-style: none;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.breadcrumb__item + .breadcrumb__item::before {
    content: "/";
    margin-right: 0.5rem;
    color: var(--text-dim);
}

.breadcrumb__item a {
    color: var(--blue-light);
    transition: color 0.2s;
}

.breadcrumb__item a:hover {
    color: #fff;
}

.breadcrumb__item--current {
    color: var(--text-dim);
}

.article__content {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.article__header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.article__category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.4rem 0.85rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue-light);
    background: rgba(26, 116, 255, 0.12);
    border: 1px solid rgba(26, 116, 255, 0.25);
    border-radius: var(--radius-sm);
}

.article__category .ico {
    width: 1rem;
    height: 1rem;
}

.article__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.article__lead {
    margin: 0;
    font-size: clamp(1rem, 1.6vw, 1.125rem);
    line-height: 1.65;
    color: var(--text-muted);
}

.article__body h2 {
    margin: 2rem 0 0.875rem;
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: #fff;
}

.article__body p {
    margin: 0 0 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.article__list {
    margin: 0 0 1.25rem;
    padding-left: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.article__list li + li {
    margin-top: 0.5rem;
}

.article__list--ordered {
    padding-left: 1.5rem;
}

.article__quote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--blue);
    background: rgba(26, 116, 255, 0.08);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.65;
    color: var(--text-muted);
}

.article__footer {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.article__cta h2 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 800;
}

.article__cta p {
    margin: 0 0 1.25rem;
    color: var(--text-muted);
}

.article__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
}

/* ── Promosyon kartları ── */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.promo-card {
    position: relative;
    padding: 1.375rem 1.25rem;
    background: rgba(6, 16, 40, 0.55);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.promo-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.promo-card--featured {
    border-color: rgba(26, 116, 255, 0.45);
    background: linear-gradient(145deg, rgba(26, 116, 255, 0.12) 0%, rgba(6, 16, 40, 0.65) 100%);
}

.promo-card--accent {
    border-color: rgba(61, 155, 255, 0.35);
}

.promo-card__badge {
    position: absolute;
    top: 0.875rem;
    right: 0.875rem;
    padding: 0.25rem 0.625rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue-dark) 100%);
    border-radius: 4px;
}

.promo-card__title {
    margin: 0 0 0.5rem;
    padding-right: 4rem;
    font-size: 1.0625rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.promo-card__highlight {
    margin: 0 0 0.875rem;
    font-size: 0.9375rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--blue-light);
}

.promo-card__list {
    margin: 0;
    padding-left: 1.125rem;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--text-muted);
}

.promo-card__list li + li {
    margin-top: 0.35rem;
}

.promo-note {
    padding: 1.25rem 1.5rem;
}

.promo-note h2 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.promo-note p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ── FAQ (anasayfa) ── */
.faq {
    margin-top: 0.75rem;
    padding: 1.25rem 1.5rem;
}

.faq__title {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.faq__list {
    display: grid;
    gap: 0.5rem;
}

.faq__item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(6, 16, 40, 0.45);
    overflow: hidden;
}

.faq__item summary {
    padding: 0.875rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

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

.faq__item p {
    margin: 0;
    padding: 0 1rem 1rem;
    font-size: 0.8125rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.faq__item p a {
    color: var(--blue-light);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1400px) {
    .services__grid {
        grid-template-columns: repeat(5, 1fr);
    }

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

    .trust-card {
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .trust-card:nth-child(6n) {
        border-right: 1px solid var(--border);
    }

    .trust-card:nth-child(3n) {
        border-right: none;
    }

    .trust-card:nth-child(n + 4) {
        border-bottom: none;
    }
}

@media (max-width: 1200px) {
    :root {
        --content-max: 100%;
    }

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

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

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

    .trust-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .trust-card:nth-child(2n) {
        border-right: 1px solid var(--border);
    }

    .trust-card:nth-child(2n) {
        border-right: none;
    }

    .trust-card:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 900px) {
    .header__nav {
        display: none;
    }

    .site-bg {
        background-size: auto 50vh;
        background-position: right top;
    }

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

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

@media (max-width: 600px) {
    .header__inner {
        flex-wrap: wrap;
        height: auto;
        padding-top: 0.875rem;
        padding-bottom: 0.875rem;
    }

    .header {
        height: auto;
    }

    .services__grid,
    .trust__features {
        grid-template-columns: 1fr;
    }

    .trust-card {
        border-right: none !important;
        border-bottom: 1px solid var(--border);
    }

    .trust-card:last-child {
        border-bottom: none;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .article__actions {
        flex-direction: column;
    }

    .article__actions .btn {
        width: 100%;
    }

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