@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   DOMAIN VILÁG - BEM & ITCSS DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. SETTINGS (Változók)
   -------------------------------------------------------------------------- */
:root {
    --color-bg: #f4f8ff;
    --color-bg-alt: #edf3ff;
    --color-surface: rgba(255, 255, 255, 0.94);
    --color-surface-strong: #ffffff;
    --color-text-main: #10203c;
    --color-text-muted: #5f718c;
    --color-border: #d7e2f3;
    --color-border-focus: #a8c0ec;
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-primary-light: #eaf2ff;
    --color-success: #0f9f6e;
    --color-success-bg: #e7f8f1;
    --color-danger: #cf304a;
    --color-danger-bg: #fff0f3;
    --color-warning: #c98715;
    --color-warning-bg: #fff7e6;
    --color-accent: #4f8cff;
    --font-primary: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    --font-heading: "Plus Jakarta Sans", "Segoe UI", Arial, sans-serif;
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;
    --shadow-sm: 0 10px 26px -24px rgba(26, 64, 145, 0.65);
    --shadow-md: 0 28px 70px -42px rgba(20, 54, 126, 0.28);
    --shadow-lg: 0 36px 90px -44px rgba(20, 54, 126, 0.3);
    --layout-max-container: 1280px;
    --layout-max-content: 1360px;
    --layout-max-auth: 1440px;
}

/* --------------------------------------------------------------------------
   2. GENERIC (Alapok)
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

a, button, select, img {
    user-select: none;
}

a,
button,
img,
input,
textarea,
select,
summary,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
}

/* Eltünteti a keretet egérrel/érintéssel történő kattintáskor */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/* Visszaállítja a keretet, ha valaki billentyűzettel (Tab gombbal) navigál */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

::selection {
  background: #d3e4ff;
  color: #0d00ff;
  text-shadow: none;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--color-primary-hover);
}

/* --------------------------------------------------------------------------
   3. OBJECTS (Struktúra)
   -------------------------------------------------------------------------- */
.o-container {
    max-width: var(--layout-max-container);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.o-grid {
    display: grid;
    gap: 24px;
}

/* JAVÍTÁS: Kőkemény 2 oszlopos grid asztali nézeten, hogy ne nyomódjon össze az űrlap! */
.o-grid--2-cols {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .o-grid--2-cols {
        grid-template-columns: 1fr 1fr;
    }
}

/* --------------------------------------------------------------------------
   4. COMPONENTS (UI Elemek)
   -------------------------------------------------------------------------- */
/* --- Gombok --- */
.c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
}

.c-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.c-btn--primary {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.c-btn--primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #1a48c7 0%, #225cd7 100%);
    color: #ffffff;
}

.c-btn--outline {
    background-color: transparent;
    color: var(--color-text-main);
    border-color: var(--color-border);
}

.c-btn--outline:hover:not(:disabled) {
    background-color: var(--color-surface);
    color: var(--color-text-main);
    border-color: var(--color-border-focus);
}

.c-btn--danger {
    background-color: var(--color-danger-bg);
    color: var(--color-danger);
    border-color: #fecaca;
}

.c-btn--danger:hover:not(:disabled) {
    background-color: #fee2e2;
    color: var(--color-danger);
}

.c-btn--full {
    width: 100%;
}

/* --- Űrlapok --- */
.c-form__group {
    margin-bottom: 20px;
}

.c-form__label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-main);
}

.c-form__input,
.c-form__select,
.c-form__textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--color-surface);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.c-password-field {
    position: relative;
}

.c-password-field .c-form__input {
    padding-right: 52px;
}

.c-password-toggle {
    position: absolute;
    top: 50%;
    right: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--color-text-muted);
    cursor: pointer;
    transform: translateY(-50%);
}

.c-password-toggle:hover,
.c-password-toggle:focus-visible {
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-text-main);
    outline: none;
}

.c-password-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.c-password-toggle svg {
    width: 21px;
    height: 21px;
}

.c-form__error {
    color: var(--color-danger);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 4px;
}

/* --- Kártyák --- */
.c-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.c-card__header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    background-color: var(--color-bg-alt);
}

.c-card__body {
    padding: 24px;
}

/* --- Plecsnik --- */
.c-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.c-badge--success {
    background: var(--color-success-bg);
    color: var(--color-success);
    border: 1px solid #a7f3d0;
}

.c-badge--warning {
    background: var(--color-warning-bg);
    color: var(--color-warning);
    border: 1px solid #fde68a;
}

.c-badge--danger {
    background: var(--color-danger-bg);
    color: var(--color-danger);
    border: 1px solid #fecaca;
}

.c-badge--neutral {
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

/* --- Rendszerüzenetek --- */
.c-alert {
    padding: 15px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-weight: 500;
    border: 1px solid transparent;
}

.c-alert--success {
    background: var(--color-success-bg);
    color: var(--color-success);
    border-color: #a7f3d0;
}

.c-alert--danger {
    background: var(--color-danger-bg);
    color: var(--color-danger);
    border-color: #fecaca;
}

.c-alert--warning {
    background: var(--color-warning-bg);
    color: var(--color-warning);
    border-color: #fde68a;
}

.c-alert--neutral {
    background: var(--color-bg-alt);
    color: var(--color-text-main);
    border-color: var(--color-border);
}

.c-flash-stack {
    position: fixed;
    top: calc(72px + env(safe-area-inset-top, 0px));
    left: 50%;
    z-index: 1100;
    display: grid;
    width: min(640px, calc(100vw - 24px));
    gap: 10px;
    padding-top: 10px;
    transform: translateX(-50%);
    pointer-events: none;
}

.c-alert--flash {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
    box-shadow: 0 16px 34px -22px rgba(15, 23, 42, 0.55);
    pointer-events: auto;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.c-alert--flash.is-hiding {
    opacity: 0;
    transform: translateY(-8px);
}

.c-alert__message {
    min-width: 0;
    overflow-wrap: anywhere;
}

.c-alert__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    color: currentColor;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
}

.c-alert__close:hover,
.c-alert__close:focus-visible {
    background: rgba(255, 255, 255, 0.95);
    outline: none;
}

@media (max-width: 640px) {
    .c-flash-stack {
        top: calc(64px + env(safe-area-inset-top, 0px));
        width: calc(100vw - 16px);
    }

    .c-alert--flash {
        padding: 12px 12px 12px 14px;
    }
}

/* --- Adattábla --- */
.c-table-wrapper {
    overflow-x: auto;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.c-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.c-table__th {
    background-color: var(--color-bg-alt);
    padding: 15px 20px;
    font-weight: 600;
    color: var(--color-text-muted);
    border-bottom: 2px solid var(--color-border);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.c-table__td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.c-table__tr:last-child .c-table__td {
    border-bottom: none;
}

.c-table__tr:hover .c-table__td {
    background-color: var(--color-bg-alt);
}

/* --- Domain Előnézet Kártya --- */
.c-preview-card {
    height: 140px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #60A5FA 0%, #2563EB 100%);
}

.c-preview-card__text {
    color: #FFFFFF;
    font-weight: 800;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 2;
    word-break: break-all;
    padding: 10px;
}

/* --- Navigáció --- */
.c-navbar {
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    position: relative;
    top: auto;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.c-navbar__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-navbar__menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-navbar__link {
    color: var(--color-text-muted);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-navbar__link:hover {
    color: var(--color-text-main);
}

.c-navbar__toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-text-main);
    cursor: pointer;
    z-index: 101;
    padding: 5px;
}

/* --- Lenyíló Menü --- */
.c-dropdown {
    position: relative;
}

.c-dropdown__trigger {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s ease;
}

.c-dropdown__trigger:hover {
    color: var(--color-text-main);
}

.c-dropdown__menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 15px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    min-width: 220px;
    overflow: hidden;
    z-index: 1000;
}

.c-dropdown.is-active .c-dropdown__menu {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.c-dropdown__header {
    padding: 12px 15px 8px 15px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    letter-spacing: 0.05em;
}

.c-dropdown__item {
    display: block;
    padding: 12px 15px;
    color: var(--color-text-main);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease;
    border-bottom: 1px solid var(--color-border);
}

.c-dropdown__item:last-child {
    border-bottom: none;
}

.c-dropdown__item:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

.c-dropdown__item--danger {
    color: var(--color-danger);
}

.c-dropdown__item--danger:hover {
    background: var(--color-danger-bg);
    color: var(--color-danger);
}

@media (max-width: 768px) {
    .c-navbar__toggle {
        display: block;
    }

    .c-navbar__menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--color-surface);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
        visibility: hidden;
    }

    .c-navbar__menu.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .c-navbar__link {
        font-size: 1.25rem;
    }

    .c-dropdown__menu {
        position: static;
        box-shadow: none;
        border: none;
        background: transparent;
        text-align: center;
        margin-top: 15px;
        min-width: 100%;
    }

    .c-dropdown__header {
        background: transparent;
        border: none;
        font-size: 0.9rem;
    }

    .c-dropdown__item {
        border: none;
        font-size: 1.1rem;
    }
}

/* --- Footer --- */
.c-footer {
    background-color: #1e293b;
    color: #cbd5e1;
    padding: 60px 0 20px 0;
    margin-top: auto;
    width: 100%;
}

.c-footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.c-footer__title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
}

.c-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.c-footer__list li {
    margin-bottom: 12px;
}

.c-footer__link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.c-footer__link:hover {
    color: #ffffff;
}

.c-footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    font-size: 0.85rem;
    color: #64748b;
}

/* --- Domain Adatlap --- */
.c-card__header--gradient {
    background: linear-gradient(to right, var(--color-primary-light), var(--color-surface));
    padding: 30px;
}

.c-domain-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-main);
    word-break: break-all;
}

.c-domain-price {
    font-size: 2.5rem;
    color: var(--color-primary);
    font-weight: 800;
    margin-bottom: 30px;
}

.c-domain-desc {
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.c-domain-desc h3 {
    margin-top: 0;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 10px;
}

.c-contact-box {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    padding: 24px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.c-contact-box__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.c-contact-box__title {
    margin: 0;
    font-size: 1.1rem;
    color: var(--color-text-main);
    font-weight: 700;
}

.c-contact-box__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 600px) {
    .c-contact-box__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.c-contact-item {
    display: flex;
    flex-direction: column;
}

.c-contact-item__label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.c-contact-item__value {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.c-contact-item__value a {
    color: var(--color-primary);
    text-decoration: none;
}

.c-contact-item__value a:hover {
    text-decoration: underline;
}

.c-contact-box__intro {
    margin: 0 0 14px 0;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.c-reveal-access-form {
    display: grid;
    gap: 14px;
}

.c-reveal-access-form__captcha {
    padding: 12px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(168, 192, 236, 0.34);
}

.c-seller-footer {
    margin-top: 40px;
    padding: 20px;
    background: var(--color-bg);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    border: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* --- Főoldal --- */
.c-hero {
    padding: 80px 0 60px 0;
    text-align: center;
}

.c-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 20px 0;
    color: var(--color-text-main);
}

.c-hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.c-trust-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto 60px auto;
    max-width: 1000px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 30px 0;
}

.c-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.c-trust-item__icon {
    font-size: 1.5rem;
    background: var(--color-surface);
    padding: 10px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
}

.c-search-bar {
    background: var(--color-surface);
    padding: 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
}

.c-domain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.c-domain-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-domain-card:hover {
    box-shadow: 0 28px 70px -42px rgba(20, 54, 126, 0.48);
    border-color: #b6c3d4;
}

.c-domain-card--featured {
    border: 2px solid var(--color-warning-bg);
    border-color: #fde68a;
}

.c-domain-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 15px;
}

.c-domain-card__price--negotiable {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    font-weight: 500;
}

.c-domain-card__seller {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.c-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--color-border);
    grid-column: 1 / -1;
}

.c-marketplace-header {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.c-marketplace-header__eyebrow {
    margin: 0 0 6px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.c-marketplace-header__title {
    margin: 0;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1.1;
    color: var(--color-text-main);
}

.c-marketplace-header__count {
    color: var(--color-text-muted);
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .c-marketplace-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.c-marketplace-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0px;
}

.c-marketplace-tabs__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-main);
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}

.c-marketplace-tabs__item:hover {
    border-color: var(--color-border-focus);
    color: var(--color-text-main);
}

.c-marketplace-tabs__item.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* --- Hitelesítés (Verify) és Modális ablakok --- */
.c-verify-card {
    max-width: 600px;
    margin: 40px auto;
    text-align: center;
}

.c-token-box {
    background: var(--color-primary-light);
    border: 2px dashed var(--color-primary);
    padding: 20px;
    font-family: monospace;
    font-size: 1.2rem;
    margin: 30px 0;
    word-break: break-all;
    border-radius: var(--radius-md);
    color: var(--color-primary-hover);
    font-weight: bold;
}

.c-verify-icon {
    font-size: 4rem;
    color: var(--color-success);
    margin-bottom: 20px;
}

.c-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.c-modal.is-active {
    display: flex;
}

.c-modal__content {
    background: var(--color-surface);
    padding: 30px;
    border-radius: var(--radius-lg);
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
}

/* --- Utilities --- */
.u-text-center {
    text-align: center !important;
}

.u-text-right {
    text-align: right !important;
}

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

:where(a, button, input, select, textarea, summary, [tabindex]):focus {
    outline: none;
}

.u-mt-0 {
    margin-top: 0 !important;
}

.u-mt-4 {
    margin-top: 24px !important;
}

.u-mb-0 {
    margin-bottom: 0 !important;
}

.u-mb-2 {
    margin-bottom: 8px !important;
}

.u-mb-4 {
    margin-bottom: 24px !important;
}

.u-mb-6 {
    margin-bottom: 40px !important;
}

.u-p-6 {
    padding: 30px !important;
}

.u-w-full {
    width: 100% !important;
}

.u-hidden {
    display: none !important;
}

.u-flex {
    display: flex !important;
}

.u-items-center {
    align-items: center !important;
}

.u-justify-between {
    justify-content: space-between !important;
}

.u-justify-center {
    justify-content: center !important;
}

.u-gap-2 {
    gap: 8px !important;
}

.u-flex-wrap {
    flex-wrap: wrap !important;
}

/* --- 13. AUTH OLDALAK (c-auth-*) --- */
.c-auth-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: var(--color-bg);
}

.c-auth-card {
    width: 100%;
    max-width: 420px;
    padding: 40px 30px;
}

.c-auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.c-auth-header h1 {
    margin: 0 0 10px 0;
    font-size: 1.8rem;
    color: var(--color-text-main);
    font-weight: 800;
}

.c-auth-header p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.c-auth-footer {
    margin-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.c-auth-footer a {
    font-weight: 600;
}

.c-btn--google {
    background-color: var(--color-surface);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.c-btn--google:hover {
    background-color: var(--color-bg);
    border-color: var(--color-border-focus);
}

.c-auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.c-auth-divider::before,
.c-auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--color-border);
}

.c-auth-divider:not(:empty)::before {
    margin-right: 1em;
}

.c-auth-divider:not(:empty)::after {
    margin-left: 1em;
}

/* --- 14. PROFIL SZERKESZTÉS ÉS BEÁLLÍTÁSOK --- */
.c-avatar-preview {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.c-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 10px 0;
}

.c-checkbox-wrapper input[type="checkbox"] {
    margin-top: 4px;
    transform: scale(1.2);
    cursor: pointer;
}

.c-checkbox-wrapper__text {
    display: flex;
    flex-direction: column;
}

.c-checkbox-wrapper__title {
    font-weight: 600;
    color: var(--color-text-main);
}

.c-checkbox-wrapper__desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* --- 15. ÉRTESÍTÉSEK ÉS BEÁLLÍTÁSOK --- */
.c-navbar__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-notification-trigger {
    position: relative;
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: color 0.2s;
    padding: 5px;
}

.c-notification-trigger:hover {
    color: var(--color-text-main);
}

.c-notification-badge {
    position: absolute;
    top: -2px;
    right: -5px;
    background: var(--color-danger);
    color: white;
    font-size: 0.65rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 10px;
    border: 2px solid var(--color-surface);
    line-height: 1;
}

.c-notification-item {
    display: block;
    padding: 15px;
    border-bottom: 1px solid var(--color-border);
    text-decoration: none;
    color: var(--color-text-main);
    transition: background 0.2s;
    text-align: left;
}

.c-notification-item:hover {
    background: var(--color-bg);
}

.c-notification-item--unread {
    background: var(--color-primary-light);
}

.c-notification-item__title {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-notification-item__time {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: normal;
}

.c-notification-item__text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

.c-settings-section {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--color-border);
}

.c-danger-zone {
    border: 1px solid #fecaca;
    background: var(--color-danger-bg);
    padding: 24px;
    border-radius: var(--radius-md);
}

/* --- 16. PIACTÉR (Szűrők) --- */
.c-filter-card {
    background: var(--color-surface);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    margin-bottom: 30px;
}

.c-filter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    align-items: end;
}

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

@media (min-width: 1100px) {
    .c-filter-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr auto;
    }
}

.c-filter-group {
    display: flex;
    flex-direction: column;
}

.c-filter-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.c-filter-note {
    display: block;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.c-filter-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (min-width: 768px) {
    .c-filter-actions {
        justify-content: flex-end;
    }
}

/* --- 17. FŐOLDAL EXTRÁK (Előnyök és CTA) --- */
.c-feature-section {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 80px 0;
    margin-bottom: 60px;
}

.c-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.c-feature-card {
    text-align: center;
}

.c-feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    color: var(--color-primary);
    box-shadow: inset 0 0 0 1px #bfdbfe;
}

.c-feature-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--color-text-main);
}

.c-feature-card__desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.c-cta-section {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-surface) 100%);
    padding: 60px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid #bfdbfe;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: var(--shadow-md);
}

/* --- 18. ADMIN FELULET --- */
.admin-page {
    width: min(1280px, calc(100% - 32px));
    margin: 32px auto 56px auto;
}

.admin-page--narrow {
    max-width: 960px;
}

.admin-page__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.admin-page__title {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.6rem);
    line-height: 1.1;
    color: var(--color-text-main);
}

.admin-page__subtitle {
    margin: 8px 0 0 0;
    color: var(--color-text-muted);
    max-width: 720px;
}

.admin-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
    color: #ffffff;
    border-radius: 20px;
    padding: 20px 22px;
    box-shadow: 0 18px 35px -24px rgba(15, 23, 42, 0.7);
    margin-bottom: 24px;
}

.admin-nav__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-nav__eyebrow {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}

.admin-nav__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-nav__link,
.admin-nav__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 14px;
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
    transition: background-color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.admin-nav__link:hover,
.admin-nav__back:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.28);
    transform: translateY(-1px);
}

.admin-nav__link.is-active {
    background: #ffffff;
    border-color: #ffffff;
    color: #1d4ed8;
}

.admin-stack {
    display: grid;
    gap: 24px;
}

.admin-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 24px;
}

.admin-card--soft {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.admin-card__title {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: var(--color-text-main);
}

.admin-card__subtitle {
    margin: 0 0 18px 0;
    color: var(--color-text-muted);
}

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

.admin-table-wrap {
    overflow-x: auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

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

.admin-table th {
    padding: 14px 18px;
    background: #f8fafc;
    color: var(--color-text-muted);
    text-align: left;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-border);
}

.admin-table td {
    padding: 16px 18px;
    color: var(--color-text-main);
    border-bottom: 1px solid var(--color-border);
    vertical-align: top;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

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

.admin-table__muted {
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.admin-table__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-link {
    color: var(--color-primary);
    font-weight: 600;
}

.admin-link:hover {
    color: var(--color-primary-hover);
}

.admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    padding: 9px 14px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
}

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

.admin-btn--primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: var(--shadow-sm);
}

.admin-btn--primary:hover {
    color: #ffffff;
    background: var(--color-primary-hover);
}

.admin-btn--success {
    background: var(--color-success);
    color: #ffffff;
}

.admin-btn--success:hover {
    color: #ffffff;
    background: #047857;
}

.admin-btn--warning {
    background: #fef3c7;
    color: #92400e;
    border-color: #fcd34d;
}

.admin-btn--warning:hover {
    color: #78350f;
    background: #fde68a;
}

.admin-btn--danger {
    background: #fee2e2;
    color: #b91c1c;
    border-color: #fca5a5;
}

.admin-btn--danger:hover {
    color: #991b1b;
    background: #fecaca;
}

.admin-btn--neutral {
    background: #f8fafc;
    color: var(--color-text-main);
    border-color: var(--color-border);
}

.admin-btn--neutral:hover {
    color: var(--color-text-main);
    background: #eef2ff;
    border-color: #c7d2fe;
}

.admin-btn--ghost {
    background: rgba(15, 23, 42, 0.04);
    color: var(--color-text-main);
    border-color: rgba(148, 163, 184, 0.4);
}

.admin-btn--ghost:hover {
    color: var(--color-text-main);
    background: rgba(15, 23, 42, 0.08);
}

.admin-btn--full {
    width: 100%;
}

.admin-form-grid {
    display: grid;
    gap: 16px;
}

.c-admin-settings-sections {
    display: grid;
    gap: 24px;
}

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

.admin-input,
.admin-select,
.admin-textarea {
    width: 100%;
    min-height: 44px;
    padding: 11px 12px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-surface);
    color: var(--color-text-main);
    font-family: inherit;
    font-size: 0.95rem;
}

.admin-textarea {
    min-height: 96px;
    resize: vertical;
}

.admin-input:focus,
.admin-select:focus,
.admin-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.admin-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--color-text-main);
}

.admin-help {
    margin: 6px 0 0 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.admin-inline-form {
    display: inline;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.admin-status--success {
    background: var(--color-success-bg);
    color: var(--color-success);
    border: 1px solid #a7f3d0;
}

.admin-status--warning {
    background: var(--color-warning-bg);
    color: var(--color-warning);
    border: 1px solid #fde68a;
}

.admin-status--danger {
    background: var(--color-danger-bg);
    color: var(--color-danger);
    border: 1px solid #fecaca;
}

.admin-status--neutral {
    background: #f8fafc;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

.admin-status-summary {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.admin-status-summary .admin-card__title {
    margin-bottom: 4px;
}

.admin-kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.admin-kpi {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 22px;
    color: #ffffff;
    box-shadow: 0 24px 45px -30px rgba(15, 23, 42, 0.5);
}

.admin-kpi::after {
    content: "";
    position: absolute;
    inset: auto -30px -60px auto;
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.admin-kpi--blue {
    background: linear-gradient(135deg, #1d4ed8 0%, #60a5fa 100%);
}

.admin-kpi--green {
    background: linear-gradient(135deg, #047857 0%, #34d399 100%);
}

.admin-kpi--red {
    background: linear-gradient(135deg, #b91c1c 0%, #fb7185 100%);
}

.admin-kpi--orange {
    background: linear-gradient(135deg, #c2410c 0%, #fdba74 100%);
}

.admin-kpi__label {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.admin-kpi__value {
    margin: 12px 0 6px 0;
    font-size: clamp(2rem, 5vw, 2.8rem);
    line-height: 1;
}

.admin-kpi__meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
}

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

.admin-stat-list {
    display: grid;
    gap: 12px;
}

.admin-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.admin-stat-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.admin-stat-row strong {
    text-align: right;
}

.admin-list {
    margin: 0;
    padding-left: 18px;
    color: var(--color-text-main);
}

.admin-list li + li {
    margin-top: 8px;
}

.admin-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.admin-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-main);
    font-weight: 700;
}

.admin-pagination__link:hover {
    color: var(--color-primary-hover);
    border-color: #bfdbfe;
    background: #eff6ff;
}

.admin-pagination__link.is-active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.admin-callout {
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid var(--color-border);
    background: #f8fafc;
}

.admin-callout--danger {
    background: var(--color-danger-bg);
    border-color: #fecaca;
}

.admin-callout--warning {
    background: var(--color-warning-bg);
    border-color: #fde68a;
}

.admin-callout--success {
    background: var(--color-success-bg);
    border-color: #a7f3d0;
}

.admin-callout--info {
    background: #eff6ff;
    border-color: #bfdbfe;
}

.admin-health-stack {
    display: grid;
    gap: 16px;
}

.admin-health-item {
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: #f8fafc;
    padding: 18px;
}

.admin-checklist {
    display: grid;
    gap: 16px;
}

.admin-checklist__group {
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: #f8fafc;
    padding: 18px;
}

.admin-checklist__group .admin-card__title {
    margin-bottom: 12px;
}

.admin-checklist__item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 0;
    border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.admin-checklist__item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.admin-checklist__content {
    min-width: 0;
}

.admin-checklist__content strong {
    display: block;
}

.admin-codebox {
    margin: 0;
    padding: 12px;
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 14px;
    white-space: pre-wrap;
    font-family: Consolas, Monaco, monospace;
    font-size: 0.85rem;
    max-height: 180px;
    overflow: auto;
}

.admin-empty {
    padding: 26px;
    text-align: center;
    color: var(--color-text-muted);
}

@media (max-width: 900px) {
    .admin-detail-grid,
    .admin-form-grid--2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .admin-page {
        width: min(100%, calc(100% - 24px));
        margin: 20px auto 40px auto;
    }

    .admin-card,
    .admin-nav {
        padding: 18px;
        border-radius: 18px;
    }

    .admin-nav__links {
        width: 100%;
        flex-direction: column;
    }

    .admin-nav__link,
    .admin-nav__back {
        width: 100%;
        justify-content: flex-start;
    }

    .admin-status-summary {
        flex-direction: column;
    }

    .admin-checklist__item {
        flex-direction: column;
    }

    .admin-table {
        min-width: 640px;
    }

    .admin-table th,
    .admin-table td {
        padding: 12px 14px;
    }

    .admin-toolbar {
        align-items: stretch;
    }

    .admin-toolbar > * {
        width: 100%;
    }
}

.c-page-shell {
    width: min(100%, 1160px);
    margin: 32px auto 48px auto;
}

.c-page-shell--narrow {
    max-width: 940px;
}

.c-page-shell--compact {
    max-width: 760px;
}

.c-page-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.c-page-header__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.96;
}

.c-page-header__desc {
    margin: 12px 0 0 0;
    max-width: 760px;
    color: var(--color-text-muted);
}

.c-surface-panel {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(168, 192, 236, 0.36);
    box-shadow: var(--shadow-sm);
}

.c-stack {
    display: grid;
    gap: 20px;
}

.c-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(37, 99, 235, 0.04);
    border: 1px solid rgba(168, 192, 236, 0.36);
}

.c-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.c-check-item label {
    margin: 0;
    cursor: pointer;
    color: var(--color-text-main);
    font-weight: 500;
}

.c-form-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    gap: 24px;
}

.c-form-note {
    margin: 16px 0 0 0;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.c-preview-shell {
    padding: 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 246, 255, 0.92));
    border: 1px solid rgba(168, 192, 236, 0.36);
}

.c-status-table__domain {
    display: grid;
    gap: 8px;
}

.c-status-table__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.c-status-table__actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.c-dashboard-page {
    width: 100%;
    margin-top: 0;
}

.c-dashboard-hero {
    justify-content: center;
    text-align: center;
}

.c-dashboard-controls .c-marketplace-controls__bar {
    align-items: center;
}

.c-dashboard-controls .c-dashboard-control-add {
    gap: 8px;
    min-width: 0;
    min-height: 52px;
    padding-right: 22px;
    padding-left: 22px;
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: transparent;
    text-decoration: none;
    white-space: nowrap;
}

.c-dashboard-controls .c-dashboard-control-add:hover,
.c-dashboard-controls .c-dashboard-control-add:focus-visible {
    background: var(--color-primary-hover);
    color: #FFFFFF;
    border-color: transparent;
}

.c-dashboard-controls .c-marketplace-controls__bar {
    width: 100%;
}

.c-dashboard-controls .c-marketplace-sort .c-marketplace-control {
    width: 100%;
}

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

.c-dashboard-domain-card {
    --dashboard-accent-rgb: 47, 93, 255;
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 18px;
    min-width: 0;
    overflow: visible;
    padding: 24px;
    border: 1px solid rgba(168, 192, 236, 0.46);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(var(--dashboard-accent-rgb), 0.1), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(248, 251, 255, 0.98) 100%);
    box-shadow: 0 24px 58px -44px rgba(20, 54, 126, 0.44), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.c-dashboard-domain-card::before {
    content: "";
    position: absolute;
    inset: 0 28px auto;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, rgba(var(--dashboard-accent-rgb), 0), rgba(var(--dashboard-accent-rgb), 0.78), rgba(var(--dashboard-accent-rgb), 0));
}

.c-dashboard-domain-card:hover {
    border-color: rgba(96, 142, 255, 0.52);
    box-shadow: 0 28px 68px -46px rgba(20, 54, 126, 0.5), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.c-dashboard-domain-card:has(.c-dashboard-tooltip:hover),
.c-dashboard-domain-card:has(.c-dashboard-tooltip:focus-within) {
    z-index: 30;
}

.c-dashboard-domain-card.is-active {
    --dashboard-accent-rgb: 47, 93, 255;
}

.c-dashboard-domain-card.is-pending {
    --dashboard-accent-rgb: 242, 183, 72;
}

.c-dashboard-domain-card.is-paused {
    --dashboard-accent-rgb: 91, 103, 122;
}

.c-dashboard-domain-card.is-moderation,
.c-dashboard-domain-card.is-verification-failed {
    --dashboard-accent-rgb: 247, 109, 114;
}

.c-dashboard-domain-card.is-return-highlight {
    border-color: rgba(59, 108, 255, 0.72);
    box-shadow: 0 30px 72px -42px rgba(37, 99, 235, 0.48);
}

.c-dashboard-domain-card__head {
    display: grid;
    gap: 7px;
    text-align: center;
}

.c-dashboard-domain-card__head h2 {
    margin: 0;
    color: #08214A;
    font-size: clamp(1.12rem, 1.45vw, 1.32rem);
    font-weight: 780;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.c-dashboard-domain-card__head p {
    margin: 0;
    color: #51617B;
    font-size: 0.9rem;
    font-weight: 700;
}

.c-dashboard-domain-card__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.c-dashboard-domain-card__meta div {
    min-width: 0;
    padding: 13px 14px;
    border: 1px solid rgba(183, 203, 241, 0.56);
    border-radius: 15px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F9FF 100%);
}

.c-dashboard-domain-card__meta dt {
    margin: 0 0 5px;
    color: #60708B;
    font-size: 0.78rem;
    font-weight: 700;
}

.c-dashboard-domain-card__label-help {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.c-dashboard-tooltip {
    position: relative;
    z-index: 20;
    display: inline-flex;
}

.c-dashboard-tooltip__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 1px solid rgba(168, 192, 236, 0.72);
    border-radius: 999px;
    background: #E6F0FF;
    color: #2563EB;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    cursor: help;
}

.c-dashboard-tooltip__panel {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    z-index: 80;
    width: min(320px, calc(100vw - 48px));
    padding: 12px 14px;
    border: 1px solid rgba(168, 192, 236, 0.55);
    border-radius: 14px;
    background: #FFFFFF;
    color: #44536B;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.55;
    box-shadow: 0 24px 48px -30px rgba(20, 54, 126, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%);
    pointer-events: none;
    transition: opacity 0.16s ease, visibility 0.16s ease;
}

.c-dashboard-tooltip:hover .c-dashboard-tooltip__panel,
.c-dashboard-tooltip:focus-within .c-dashboard-tooltip__panel {
    opacity: 1;
    visibility: visible;
}

.c-dashboard-domain-card__meta dd {
    margin: 0;
    color: #102347;
    font-size: 0.94rem;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.c-dashboard-domain-card__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.c-dashboard-domain-card__actions form {
    margin: 0;
}

.c-dashboard-domain-card__actions .c-btn {
    min-height: 38px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 0.84rem;
}

.c-dashboard-domain-card__muted {
    color: #60708B;
    font-size: 0.9rem;
    font-weight: 700;
}

.c-dashboard-empty {
    margin-top: 26px;
}

.c-dashboard-pagination {
    margin-top: 30px;
}

@media (max-width: 1040px) {
    .c-dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .c-dashboard-page {
        margin-top: 0;
    }

    .c-dashboard-hero {
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    .c-dashboard-controls .c-marketplace-controls__bar {
        align-items: stretch;
        width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }

    .c-marketplace-controls.c-dashboard-controls {
        top: 72px;
        margin-right: -16px;
        margin-left: -16px;
    }

    body.is-navbar-docked .c-marketplace-controls.c-dashboard-controls {
        top: 72px;
    }

    .c-dashboard-controls .c-dashboard-control-add {
        flex: 0 0 auto;
        width: auto;
        min-width: 0;
        padding-right: 18px;
        padding-left: 18px;
    }

    .c-dashboard-controls .c-marketplace-sort {
        flex: 1 1 auto;
        min-width: 0;
    }

    .c-dashboard-controls .c-marketplace-sort .c-marketplace-control {
        width: 100%;
        min-width: 0;
    }

    .c-dashboard-controls .c-marketplace-sort__menu {
        left: 0;
        right: 0;
    }

    .c-dashboard-tooltip__panel {
        left: -88px;
        right: auto;
        width: min(300px, calc(100vw - 40px));
        transform: none;
    }

    .c-dashboard-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .c-dashboard-domain-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .c-dashboard-domain-card__meta {
        grid-template-columns: 1fr;
    }

    .c-dashboard-domain-card__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .c-dashboard-domain-card__actions form,
    .c-dashboard-domain-card__actions .c-btn {
        width: 100%;
    }
}

.c-profile-shell {
    width: min(100%, 960px);
    margin: 32px auto 48px auto;
}

.c-profile-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(168, 192, 236, 0.36);
}

.c-profile-avatar {
    width: 88px;
    height: 88px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.c-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.c-profile-report {
    margin-top: 10px;
}

.c-profile-bio {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.c-profile-domain-list {
    display: grid;
    gap: 12px;
}

.c-profile-domain-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(168, 192, 236, 0.34);
}

.c-profile-domain-item__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.c-profile-company {
    padding: 18px 20px;
    border-radius: 18px;
    background: var(--color-success-bg);
    border: 1px solid rgba(15, 159, 110, 0.2);
}

.c-settings-shell {
    width: min(100%, 760px);
    margin: 32px auto 48px auto;
}

.c-danger-zone__title {
    margin-top: 0;
    color: var(--color-danger);
}

.c-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.c-auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-main);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.c-auth-brand:hover {
    color: var(--color-text-main);
}

.c-auth-brand__mark {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 900;
}

.c-auth-brand__text span {
    color: var(--color-primary);
}

.c-auth-card {
    background: rgba(255, 255, 255, 0.94);
}

.c-info-page {
    width: min(100%, 960px);
    margin: 32px auto 48px auto;
}

.c-info-article {
    padding: 28px;
    line-height: 1.75;
}

.c-info-article h1 {
    margin-top: 0;
}

.c-modal__close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2rem;
    line-height: 1;
    color: #ffffff;
    background: none;
    border: none;
    cursor: pointer;
}

.c-modal__shell--compact .c-modal__close,
.c-offer-modal .c-modal__close,
#reportModal .c-modal__close {
    color: #71829F;
}

.c-modal__shell--compact .c-modal__close:hover,
.c-modal__shell--compact .c-modal__close:focus-visible,
.c-offer-modal .c-modal__close:hover,
.c-offer-modal .c-modal__close:focus-visible,
#reportModal .c-modal__close:hover,
#reportModal .c-modal__close:focus-visible {
    color: var(--color-text-main);
}

.c-modal__shell {
    max-width: 860px;
    width: 100%;
    margin: 40px auto;
}

.c-modal__section {
    margin: 30px 0;
    padding-top: 20px;
    border-top: 1px solid rgba(168, 192, 236, 0.36);
}

.c-modal__section h3 {
    margin-top: 0;
}

@media (max-width: 960px) {
    .c-form-split,
    .c-check-grid {
        grid-template-columns: 1fr;
    }

    .c-page-shell,
    .c-profile-shell,
    .c-settings-shell,
    .c-info-page {
        width: min(100%, calc(100% - 32px));
    }
}

@media (max-width: 768px) {

    .c-profile-hero,
    .c-profile-domain-item,
    .c-status-table__actions,
    .c-page-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .c-profile-hero {
        grid-template-columns: 1fr;
    }
}

/* --------------------------------------------------------------------------
   19. PUBLIC EXPERIENCE REFINEMENT
   -------------------------------------------------------------------------- */
/* A globális tokenrendszer a fájl elején van definiálva. Itt már csak komponensszintű finomítások maradnak. */

body {
    background: #EEF4FF;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.c-btn {
    gap: 8px;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 14px;
}

.c-btn--primary {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    box-shadow: 0 18px 32px -22px rgba(37, 99, 235, 0.65);
}

.c-btn--outline {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(168, 192, 236, 0.72);
    color: var(--color-text-main);
}

.c-card {
    border-radius: 24px;
    border-color: rgba(168, 192, 236, 0.42);
    background: var(--color-surface);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
}

.c-card__header {
    padding: 26px 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.9));
}

.c-card__body {
    padding: 28px;
}

.c-badge {
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    letter-spacing: 0.08em;
}

.c-alert {
    border-radius: 18px;
}

.c-maintenance-banner {
    position: sticky;
    top: 0;
    z-index: 120;
    background: linear-gradient(135deg, #be123c 0%, #e11d48 100%);
    color: #ffffff;
    text-align: center;
    padding: 12px 16px;
    font-weight: 700;
    box-shadow: 0 14px 24px -20px rgba(190, 18, 60, 0.85);
}

.c-navbar {
    background: rgba(255, 255, 255, 0.84);
    border-bottom: 1px solid rgba(168, 192, 236, 0.42);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 28px -26px rgba(23, 59, 128, 0.55);
}

.c-navbar__container {
    height: 84px;
    gap: 16px;
}

.c-navbar__brand-text {
    display: inline-flex;
    margin-left: 10px;
    gap: 5px;
    font-size: 1.5rem;
    font-weight: 900;
}

.brand-text-1 {
    color: var(--color-text-main);
}

.brand-text-2 {
    color: var(--color-primary);
}

.c-navbar__menu {
    flex: 1;
    justify-content: space-between;
    gap: 20px;
}

.c-navbar__primary,
.c-navbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-navbar__link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--color-text-main);
    font-weight: 700;
    background: transparent;
}

.c-navbar__link:hover {
    color: var(--color-text-main);
    background: rgba(37, 99, 235, 0.08);
}

.c-navbar__toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 14px;
    border: 1px solid rgba(168, 192, 236, 0.56);
    background: rgba(255, 255, 255, 0.88);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.c-navbar__toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-text-main);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.c-navbar__toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.c-navbar__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.c-navbar__toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.c-dropdown__trigger,
.c-notification-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(168, 192, 236, 0.54);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text-main);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.c-dropdown__trigger:hover,
.c-notification-trigger:hover {
    color: var(--color-text-main);
    background: #ffffff;
}

.c-dropdown__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb 0%, #4f8cff 100%);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 800;
}

.c-dropdown__trigger-label,
.c-notification-trigger__label {
    white-space: nowrap;
}

.c-dropdown__menu {
    margin-top: 12px;
    padding: 8px;
    border-radius: 18px;
    border-color: rgba(168, 192, 236, 0.46);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-lg);
}

.c-dropdown__menu--wide {
    width: min(340px, calc(100vw - 40px));
}

.c-dropdown__scroll {
    max-height: 320px;
    overflow-y: auto;
}

.c-dropdown__header {
    border-radius: 12px;
    background: #f3f7ff;
    border-bottom: none;
}

.c-dropdown__header--between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.c-dropdown__mark-read {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-primary);
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
}

.c-dropdown__item {
    border-radius: 12px;
    border-bottom: none;
}

.c-dropdown__item-button {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.c-notification-item {
    border-radius: 12px;
    margin-top: 6px;
    border-bottom: none;
}

.c-notification-item:first-child {
    margin-top: 0;
}

.c-footer {
    background:
        radial-gradient(circle at top left, rgba(59, 130, 246, 0.18), transparent 24%),
        linear-gradient(180deg, rgba(11, 18, 32, 0.98), rgba(15, 23, 42, 1));
    padding: 72px 0 26px 0;
}

.c-footer__top {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.7fr);
    gap: 32px;
    margin-bottom: 38px;
}

.c-footer__brand-text {
    display: inline-flex;
    gap: 5px;
    font-size: 1.5rem;
    font-weight: 900;
}

.brand-text-1-footer {
    color:#e6eefc;
}

.brand-text-2-footer {
    color: #6ea8ff
;
}

.c-footer__lead {
    max-width: 460px;
    margin: 16px 0 0 0;
    color: rgba(226, 232, 240, 0.82);
    line-height: 1.75;
}

.c-footer__grid {
    gap: 28px;
    margin-bottom: 0;
}

.c-footer__bottom {
    border-top: 1px solid rgba(203, 213, 225, 0.12);
    padding-top: 22px;
    color: rgba(203, 213, 225, 0.78);
}

.c-section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.c-section-heading__eyebrow {
    margin: 0 0 8px 0;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.c-section-heading__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 0.98;
}

.c-section-heading__desc {
    margin: 12px 0 0 0;
    max-width: 660px;
    color: var(--color-text-muted);
}

.c-home {
    padding-bottom: 48px;
}

.c-home-hero {
    padding: 42px 0 34px 0;
}

.c-home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 28px;
    align-items: stretch;
}

.c-home-hero__content,
.c-home-hero__panel {
    position: relative;
    border-radius: 30px;
    border: 1px solid rgba(168, 192, 236, 0.4);
    box-shadow: var(--shadow-md);
}

.c-home-hero__content {
    padding: 46px;
    background:
        radial-gradient(circle at top right, rgba(79, 140, 255, 0.14), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
}

.c-home-hero__panel {
    padding: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(235, 243, 255, 0.94));
}

.c-home-hero__eyebrow {
    margin: 0 0 14px 0;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.c-home-hero__title {
    margin: 0;
    font-size: clamp(2.1rem, 4.8vw, 4rem);
    line-height: 1.2;
    text-align: center;
}

.c-home-hero__title span {
    color: var(--color-primary);
}

.c-home-hero__subtitle {
    max-width: 640px;
    margin: 30px 0 0 0;
    font-size: 1.08rem;
    color: var(--color-text-muted);
    text-align: center;
}

.c-home-hero__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}

.c-home-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 40px;
}

.c-home-hero__metric {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(168, 192, 236, 0.44);
}

.c-home-hero__metric strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.1rem;
    font-weight: bold;
}

.c-home-hero__metric span {
    display: block;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

.c-home-hero__panel h2 {
    margin: 0;
    font-size: 1.9rem;
    color: var(--color-text-main);
}

.c-home-hero__panel p {
    color: var(--color-text-muted);
}

.c-home-hero__list {
    display: grid;
    gap: 12px;
    margin: 24px 0 0 0;
    padding: 0;
    list-style: none;
}

.c-home-hero__list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(168, 192, 236, 0.42);
}

.c-home-hero__list-item--clickable {
    padding: 0;
    overflow: hidden;
}

.c-home-hero__list-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 14px 16px;
    border-radius: 18px;
    color: inherit;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.c-home-hero__list-link:hover,
.c-home-hero__list-link:focus-visible {
    color: inherit;
    background: rgba(37, 99, 235, 0.06);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.18);
    outline: none;
}

.c-home-hero__list-item strong {
    display: block;
    color: var(--color-text-main);
}

.c-home-hero__list-item span {
    color: var(--color-text-muted);
    font-size: 0.86rem;
}

.c-home-hero__list-item-price {
    color: var(--color-primary);
    font-weight: 800;
    white-space: nowrap;
}

.c-home-hero__note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-primary);
    font-size: 0.88rem;
    font-weight: 700;
}

.c-home-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 30px 0 68px 0;
}

.c-home-trust__item {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(168, 192, 236, 0.38);
    box-shadow: var(--shadow-sm);
}

.c-home-trust__item h3 {
    margin: 12px 0 10px 0;
    font-size: 1.35rem;
}

.c-home-trust__item p {
    margin: 0;
    color: var(--color-text-muted);
}

.c-home-trust__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 900;
}

.c-home-featured,
.c-home-value,
.c-home-cta {
    margin-bottom: 72px;
}

.c-home-value__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.c-home-value__card {
    padding: 28px;
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
    border: 1px solid rgba(168, 192, 236, 0.38);
    box-shadow: var(--shadow-sm);
}

.c-home-value__card h3 {
    margin: 14px 0 12px 0;
    font-size: 1.5rem;
}

.c-home-value__card p {
    margin: 0;
    color: var(--color-text-muted);
}

.c-home-value__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--color-primary);
    font-weight: 800;
}

.c-home-cta__card {
    padding: 44px;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, 0.22), transparent 24%),
        linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.c-home-cta__card h2 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    color: #ffffff;
}

.c-home-cta__card p {
    max-width: 700px;
    margin: 18px 0 0 0;
    color: rgba(226, 232, 240, 0.88);
}

.c-home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.c-home-cta__actions .c-btn--outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
}

.c-marketplace-header {
    padding: 40px 30px;
    margin-bottom: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 245, 255, 0.92));
    border: 1px solid rgba(168, 192, 236, 0.38);
    box-shadow: var(--shadow-sm);
}

.c-marketplace-header__title {
    font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.c-marketplace-header__desc {
    margin: 14px 0 0 0;
    max-width: 680px;
    color: var(--color-text-muted);
}

.c-marketplace-header__count {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(168, 192, 236, 0.5);
    box-shadow: var(--shadow-sm);
}

.c-market-empty-actions {
    justify-content: center;
    margin-top: 24px;
}

.c-marketplace-tabs__item {
    min-height: 44px;
    padding: 11px 18px;
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(168, 192, 236, 0.56);
}

.c-filter-card {
    padding: 24px;
    margin-bottom: 32px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(168, 192, 236, 0.36);
}

.c-filter-grid {
    gap: 18px;
}

.c-domain-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.c-domain-card {
    padding: 0;
    border-radius: 26px;
    overflow: hidden;
}

.c-domain-card.is-return-highlight {
    animation: domain-card-return-highlight 4s ease;
}

@keyframes domain-card-return-highlight {
    0%,
    100% {
        box-shadow: 0 18px 44px rgba(16, 35, 70, 0.08);
        border-color: rgba(168, 192, 236, 0.4);
    }

    20%,
    55% {
        box-shadow: 0 0 0 2px rgba(59, 108, 255, 0.22), 0 19px 46px rgba(16, 35, 70, 0.1);
        border-color: rgba(59, 108, 255, 0.48);
    }

    34%,
    72% {
        box-shadow: 0 18px 44px rgba(16, 35, 70, 0.08);
        border-color: rgba(168, 192, 236, 0.4);
    }
}

.c-domain-card__header {
    padding: 22px 22px 18px 22px;
    border-bottom: 1px solid rgba(168, 192, 236, 0.3);
}

.c-domain-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.c-domain-card__name {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    font-size: 1.8rem;
    min-height: 1.8rem;
    line-height: 1;
    max-width: 100%;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
}

.c-domain-card__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 22px;
    flex: 1;
}

.c-domain-card__price {
    margin-bottom: 0;
    font-size: 1.75rem;
}

.c-domain-card__description {
    margin: 0;
    color: var(--color-text-muted);
}

.c-domain-card__meta {
    display: grid;
    gap: 10px;
}

.c-domain-card__seller {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.c-domain-card__seller-link,
.c-domain-detail__hero-link,
.c-domain-seller__name {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.18s ease;
}

.c-domain-card__seller-link:hover,
.c-domain-card__seller-link:focus-visible,
.c-domain-detail__hero-link:hover,
.c-domain-detail__hero-link:focus-visible,
.c-domain-seller__name:hover,
.c-domain-seller__name:focus-visible {
    color: var(--color-primary);
    outline: none;
}

.c-domain-card__footer {
    margin-top: auto;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.c-domain-card__trend {
    font-size: 0.86rem;
    color: var(--color-text-muted);
}

.c-empty-state {
    padding: 68px 26px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed rgba(168, 192, 236, 0.66);
}

.c-empty-state h3 {
    margin: 0 0 12px 0;
    font-size: 1.7rem;
}

.c-empty-state p {
    margin: 0 auto;
    max-width: 640px;
    color: var(--color-text-muted);
}

.c-auth-incentive-panel {
    grid-column: 1 / -1;
}

.c-auth-incentive-panel__content {
    display: grid;
    justify-items: center;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.c-auth-incentive-panel__eyebrow {
    margin: 0;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.c-auth-incentive-panel__content h2,
.c-auth-incentive-panel__content h3 {
    margin: 0;
}

.c-auth-incentive-panel__content p {
    margin: 0;
    max-width: 620px;
    color: var(--color-text-muted);
}

.c-auth-incentive-panel__list {
    display: grid;
    gap: 9px;
    width: min(100%, 520px);
    margin: 6px 0 0;
    padding: 0;
    list-style: none;
    color: var(--color-text-main);
    font-weight: 700;
}

.c-auth-incentive-panel__list li {
    padding: 11px 14px;
    border: 1px solid rgba(168, 192, 236, 0.52);
    border-radius: 14px;
    background: rgba(245, 249, 255, 0.88);
}

.c-auth-incentive-panel__actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 6px;
}

.c-auth-incentive-panel__actions .c-btn {
    min-width: 150px;
}

.c-auth-incentive-panel--listing {
    padding: 52px 28px;
}

.c-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 0 0;
}

.c-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 46px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    border: 1px solid rgba(168, 192, 236, 0.56);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text-main);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.c-pagination__link:hover {
    color: var(--color-text-main);
    background: #ffffff;
}

.c-pagination__link.is-active {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    border-color: transparent;
    color: #ffffff;
}

.c-pagination__link.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.c-domain-page {
    max-width: 1180px;
}

.c-domain-detail {
    overflow: visible;
}

.c-domain-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: end;
    border-bottom: none;
    border-radius: 26px 26px 0 0;
}

.c-domain-detail__hero-main {
    display: grid;
    gap: 16px;
}

.c-domain-detail__hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.c-domain-detail__price-panel {
    min-width: 220px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(168, 192, 236, 0.4);
    box-shadow: var(--shadow-sm);
}

.c-domain-detail__price-label {
    margin: 0 0 6px 0;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.c-domain-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 28px;
}

.c-domain-detail__main,
.c-domain-detail__sidebar {
    display: grid;
    gap: 20px;
}

.c-domain-detail__panel {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(168, 192, 236, 0.34);
}

.c-domain-detail__panel h2,
.c-domain-detail__panel h3 {
    margin-top: 0;
}

.c-domain-detail__description {
    margin: 0;
    color: var(--color-text-main);
}

.c-contact-box {
    margin: 0;
    border-radius: 22px;
    background: rgba(37, 99, 235, 0.05);
    border-color: rgba(37, 99, 235, 0.16);
}

.c-domain-actions {
    display: grid;
    gap: 12px;
}

.c-domain-actions form,
.c-domain-actions a,
.c-domain-actions button {
    width: 100%;
}

.c-domain-actions__links {
    display: grid;
    gap: 12px;
}

.c-domain-info-list {
    display: grid;
    gap: 14px;
}

.c-domain-info-list__item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(168, 192, 236, 0.28);
}

.c-domain-info-list__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.c-domain-info-list__label {
    color: var(--color-text-muted);
    font-weight: 600;
}

.c-domain-info-list__value {
    text-align: right;
    font-weight: 700;
    color: var(--color-text-main);
}

.c-domain-seller {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.c-domain-seller__name {
    font-size: 1.1rem;
    font-weight: 800;
}

.c-domain-seller__meta {
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

@media (max-width: 1100px) {
    .c-home-hero__grid,
    .c-domain-detail__layout {
        grid-template-columns: 1fr;
    }

    .c-home-hero__panel {
        order: 2;
    }

    .c-home-hero__content {
        order: 1;
    }
}

@media (max-width: 960px) {
    .c-navbar__toggle {
        display: inline-flex;
    }

    .c-navbar__menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 16px;
        right: 16px;
        display: grid;
        gap: 16px;
        padding: 18px;
        border-radius: 24px;
        border: 1px solid rgba(168, 192, 236, 0.42);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none;
    }

    .c-navbar__primary,
    .c-navbar__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .c-navbar__link,
    .c-dropdown__trigger,
    .c-notification-trigger {
        justify-content: space-between;
    }

    .c-dropdown,
    .c-dropdown__menu,
    .c-dropdown__menu--wide {
        width: 100%;
    }

    .c-dropdown__menu {
        position: static;
        margin-top: 10px;
        box-shadow: none;
    }

    .c-home-trust,
    .c-home-value__grid,
    .c-home-hero__metrics {
        grid-template-columns: 1fr;
    }

    .c-footer__top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .o-container {
        padding: 0 16px;
    }

    .c-card__header,
    .c-card__body,
    .c-home-hero__content,
    .c-home-hero__panel,
    .c-home-cta__card {
        padding: 24px;
    }

    .c-home-hero {
        padding-top: 28px;
    }

    .c-home-hero__title {
        font-size: clamp(2.5rem, 10vw, 3.7rem);
    }

    .c-section-heading__title,
    .c-marketplace-header__title {
        font-size: clamp(1.9rem, 8vw, 2.7rem);
    }

    .c-domain-detail__hero {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .c-domain-detail__price-panel {
        min-width: 0;
    }

    .c-domain-card__footer,
    .c-home-cta__actions,
    .c-home-hero__actions {
        flex-direction: column;
    }

    .c-domain-card__footer > * ,
    .c-home-cta__actions > * ,
    .c-home-hero__actions > * {
        width: 100%;
    }

    .c-domain-info-list__item,
    .c-domain-seller {
        flex-direction: column;
        align-items: flex-start;
    }

    .c-domain-info-list__value {
        text-align: left;
    }

    .c-pagination {
        justify-content: stretch;
    }

    .c-home-hero__panel h2, .c-home-hero__panel p {
        text-align: center;
    }
}

/* --------------------------------------------------------------------------
   20. VIEW COMPLETION EXTENSIONS
   -------------------------------------------------------------------------- */
.c-empty-note {
    display: inline-block;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

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

.c-text-muted-italic {
    color: var(--color-text-muted);
    font-style: italic;
}

.c-mono {
    font-family: "Cascadia Code", "Consolas", monospace;
}

.c-centered-actions {
    justify-content: center;
}

.c-inline-actions--end {
    justify-content: flex-end;
}

.c-field-row {
    display: flex;
    gap: 12px;
}

.c-field-grow {
    flex: 1;
}

.c-field-grow--wide {
    flex: 3;
}

.c-field-grow--narrow {
    flex: 1;
    min-width: 90px;
}

.c-preview-card--hero {
    height: 250px;
    border-radius: 24px 24px 0 0;
}

.c-preview-card__text--xl {
    font-size: 3em;
}

.c-preview-title {
    margin: 0 0 10px 0;
}

.c-preview-price {
    margin: 20px 0;
    font-size: 2em;
    font-weight: 800;
    color: var(--color-success);
}

.c-preview-desc {
    color: var(--color-text-muted);
}

.c-profile-name {
    margin: 0;
}

.c-profile-meta__muted {
    color: var(--color-text-muted);
}

.c-profile-company__title {
    margin-top: 0;
}

.c-tax-number {
    font-family: "Cascadia Code", "Consolas", monospace;
}

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

.c-color-control__label {
    display: block;
    margin: 0 0 6px 0;
}

.c-color-control__input {
    padding: 5px;
    height: 44px;
}

.c-preview-name {
    margin: 10px 0;
}

.c-preview-badge {
    display: none;
}

.c-preview-bio {
    margin: 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
}

.c-tax-field {
    margin-top: 15px;
}

.c-form__input--danger {
    border-color: #fca5a5;
}

.c-form__input--code {
    font-size: 1.5rem;
    letter-spacing: 0.2em;
}

.c-form__input--phone {
    font-size: 1.2rem;
}

.c-confirm-card {
    width: 100%;
    max-width: 440px;
}

.c-confirm-number {
    margin: 12px 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-success);
}

.c-settings-section {
    padding: 24px 0;
    border-top: 1px solid rgba(168, 192, 236, 0.36);
}

.c-settings-section__title {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--color-text-main);
}

.c-settings-section__desc {
    margin-bottom: 16px;
    color: var(--color-text-muted);
}

.c-danger-zone {
    padding: 22px;
    border-radius: 20px;
    border: 1px solid rgba(207, 48, 74, 0.16);
    background: linear-gradient(180deg, rgba(255, 240, 243, 0.94), rgba(255, 255, 255, 0.9));
}

.c-danger-zone__copy {
    margin-bottom: 20px;
    font-size: 0.92rem;
    color: var(--color-text-main);
}

.c-auth-shell {
    min-height: clamp(640px, calc(100vh - 190px), 920px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 520px);
    gap: 28px;
    align-items: stretch;
    padding: 32px;
}

.c-auth-side,
.c-auth-main {
    min-height: clamp(560px, calc(100vh - 220px), 840px);
}

.c-auth-side {
    display: flex;
    align-items: stretch;
}

.c-auth-side__surface {
    width: 100%;
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(168, 192, 236, 0.38);
    background:
        radial-gradient(circle at top right, rgba(79, 140, 255, 0.14), transparent 30%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 255, 0.92));
    box-shadow: var(--shadow-md);
}

.c-auth-side__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.c-auth-side__title {
    margin: 20px 0 14px 0;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 1.02;
}

.c-auth-side__text {
    margin: 0;
    max-width: 44rem;
    color: var(--color-text-muted);
    font-size: 1.04rem;
    line-height: 1.7;
}

.c-auth-highlights {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.c-auth-highlight {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(168, 192, 236, 0.34);
    background: rgba(255, 255, 255, 0.74);
}

.c-auth-highlight strong {
    color: var(--color-text-main);
}

.c-auth-highlight span {
    color: var(--color-text-muted);
    font-size: 0.94rem;
    line-height: 1.6;
}

.c-auth-main {
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-auth-main .c-auth-card {
    width: 100%;
    max-width: 480px;
}

.c-auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.c-auth-link {
    font-size: 0.88rem;
    font-weight: 700;
}

.c-auth-google-icon {
    margin-right: 10px;
}

.c-info-page {
    width: min(100%, 980px);
}

.c-info-hero {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.c-info-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--color-primary-light);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.c-info-hero__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.c-info-hero__text {
    margin: 0;
    max-width: 760px;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.c-info-article {
    display: grid;
    gap: 18px;
}

.c-info-article h2 {
    margin: 8px 0 0 0;
}

.c-info-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.c-info-card {
    padding: 24px;
    border-radius: 22px;
    border: 1px solid rgba(168, 192, 236, 0.38);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-sm);
}

.c-info-card__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--color-warning-bg);
    color: var(--color-warning);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.c-info-card h2,
.c-info-card h3 {
    margin-top: 0;
}

.c-info-list {
    margin: 10px 0 0 18px;
    padding: 0;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.c-info-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.c-error-page,
.c-maintenance-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    background:
        radial-gradient(circle at top left, rgba(79, 140, 255, 0.16), transparent 26%),
        linear-gradient(180deg, #f6f9ff 0%, #eef4ff 100%);
}

.c-error-card,
.c-maintenance-card {
    width: min(100%, 720px);
    padding: 40px;
    border-radius: 32px;
    border: 1px solid rgba(168, 192, 236, 0.42);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.c-error-code {
    margin: 0;
    font-size: clamp(4rem, 14vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.08em;
    color: var(--color-primary);
}

.c-error-title,
.c-maintenance-title {
    margin: 16px 0 14px 0;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.c-error-message,
.c-maintenance-copy {
    margin: 0 auto;
    max-width: 42rem;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.c-error-actions,
.c-maintenance-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.c-maintenance-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    margin: 0 auto 20px auto;
    border-radius: 26px;
    background: linear-gradient(135deg, #2563eb 0%, #4f8cff 100%);
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 24px 40px -26px rgba(37, 99, 235, 0.7);
}

.c-maintenance-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--color-primary);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0;
}

.c-maintenance-footer {
    margin-top: 32px;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.c-maintenance-dev {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(168, 192, 236, 0.38);
    text-align: left;
}

.c-maintenance-dev__title {
    margin: 0 0 14px 0;
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.92rem;
}

.c-maintenance-form {
    display: grid;
    gap: 12px;
    max-width: 360px;
    margin: 0 auto;
}

.admin-gap-top {
    margin-top: 24px;
}

.admin-title-stack {
    display: grid;
    gap: 6px;
}

.admin-card__title--tight {
    margin-bottom: 6px;
}

.admin-card__subtitle--tight {
    margin: 0;
}

.admin-help--top {
    margin-top: 12px;
}

.admin-callout--spaced {
    margin-top: 18px;
}

.admin-list--spaced {
    margin-top: 12px;
}

.admin-form-actions {
    display: flex;
    align-items: flex-end;
}

.admin-table__cell--wide {
    min-width: 320px;
}

.admin-table__cell--note {
    min-width: 260px;
}

@media (max-width: 1080px) {
    .c-auth-shell {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .c-auth-side,
    .c-auth-main {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .c-color-grid,
    .c-field-row,
    .c-auth-actions,
    .c-error-actions,
    .c-maintenance-actions {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .c-auth-shell,
    .c-settings-shell,
    .c-info-page {
        margin-top: 0;
    }

    .c-auth-side__surface,
    .c-error-card,
    .c-maintenance-card {
        padding: 28px 22px;
        border-radius: 24px;
    }

    .c-auth-main .c-auth-card {
        max-width: none;
    }

    .c-preview-card__text--xl {
        font-size: 2.3em;
    }
}

/* --------------------------------------------------------------------------
   20. LAYOUT STABILIZATION
   -------------------------------------------------------------------------- */
html {
    background: var(--color-bg);
    color-scheme: light;
}

.c-page-shell {
    width: min(100%, var(--layout-max-content));
}

.c-domain-page {
    max-width: min(100%, var(--layout-max-content));
}

.c-profile-shell {
    width: min(100%, 1040px);
}

.c-settings-shell {
    width: min(100%, 840px);
}

.c-info-page {
    width: min(100%, 1040px);
}

.c-auth-shell {
    width: min(100%, var(--layout-max-auth));
    margin: 32px auto 48px auto;
}

.c-auth-side__surface,
.c-auth-main .c-auth-card {
    height: 100%;
}

.c-btn,
.admin-btn,
.c-navbar__link,
.c-dropdown__trigger,
.c-notification-trigger,
.c-pagination__link,
.admin-pagination__link,
.c-navbar__toggle {
    transition:
        background-color 0.2s ease,
        background-image 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.c-btn--primary,
.c-btn--primary:hover:not(:disabled),
.c-btn--primary:focus-visible,
.admin-btn--primary,
.admin-btn--primary:hover,
.admin-btn--success,
.admin-btn--success:hover,
.c-pagination__link.is-active,
.admin-pagination__link.is-active {
    color: #ffffff;
}

.c-btn--outline:focus-visible,
.c-dropdown__trigger:hover,
.c-dropdown__trigger:focus-visible,
.c-notification-trigger:hover,
.c-notification-trigger:focus-visible,
.c-pagination__link:hover,
.c-pagination__link:focus-visible,
.admin-pagination__link:hover,
.admin-pagination__link:focus-visible,
.c-navbar__toggle:hover,
.c-navbar__toggle:focus-visible {
    color: var(--color-text-main);
    border-color: var(--color-border-focus);
}

.c-navbar__link:hover,
.c-navbar__link:focus-visible {
    color: var(--color-text-main);
}

.c-navbar__toggle:hover,
.c-navbar__toggle:focus-visible {
    background: var(--color-surface-strong);
}

.c-btn:focus-visible,
.admin-btn:focus-visible,
.c-navbar__link:focus-visible,
.c-dropdown__trigger:focus-visible,
.c-notification-trigger:focus-visible,
.c-pagination__link:focus-visible,
.admin-pagination__link:focus-visible,
.c-navbar__toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 140, 255, 0.22);
}

@media (min-width: 1600px) {
    .c-auth-shell {
        grid-template-columns: minmax(0, 860px) minmax(440px, 520px);
        justify-content: center;
    }
}

/* --------------------------------------------------------------------------
   21. NAVBAR REFINEMENT
   -------------------------------------------------------------------------- */
.c-navbar {
    padding: 18px 0 0 0;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

.c-navbar__container {
    max-width: var(--layout-max-content);
    height: auto;
}

.c-navbar__shell {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
    padding: 14px 16px;
    border-radius: 24px;
    border: 1px solid rgba(168, 192, 236, 0.48);
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 54px -38px rgba(20, 54, 126, 0.34);
}

.c-navbar__menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.c-navbar__primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 18px;
    border: 1px solid rgba(168, 192, 236, 0.34);
    background: rgba(37, 99, 235, 0.045);
}

.c-navbar__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-left: auto;
}

.c-navbar__link {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.c-navbar__link:hover,
.c-navbar__link:focus-visible {
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-text-main);
}

.c-navbar__link.is-active {
    background: rgba(110, 168, 255, 0.12);
    color: var(--color-text-main);
    box-shadow: var(--shadow-sm);
}

.c-navbar__link--ghost {    
    border: 1px solid rgba(168, 192, 236, 0.48);
    background: rgba(255, 255, 255, 0.64);
}

.c-navbar__link--admin {
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
}

.c-navbar__link--admin:hover,
.c-navbar__link--admin:focus-visible {
    background: rgba(37, 99, 235, 0.14);
    color: var(--color-primary);
}

.c-navbar__link--admin.is-active {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
}

.c-navbar__cta {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 16px;
    white-space: nowrap;
}

.c-navbar__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.c-navbar__icon--sm {
    width: 16px;
    height: 16px;
}

.c-notification-trigger--icon {
    position: relative;
    width: 52px;
    min-width: 52px;
    min-height: 52px;
    padding: 0;
    justify-content: center;
    border-radius: 16px;
}

.c-notification-trigger--icon .c-navbar__icon {
    width: 26px;
    height: 26px;
}

.c-notification-trigger__label {
    display: none;
}

.c-notification-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    border: 2px solid var(--color-surface-strong);
    box-shadow: 0 10px 20px -16px rgba(37, 99, 235, 0.8);
}

.c-dropdown__trigger--user {
    min-height: 52px;
    padding: 8px 12px 8px 8px;
    gap: 12px;
    border-radius: 18px;
}

.c-dropdown__avatar {
    width: 36px;
    height: 36px;
    font-size: 0.86rem;
}

.c-navbar-user {
    display: grid;
    gap: 2px;
    min-width: 0;
    text-align: left;
}

.c-navbar-user__name {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.94rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.c-navbar-user__meta {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.c-dropdown__chevron {
    display: inline-flex;
    align-items: center;
    color: var(--color-text-muted);
}

.c-dropdown__menu {
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    min-width: 240px;
}

.c-dropdown__menu--wide {
    width: min(380px, calc(100vw - 40px));
}

.c-dropdown__menu--user {
    width: min(300px, calc(100vw - 40px));
}

@media (max-width: 1180px) {
    .c-navbar__primary {
        gap: 4px;
    }

    .c-navbar__link {
        padding: 0 14px;
    }
}

@media (max-width: 960px) {
    .c-navbar__shell {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px;
    }

    .c-navbar__brand {
        margin-right: auto;
    }

    .c-navbar__toggle {
        margin-left: auto;
        flex-shrink: 0;
    }

    .c-navbar__menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        display: grid;
        gap: 16px;
        padding: 16px;
        border-radius: 22px;
        border: 1px solid rgba(168, 192, 236, 0.42);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none;
    }

    .c-navbar__menu.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .c-navbar__primary,
    .c-navbar__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        border: none;
        background: transparent;
    }

    .c-navbar__link,
    .c-navbar__cta,
    .c-dropdown,
    .c-dropdown__trigger--user,
    .c-notification-trigger--icon {
        width: 100%;
    }

    .c-notification-trigger--icon {
        justify-content: flex-start;
        padding: 0 16px;
    }

    .c-notification-trigger__label {
        display: inline;
    }

    .c-dropdown__menu,
    .c-dropdown__menu--wide,
    .c-dropdown__menu--user {
        position: static;
        width: 100%;
        margin-top: 10px;
        box-shadow: none;
    }
}

@media (max-width: 640px) {
    .c-navbar__brand-text {
        font-size: 0.94rem;
    }

    .c-navbar-user__meta {
        display: none;
    }
}

/* --------------------------------------------------------------------------
   22. HOME AND NAVBAR FINE-TUNING
   -------------------------------------------------------------------------- */
.c-home {
    padding-bottom: 120px;
}

.c-home-hero {
    padding: 56px 0 28px 0;
}

@media (min-width: 961px) {
    .c-navbar__shell {
        display: grid;
        grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    }

    .c-navbar__menu {
        display: contents;
    }

    .c-navbar__primary {
        grid-column: 2;
        justify-self: center;
        justify-content: center;
    }

    .c-navbar__actions {
        grid-column: 3;
        justify-self: end;
        margin-left: 0;
    }
}

.c-home-hero__panel-cta {
    display: inline-flex;
    width: fit-content;
    margin: 34px auto 0 auto;
}

.c-home-hero__metric {
    display: grid;
    gap: 2px;
    align-content: start;
    padding: 18px 18px 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(168, 192, 236, 0.46);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
    box-shadow: 0 18px 36px -30px rgba(37, 99, 235, 0.28);
    overflow: hidden;
    position: relative;
}

.c-home-hero__metric-value {
    margin: 0;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    line-height: 1.2;
    color: var(--color-text-main);
    text-align: center;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.c-home-hero__metric-value.is-ready {
    opacity: 1;
    transform: translateY(0);
}

.c-home-hero__metric-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.c-home-hero__metric-meta {
    display: block;
    margin-top: 4px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    text-align: center;
}

.c-home-proof {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.4fr);
    gap: 24px;
    margin: 28px 0 104px 0;
    align-items: start;
}

.c-home-value,
.c-home-cta {
    margin-bottom: 104px;
}

.c-home-proof__intro {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(168, 192, 236, 0.4);
    background:
        radial-gradient(circle at top right, rgba(79, 140, 255, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(240, 246, 255, 0.94));
    box-shadow: var(--shadow-md);
}

.c-home-proof__title {
    margin: 0;
    font-size: clamp(2rem, 3.6vw, 2.9rem);
    line-height: 1.02;
}

.c-home-proof__text {
    margin: 16px 0 0 0;
    color: var(--color-text-muted);
    line-height: 1.75;
}

.c-home-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    padding-top: 18px;
}

.c-home-proof__item {
    min-height: 100%;
}

.c-home-proof__item:nth-child(2) {
    transform: translateY(18px);
}

.c-home-proof__item:nth-child(3) {
    transform: translateY(36px);
}

.c-home-hero__actions .c-btn--outline {
    -webkit-tap-highlight-color: transparent;
}

.c-home-hero__actions .c-btn--outline:hover:not(:disabled),
.c-home-hero__actions .c-btn--outline:focus-visible {
    background: rgba(37, 99, 235, 0.07);
    border-color: rgba(37, 99, 235, 0.28);
    color: var(--color-text-main);
}

.c-home-hero__actions .c-btn--outline:active {
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.32);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
    color: var(--color-text-main);
}

@media (max-width: 1100px) {
    .c-home-proof {
        grid-template-columns: 1fr;
    }

    .c-home-proof__grid {
        grid-template-columns: 1fr;
        padding-top: 0;
    }

    .c-home-proof__item:nth-child(2),
    .c-home-proof__item:nth-child(3) {
        transform: none;
    }
}

@media (max-width: 640px) {
    .c-home {
        padding-bottom: 88px;
    }

    .c-home-proof,
    .c-home-value,
    .c-home-cta {
        margin-bottom: 72px;
    }
}

/* --------------------------------------------------------------------------
   23. HOME CONTENT REDESIGN
   -------------------------------------------------------------------------- */
.c-home-how,
.c-home-difference,
.c-home-help,
.c-home-cta {
    margin-bottom: 104px;
}

.c-home-how__header,
.c-home-difference__header {
    max-width: 760px;
    margin-bottom: 28px;
}

.c-home-how__header h2,
.c-home-difference__header h2,
.c-home-help__intro h2,
.c-home-cta__pane h2 {
    margin: 0;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.04;
}

.c-home-how__header p,
.c-home-difference__header p,
.c-home-help__intro p,
.c-home-cta__pane p {
    margin: 16px 0 0 0;
    color: var(--color-text-muted);
    line-height: 1.72;
}

.c-home-how__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border: 1px solid rgba(168, 192, 236, 0.4);
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
    box-shadow: 0 22px 48px -38px rgba(20, 54, 126, 0.2);
    overflow: hidden;
}

.c-home-how__track {
    padding: 34px 34px 30px 34px;
}

.c-home-how__track + .c-home-how__track {
    border-left: 1px solid rgba(168, 192, 236, 0.28);
}

.c-home-how__track-head h3 {
    margin: 0;
    font-size: 1.35rem;
}

.c-home-how__track-head p {
    margin: 10px 0 0 0;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.c-home-how__steps {
    margin: 28px 0 0 0;
    padding: 0;
    list-style: none;
}

.c-home-how__step {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 20px 0;
    border-top: 1px solid rgba(168, 192, 236, 0.24);
}

.c-home-how__step:first-child {
    padding-top: 0;
    border-top: none;
}

.c-home-how__step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    font-weight: 800;
}

.c-home-how__step h4 {
    margin: 0;
    font-size: 1rem;
}

.c-home-how__step p {
    margin: 8px 0 0 0;
    color: var(--color-text-muted);
    line-height: 1.62;
}

.c-home-difference__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 18px;
    grid-template-areas:
        "wide wide tall"
        "compact secondary tall";
}

.c-home-difference__panel {
    padding: 28px 30px;
    border-radius: 28px;
    border: 1px solid rgba(168, 192, 236, 0.38);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
    box-shadow: 0 18px 42px -34px rgba(20, 54, 126, 0.18);
}

.c-home-difference__panel h3 {
    margin: 0;
    font-size: 1.28rem;
}

.c-home-difference__panel p {
    margin: 14px 0 0 0;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.c-home-difference__panel--wide {
    grid-area: wide;
    min-height: 220px;
    background:
        radial-gradient(circle at top right, rgba(79, 140, 255, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 248, 255, 0.96));
}

.c-home-difference__panel--tall {
    grid-area: tall;
    min-height: 100%;
    background:
        radial-gradient(circle at bottom left, rgba(79, 140, 255, 0.12), transparent 32%),
        linear-gradient(180deg, rgba(247, 250, 255, 0.98), rgba(239, 245, 255, 0.94));
}

.c-home-difference__panel--compact {
    grid-area: compact;
}

.c-home-difference__panel--wide-secondary {
    grid-area: secondary;
}

.c-home-help {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
}

.c-home-help__intro {
    padding: 8px 0;
}

.c-home-help__links {
    display: grid;
    gap: 12px;
}

.c-home-help__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    border-radius: 22px;
    border: 1px solid rgba(168, 192, 236, 0.34);
    background: rgba(255, 255, 255, 0.82);
    color: inherit;
    box-shadow: 0 14px 30px -30px rgba(20, 54, 126, 0.18);
}

.c-home-help__item:hover,
.c-home-help__item:focus-visible {
    color: inherit;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(79, 140, 255, 0.34);
    box-shadow: 0 18px 36px -30px rgba(37, 99, 235, 0.18);
    outline: none;
}

.c-home-help__item-copy h3 {
    margin: 0;
    font-size: 1.08rem;
}

.c-home-help__item-copy p {
    margin: 8px 0 0 0;
    color: var(--color-text-muted);
    line-height: 1.62;
}

.c-home-help__item-action {
    flex-shrink: 0;
    color: var(--color-primary);
    font-weight: 700;
    white-space: nowrap;
}

.c-home-cta__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.c-home-cta__pane {
    padding: 34px 34px 32px 34px;
    border-radius: 30px;
    border: 1px solid rgba(168, 192, 236, 0.4);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 255, 0.94));
    box-shadow: 0 20px 42px -34px rgba(20, 54, 126, 0.18);
}

.c-home-cta__pane--secondary {
    background:
        linear-gradient(180deg, rgba(246, 249, 255, 0.98), rgba(240, 245, 255, 0.94));
}

.c-home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 1100px) {
    .c-home-how__layout,
    .c-home-help,
    .c-home-cta__grid {
        grid-template-columns: 1fr;
    }

    .c-home-how__track + .c-home-how__track {
        border-left: none;
        border-top: 1px solid rgba(168, 192, 236, 0.28);
    }

    .c-home-difference__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "wide wide"
            "tall compact"
            "secondary secondary";
    }
}

@media (max-width: 760px) {
    .c-home-how,
    .c-home-difference,
    .c-home-help,
    .c-home-cta {
        margin-bottom: 72px;
    }

    .c-home-how__track,
    .c-home-difference__panel,
    .c-home-cta__pane {
        padding: 26px 22px;
    }

    .c-home-help__item {
        padding: 18px 18px;
    }

    .c-home-difference__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            "wide"
            "tall"
            "compact"
            "secondary";
    }

    .c-home-help__item {
        align-items: flex-start;
        flex-direction: column;
    }

    .c-home-help__item-action {
        margin-top: 2px;
    }
}

/* --------------------------------------------------------------------------
   23/B. HOME VISUAL REFINEMENT
   -------------------------------------------------------------------------- */
.c-home-how__header,
.c-home-difference__header {
    margin-bottom: 34px;
}

.c-home-how__header p,
.c-home-difference__header p,
.c-home-help__intro p,
.c-home-cta__pane p {
    font-size: 1.02rem;
}

.c-home-how__layout {
    position: relative;
    border: none;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(79, 140, 255, 0.14), transparent 26%),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(247, 250, 255, 0.98), rgba(239, 245, 255, 0.94));
    box-shadow: 0 26px 56px -40px rgba(20, 54, 126, 0.22);
}

.c-home-how__layout::before {
    content: "";
    position: absolute;
    top: 28px;
    bottom: 28px;
    left: 50%;
    width: 1px;
    background: linear-gradient(180deg, rgba(168, 192, 236, 0.12), rgba(79, 140, 255, 0.34), rgba(168, 192, 236, 0.12));
    transform: translateX(-50%);
}

.c-home-how__track {
    padding: 42px 40px 38px 40px;
}

.c-home-how__track + .c-home-how__track {
    border-left: none;
}

.c-home-how__track-head h3 {
    font-size: 1.5rem;
}

.c-home-how__track-head p {
    max-width: 34ch;
    font-size: 0.98rem;
}

.c-home-how__steps {
    position: relative;
    display: grid;
    gap: 22px;
    margin-top: 34px;
}

.c-home-how__steps::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 23px;
    width: 1px;
    background: linear-gradient(180deg, rgba(79, 140, 255, 0), rgba(79, 140, 255, 0.42), rgba(79, 140, 255, 0));
}

.c-home-how__step {
    position: relative;
    gap: 18px;
    padding: 0;
    border-top: none;
}

.c-home-how__step-index {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.16), rgba(37, 99, 235, 0.08));
    box-shadow: 0 10px 24px -18px rgba(37, 99, 235, 0.5);
}

.c-home-how__step h4 {
    font-size: 1.06rem;
}

.c-home-how__step p {
    margin-top: 10px;
    font-size: 0.97rem;
}

.c-home-difference__header {
    max-width: 720px;
}

.c-home-difference__grid {
    gap: 20px;
    grid-template-columns: 1.15fr 0.85fr 1fr;
}

.c-home-difference__panel {
    border: none;
    border-radius: 30px;
    box-shadow: 0 20px 46px -36px rgba(20, 54, 126, 0.2);
}

.c-home-difference__panel h3 {
    font-size: 1.34rem;
}

.c-home-difference__panel p {
    font-size: 0.98rem;
}

.c-home-difference__panel--wide {
    padding: 34px 34px 32px 34px;
    color: #f7fbff;
    background:
        radial-gradient(circle at top right, rgba(122, 176, 255, 0.26), transparent 28%),
        linear-gradient(135deg, rgba(8, 22, 42, 1), rgba(16, 44, 86, 0.98));
    box-shadow: 0 28px 56px -38px rgba(6, 18, 36, 0.42);
}

.c-home-difference__panel--wide h3,
.c-home-difference__panel--wide p {
    color: inherit;
}

.c-home-difference__panel--tall {
    padding: 30px 28px;
    background:
        radial-gradient(circle at bottom left, rgba(79, 140, 255, 0.16), transparent 36%),
        linear-gradient(180deg, rgba(236, 244, 255, 0.98), rgba(228, 239, 255, 0.94));
}

.c-home-difference__panel--compact {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(168, 192, 236, 0.34);
    box-shadow: none;
}

.c-home-difference__panel--wide-secondary {
    background:
        linear-gradient(180deg, rgba(248, 251, 255, 0.98), rgba(243, 248, 255, 0.96));
}

.c-home-help {
    padding: 34px 36px;
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(244, 248, 255, 0.92), rgba(239, 245, 255, 0.86));
    box-shadow: 0 22px 48px -40px rgba(20, 54, 126, 0.16);
}

.c-home-help__intro {
    padding: 10px 0;
}

.c-home-help__intro h2 {
    max-width: 12ch;
}

.c-home-help__links {
    padding: 8px 0;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(168, 192, 236, 0.3);
    overflow: hidden;
}

.c-home-help__item {
    padding: 22px 0;
    margin: 0 24px;
    border: none;
    border-bottom: 1px solid rgba(168, 192, 236, 0.24);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.c-home-help__item:last-child {
    border-bottom: none;
}

.c-home-help__item:hover,
.c-home-help__item:focus-visible {
    background: transparent;
    border-color: rgba(168, 192, 236, 0.24);
    box-shadow: none;
}

.c-home-help__item-copy h3 {
    font-size: 1.12rem;
}

.c-home-help__item-copy p {
    font-size: 0.97rem;
}

.c-home-help__item-action {
    position: relative;
    padding-right: 18px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.c-home-help__item-action::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.c-home-cta__grid {
    position: relative;
    gap: 20px;
    padding: 20px;
    border-radius: 38px;
    background:
        radial-gradient(circle at top right, rgba(122, 176, 255, 0.28), transparent 26%),
        linear-gradient(135deg, rgba(8, 22, 42, 1), rgba(16, 44, 86, 0.98));
    box-shadow: 0 34px 70px -44px rgba(8, 22, 42, 0.42);
}

.c-home-cta__pane {
    min-height: 100%;
    border: none;
    box-shadow: none;
}

.c-home-cta__pane:first-child {
    background: rgba(255, 255, 255, 0.08);
    color: #f7fbff;
}

.c-home-cta__pane:first-child h2,
.c-home-cta__pane:first-child p {
    color: inherit;
}

.c-home-cta__pane--secondary {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.92));
}

.c-home-cta__pane .c-btn {
    min-height: 50px;
    padding-left: 22px;
    padding-right: 22px;
}

.c-home-cta__pane--secondary .c-btn--outline {
    background: rgba(37, 99, 235, 0.08);
    border-color: rgba(79, 140, 255, 0.22);
}

.c-home-cta__pane--secondary .c-btn--outline:hover,
.c-home-cta__pane--secondary .c-btn--outline:focus-visible {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(79, 140, 255, 0.32);
}

@media (max-width: 1100px) {
    .c-home-how__layout::before {
        display: none;
    }

    .c-home-help {
        padding: 28px 24px;
    }

    .c-home-cta__grid {
        padding: 18px;
    }
}

@media (max-width: 760px) {
    .c-home-how__header,
    .c-home-difference__header {
        margin-bottom: 24px;
    }

    .c-home-how__track {
        padding: 28px 22px 24px 22px;
    }

    .c-home-how__track-head h3 {
        font-size: 1.32rem;
    }

    .c-home-how__steps {
        gap: 18px;
        margin-top: 28px;
    }

    .c-home-difference__panel--wide,
    .c-home-difference__panel--tall,
    .c-home-difference__panel--compact,
    .c-home-difference__panel--wide-secondary {
        min-height: auto;
    }

    .c-home-help {
        padding: 24px 18px;
        gap: 22px;
    }

    .c-home-help__links {
        padding: 4px 0;
    }

    .c-home-help__item {
        margin: 0 16px;
        padding: 18px 0;
    }

    .c-home-cta__grid {
        padding: 14px;
    }
}

/* --------------------------------------------------------------------------
   23/C. HOME FINAL SPEC
   -------------------------------------------------------------------------- */
.c-home {
    background: #EEF4FF;
    padding-bottom: 0;
}

.c-home-sections {
    width: min(100%, 1180px);
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

.c-home-flow {
    margin-top: 110px;
}

.c-home-signature,
.c-home-resources,
.c-home-closeout {
    margin-top: 140px;
}

.c-home-flow__intro,
.c-home-signature__intro {
    max-width: 760px;
    text-align: center;
}

.c-home-flow__intro h2,
.c-home-signature__intro h2,
.c-home-resources__intro h2 {
    margin: 0;
    font-size: 54px;
    font-weight: 800;
    line-height: 1.02;
    color: #102346;
}

.c-home-flow__intro p,
.c-home-signature__intro p,
.c-home-resources__intro p {
    margin: 16px 0 0 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
    color: #66748D;
}

.c-home-flow__panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
    gap: 40px;
    margin-top: 32px;
    padding: 40px 42px;
    border: 1px solid #DCE7FA;
    border-radius: 30px;
    background: linear-gradient(180deg, #F8FBFF 0%, #EEF5FF 100%);
    box-shadow: 0 18px 50px rgba(16, 35, 70, 0.05);
}

.c-home-flow__divider {
    width: 1px;
    background: #E2EBFA;
}

.c-home-flow__column-intro {
    text-align: center;
}

.c-home-flow__column-intro h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    color: #102346;
}

.c-home-flow__column-intro p {
    margin: 12px 0 0 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #66748D;
}

.c-home-flow__steps {
    margin: 28px 0 0 0;
    padding: 0;
    list-style: none;
}

.c-home-flow__step {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 0 0 18px 0;
    margin: 0 0 18px 0;
    border-bottom: 1px solid #E5EDFB;
}

.c-home-flow__step:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.c-home-flow__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-top: 1px;
    border-radius: 999px;
    background: #E8F0FF;
    color: #3B6CFF;
    font-size: 15px;
    font-weight: 800;
}

.c-home-flow__step-copy h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #102346;
}

.c-home-flow__step-copy p {
    max-width: 420px;
    margin: 6px 0 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #5D6A82;
}

.c-home-signature__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    margin-top: 34px;
}

.c-home-signature__card p {
    margin: 10px 0 0 0;
}

.c-home-signature__card--a {
    grid-column: 1 / span 7;
    grid-row: 1;
    min-height: 220px;
    padding: 30px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0E2147 0%, #15305E 58%, #1D4A95 100%);
    box-shadow: 0 20px 48px rgba(16, 35, 70, 0.12);
}

.c-home-signature__card--a h3 {
    font-size: 28px;
    font-weight: 800;
    color: #FFFFFF;
}

.c-home-signature__card--a p {
    max-width: 520px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.c-home-signature__card--b {
    grid-column: 8 / span 5;
    grid-row: 1 / span 2;
    min-height: 464px;
    padding: 30px;
    border: 1px solid #D8E6FF;
    border-radius: 28px;
    background: linear-gradient(180deg, #EEF5FF 0%, #E6F0FF 100%);
}

.c-home-signature__card--b h3 {
    font-size: 28px;
    font-weight: 800;
    color: #102346;
}

.c-home-signature__card--b p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
    color: #53627B;
}

.c-home-signature__card--c,
.c-home-signature__card--d {
    min-height: 220px;
    padding: 24px;
    border: 1px solid #DDE7F8;
    border-radius: 24px;
    background: #FFFFFF;
    box-shadow: 0 10px 24px rgba(16, 35, 70, 0.04);
}

.c-home-signature__card--c {
    grid-column: 1 / span 3;
    grid-row: 2;
}

.c-home-signature__card--d {
    grid-column: 4 / span 4;
    grid-row: 2;
}

.c-home-signature__card--c h3,
.c-home-signature__card--d h3 {
    font-size: 24px;
    font-weight: 800;
    color: #102346;
}

.c-home-signature__card--c p,
.c-home-signature__card--d p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: #5C6A83;
}

.c-home-resources {
    display: grid;
    grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
    gap: 28px;
    align-items: start;
}

.c-home-resources__intro {
    max-width: 360px;
}

.c-home-resources__panel {
    overflow: hidden;
    border: 1px solid #DDE7F8;
    border-radius: 28px;
    background: #FFFFFF;
    box-shadow: 0 14px 32px rgba(16, 35, 70, 0.04);
}

.c-home-resources__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 112px;
    padding: 24px 28px;
    border-bottom: 1px solid #E5EDFB;
    color: inherit;
}

.c-home-resources__row:last-child {
    border-bottom: none;
}

.c-home-resources__row:hover,
.c-home-resources__row:focus-visible {
    background: #F8FBFF;
    color: inherit;
    outline: none;
}

.c-home-resources__copy h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #102346;
}

.c-home-resources__copy p {
    margin: 8px 0 0 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.65;
    color: #66748D;
}

.c-home-resources__action {
    position: relative;
    flex-shrink: 0;
    padding-right: 18px;
    color: #3B6CFF;
    font-size: 16px;
    font-weight: 700;
}

.c-home-resources__action::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.c-home-closeout__panel {
    display: grid;
    grid-template-columns: minmax(0, 50fr) 1px minmax(0, 50fr);
    gap: 0 36px;
    padding: 46px 48px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 42%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 46%),
        linear-gradient(135deg, #0C1F43 0%, #15315E 58%, #1B4EA4 100%);
    box-shadow: 0 26px 70px rgba(16, 35, 70, 0.16);
}

.c-home-closeout__divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.14);
}

.c-home-closeout__column {
    text-align: left;
}

.c-home-closeout__column--primary h2 {
    margin: 0;
    font-size: 41px;
    font-weight: 800;
    line-height: 1.02;
    color: #FFFFFF;
}

.c-home-closeout__column--secondary {
    text-align: right;
}

.c-home-closeout__column--secondary h2 {
    margin: 0;
    font-size: 41px;
    font-weight: 800;
    line-height: 1.05;
    color: #FFFFFF;
}

.c-home-closeout__column p {
    max-width: 460px;
    margin: 16px 0 0 0;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
}

.c-home-closeout__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 26px;
    padding: 0 24px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: none;
}

.c-home-closeout__button--secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
}

.c-home-closeout__button--secondary:hover,
.c-home-closeout__button--secondary:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.26);
    color: #FFFFFF;
}

@media (max-width: 960px) {
    .c-home-signature__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .c-home-signature__card--a {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .c-home-signature__card--b {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 320px;
    }

    .c-home-signature__card--c,
    .c-home-signature__card--d {
        grid-column: auto;
        grid-row: auto;
        min-height: 220px;
    }
}

@media (max-width: 860px) {
    .c-home-flow__panel {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px 22px;
    }

    .c-home-flow__divider {
        width: auto;
        height: 1px;
        background: #E2EBFA;
    }

    .c-home-flow__column-intro h3 {
        font-size: 24px;
    }

    .c-home-flow__column-intro p {
        margin-top: 10px;
    }
}

@media (max-width: 760px) {
    .c-home-sections {
        padding: 0 18px;
    }

    .c-home-flow {
        margin-top: 56px;
    }

    .c-home-signature,
    .c-home-resources,
    .c-home-closeout {
        margin-top: 80px;
    }

    .c-home-closeout {
        margin-bottom: 96px;
    }

    .c-home-flow__intro h2,
    .c-home-signature__intro h2,
    .c-home-resources__intro h2 {
        font-size: 40px;
        line-height: 1.05;
    }

    .c-home-flow__intro p,
    .c-home-signature__intro p,
    .c-home-resources__intro p {
        font-size: 16px;
    }

    .c-home-signature__grid {
        grid-template-columns: 1fr;
    }

    .c-home-signature__card--a,
    .c-home-signature__card--b,
    .c-home-signature__card--c,
    .c-home-signature__card--d {
        grid-column: auto;
        grid-row: auto;
        min-height: 170px;
    }

    .c-home-signature__card--a,
    .c-home-signature__card--b {
        padding: 24px 22px;
    }

    .c-home-signature__card--c,
    .c-home-signature__card--d {
        padding: 22px 20px;
    }

    .c-home-signature__card--a h3,
    .c-home-signature__card--b h3 {
        font-size: 24px;
    }

    .c-home-signature__card--c h3,
    .c-home-signature__card--d h3 {
        font-size: 22px;
    }

    .c-home-resources {
        grid-template-columns: 1fr;
    }

    .c-home-resources__panel {
        width: 100%;
    }

    .c-home-resources__row {
        flex-direction: column;
        text-align: center;
        min-height: 96px;
        padding: 30px 20px;
    }

    .c-home-resources__copy h3 {
        font-size: 18px;
    }

    .c-home-closeout__panel {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 22px;
    }

    .c-home-closeout__divider {
        width: auto;
        height: 1px;
    }

    .c-home-closeout__column--primary h2,
    .c-home-closeout__column--secondary h2 {
        font-size: 32px;
        line-height: 1.06;
    }
}

@media (min-width: 761px) and (max-width: 960px) {
    .c-home-sections {
        padding: 0 24px;
    }
}

/* --------------------------------------------------------------------------
   23/D. HOME POLISH
   -------------------------------------------------------------------------- */
.c-home-sections {
    max-width: 1180px;
}

.c-home-signature,
.c-home-resources {
    margin-top: 140px;
}

.c-home-closeout {
    margin-top: 140px;
    margin-bottom: 100px;
}

.c-home-flow__intro p,
.c-home-signature__intro p,
.c-home-resources__intro p {
    color: #5F6D86;
    font-size: 17px;
    line-height: 1.75;
}

.c-home-flow__panel {
    border-color: #D9E6FA;
    background: linear-gradient(180deg, #F8FBFF 0%, #EDF4FF 100%);
    box-shadow: 0 18px 46px rgba(16, 35, 70, 0.055);
}

.c-home-flow__divider {
    background: #DCE7FA;
}

.c-home-flow__column-intro h3 {
    font-size: 30px;
}

.c-home-flow__column-intro p {
    color: #5F6D86;
}

.c-home-flow__step {
    border-bottom-color: #E1EAF9;
}

.c-home-flow__step-number {
    width: 36px;
    height: 36px;
    background: #E2ECFF;
    color: #2F5DFF;
    border: 1px solid #D5E3FF;
}

.c-home-flow__step-copy h4 {
    color: #102346;
}

.c-home-flow__step-copy p {
    max-width: 400px;
    margin-top: 7px;
    color: #55637C;
    line-height: 1.72;
}

.c-home-signature__intro p {
    color: #5F6D86;
}

.c-home-signature__card--a {
    background: linear-gradient(135deg, #0D2147 0%, #16315E 55%, #2559B6 100%);
}

.c-home-signature__card--a p {
    color: rgba(255, 255, 255, 0.9);
}

.c-home-signature__card--b {
    padding: 34px;
    border-color: #D6E4FF;
    background: linear-gradient(180deg, #EDF5FF 0%, #E4EFFF 100%);
}

.c-home-signature__card--b h3 {
    font-size: 28px;
    font-weight: 800;
    color: #102346;
}

.c-home-signature__card--b p {
    color: #56657D;
    line-height: 1.78;
}

.c-home-signature__card--c {
    border-color: #DCE6F8;
    background: #FFFFFF;
}

.c-home-signature__card--d {
    border-color: #DCE8FB;
    background: #F4F8FF;
}

.c-home-signature__card--c p,
.c-home-signature__card--d p {
    color: #5C6A83;
}

.c-home-resources {
    align-items: start;
}

.c-home-resources__intro {
    padding-top: 6px;
}

.c-home-resources__panel {
    border-color: #DDE7F8;
}

.c-home-resources__row {
    min-height: 118px;
}

.c-home-resources__copy h3 {
    font-size: 22px;
}

.c-home-resources__copy p {
    color: #5F6D86;
}

.c-home-resources__action {
    color: #3B6CFF;
    font-weight: 700;
}

.c-home-resources__row:hover,
.c-home-resources__row:focus-visible {
    background: #F8FBFF;
}

.c-home-closeout__panel {
    padding: 50px 50px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 42%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 46%),
        linear-gradient(135deg, #0C1F43 0%, #16315E 56%, #2B63C8 100%);
    box-shadow: 0 26px 68px rgba(16, 35, 70, 0.15);
}

.c-home-closeout__divider {
    background: rgba(255, 255, 255, 0.12);
}

.c-home-closeout__column p {
    color: rgba(255, 255, 255, 0.9);
}

.c-home-closeout__button--primary {
    background: #FFFFFF;
    color: #102346;
}

.c-home-closeout__button--primary:hover,
.c-home-closeout__button--primary:focus-visible {
    background: #D7E0F5;
    color: #102346;
}

.c-home-closeout__button--secondary {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.24);
    color: #FFFFFF;
}

.c-home-closeout__button--secondary:hover,
.c-home-closeout__button--secondary:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.24);
    color: #FFFFFF;
}

@media (min-width: 760px) {
    .only-mobile {
        display: none;
    }

    .only-desktop {
        display: block;
    }

    .c-home-hero__metric-value {
        word-spacing: 100vw; /* Így biztosan új sorba kerül a második szó asztali méreten */
    }
}

@media (max-width: 760px) {
    .only-mobile {
        display: block;
    }

    .only-desktop {
        display: none;
    }

    .c-home-signature,
    .c-home-resources,
    .c-home-closeout {
        margin-top: 80px;
    }

    .c-home-flow__intro p,
    .c-home-signature__intro p,
    .c-home-resources__intro p {
        font-size: 16px;
    }

    .c-home-flow__column-intro h3 {
        font-size: 24px;
    }

    .c-home-signature__card--b {
        padding: 24px 22px;
    }

    .c-home-resources__row {
        min-height: 100px;
    }

    .c-home-closeout__panel {
        padding: 30px 30px;
    }

    .c-home-closeout__column--primary h2,
    .c-home-closeout__column--secondary h2 {
        font-size: 32px;
    }
}

/* --------------------------------------------------------------------------
   24. NAVIGATION REBUILD
   -------------------------------------------------------------------------- */
body.has-fixed-navbar {
    padding-top: 116px;
}

body.has-mobile-bottom-nav {
    padding-bottom: 0;
}

.c-navbar {
    position: fixed !important;
    inset: 0 0 auto 0 !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100%;
    z-index: 220;
    padding-top: 16px;
    border-bottom: 1px solid transparent;
    background: transparent;
    transition:
        padding-top 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease,
        backdrop-filter 0.22s ease;
}

.c-navbar__container {
    position: relative;
    max-width: var(--layout-max-content);
    margin: 0 auto;
    padding: 0 20px;
}

.c-navbar__shell {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 84px;
    padding: 14px 18px;
    border-radius: 24px;
    border: 1px solid rgba(168, 192, 236, 0.48);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 54px -38px rgba(20, 54, 126, 0.34);
    transition:
        padding 0.22s ease,
        border-radius 0.22s ease,
        border-color 0.22s ease,
        background-color 0.22s ease,
        box-shadow 0.22s ease,
        backdrop-filter 0.22s ease;
}

body.is-navbar-docked .c-navbar {
    padding-top: 0;
    border-bottom-color: rgba(168, 192, 236, 0.36);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 40px -34px rgba(20, 54, 126, 0.32);
}

body.is-navbar-docked .c-navbar__shell {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.c-navbar__brand {
    display: inline-flex;
    align-items: center;
    grid-column: 1;
    justify-self: start;
}

.c-navbar__desktop {
    display: contents;
}

.c-navbar__desktop-primary,
.c-navbar__desktop-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.c-navbar__desktop-primary {
    grid-column: 2;
    justify-self: center;
    justify-content: center;
    padding: 6px;
    border-radius: 18px;
    border: 1px solid rgba(168, 192, 236, 0.34);
    background: rgba(37, 99, 235, 0.045);
}

.c-navbar__desktop-actions {
    grid-column: 3;
    justify-self: end;
}

.c-navbar__link--trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    font-family: inherit;
}

.c-navbar__cta {
    min-height: 46px;
}

.c-navbar-popover {
    position: relative;
}

.c-navbar-popover__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 220px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(168, 192, 236, 0.44);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.c-navbar-popover__menu--wide {
    min-width: 360px;
    left: 50%;
    right: auto;
    transform: translate(-50%, -8px);
}

.c-navbar-popover__menu--user {
    min-width: 260px;
}

.js-navbar-dropdown.is-open .c-navbar-popover__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.js-navbar-dropdown.is-open .c-navbar-popover__menu--wide {
    transform: translate(-50%, 0);
}

.c-navbar-popover__item {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 12px;
    color: var(--color-text-main);
    font-weight: 600;
    text-decoration: none;
    background: transparent;
    border: 0;
    font-family: inherit;
    text-align: left;
}

.c-navbar-popover__item:hover,
.c-navbar-popover__item:focus-visible,
.c-navbar-popover__item.is-active {
    background: rgba(37, 99, 235, 0.08);
    color: var(--color-text-main);
}

.c-navbar-popover__item--danger {
    color: var(--color-danger);
}

.c-navbar-popover__item--danger:hover,
.c-navbar-popover__item--danger:focus-visible {
    background: var(--color-danger-bg);
    color: var(--color-danger);
}

.c-navbar-popover__item-button {
    cursor: pointer;
}

.c-navbar__mobile-menu {
    display: none;
}

.c-mobile-bottom-nav {
    display: none;
}

@media (max-width: 960px) {
    body.has-fixed-navbar {
        padding-top: 96px;
    }

    body.has-mobile-bottom-nav {
        padding-bottom: calc(88px + 12px + env(safe-area-inset-bottom, 0px) + var(--mobile-bottom-nav-runtime-offset, 0px));
    }

    body.is-mobile-nav-open {
        overflow: hidden;
    }

    body.is-mobile-nav-open::after {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(7, 17, 31, 0.22);
        backdrop-filter: blur(2px);
        z-index: 180;
        pointer-events: none;
    }

    .c-navbar {
        padding-top: 12px;
    }

    body.is-navbar-docked .c-navbar {
        padding-top: 0;
    }

    .c-navbar__container {
        padding: 0 12px;
    }

    .c-navbar__shell {
        display: flex;
        gap: 12px;
        min-height: 72px;
        padding: 12px 14px;
    }

    body.is-navbar-docked .c-navbar__shell {
        padding-left: 2px;
        padding-right: 2px;
    }

    body.has-offers-page.has-fixed-navbar,
    body.has-dashboard-page.has-fixed-navbar {
        padding-top: 96px;
    }

    body.has-offers-page .c-navbar,
    body.has-dashboard-page .c-navbar {
        padding-top: 0;
        border-bottom-color: rgba(168, 192, 236, 0.36);
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(14px);
        box-shadow: 0 14px 40px -34px rgba(20, 54, 126, 0.32);
    }

    body.has-offers-page .c-navbar__shell,
    body.has-dashboard-page .c-navbar__shell {
        padding-left: 2px;
        padding-right: 2px;
        border-radius: 0;
        border-color: transparent;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }

    .c-navbar__desktop {
        display: none;
    }

    .c-navbar__toggle {
        display: inline-flex;
        margin-left: auto;
        flex-shrink: 0;
    }

    .c-navbar__mobile-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 12px;
        right: 12px;
        display: block;
        z-index: -1;
        padding: 0;
        max-height: calc(100vh - 112px - env(safe-area-inset-bottom, 0px));
        border-radius: 24px;
        border: 1px solid rgba(168, 192, 236, 0.44);
        background: rgba(255, 255, 255, 0.99);
        box-shadow: var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        pointer-events: none;
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
        overflow: hidden;
    }

    .c-navbar__mobile-menu.is-open {
        z-index: 230;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .c-navbar__mobile-menu:not(.is-open) .c-mobile-nav__panel {
        pointer-events: none !important;
    }

    .c-mobile-nav__viewport {
        position: relative;
        min-height: 320px;
        max-height: inherit;
        overflow: hidden;
        transition: min-height 0.22s ease;
    }

    .c-mobile-nav__panel {
        position: absolute;
        inset: 0;
        display: grid;
        grid-template-rows: auto auto auto minmax(0, 1fr);
        align-content: start;
        gap: 18px;
        padding: 18px;
        max-height: inherit;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateX(24px);
        transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    }

    .c-mobile-nav__panel.is-active {
        position: relative;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .c-mobile-nav__panel-head {
        display: grid;
        gap: 6px;
    }

    .c-mobile-nav__title {
        margin: 0;
        font-size: 1.15rem;
    }

    .c-mobile-nav__lead {
        margin: 0;
        color: var(--color-text-muted);
        font-size: 0.94rem;
    }

    .c-mobile-nav__back {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        width: fit-content;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--color-text-muted);
        font-family: inherit;
        font-size: 0.94rem;
        font-weight: 700;
        cursor: pointer;
    }

    .c-mobile-nav__list {
        display: grid;
        gap: 10px;
    }

    .c-mobile-nav__item {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-height: 54px;
        padding: 0 16px;
        border-radius: 16px;
        border: 1px solid rgba(168, 192, 236, 0.4);
        background: rgba(244, 248, 255, 0.94);
        color: var(--color-text-main);
        font-size: 0.98rem;
        font-weight: 700;
        text-align: left;
        text-decoration: none;
    }

    .c-mobile-nav__item--button {
        width: 100%;
        font-family: inherit;
        cursor: pointer;
    }

    .c-mobile-nav__item--primary {
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        border-color: transparent;
        color: #ffffff;
    }

    .c-mobile-nav__item--admin {
        color: var(--color-primary);
    }

    .c-mobile-nav__item--danger {
        color: var(--color-danger);
        border-color: rgba(207, 48, 74, 0.18);
        background: var(--color-danger-bg);
    }

    .c-mobile-nav__item.is-active {
        background: rgba(37, 99, 235, 0.08);
        border-color: rgba(37, 99, 235, 0.26);
    }

    .c-mobile-nav__item--primary.is-active {
        background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 100%);
        color: #ffffff;
    }

    .c-mobile-nav__meta {
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    .c-mobile-nav__form,
    .c-mobile-nav__inline-form {
        margin: 0;
    }

    .c-mobile-nav__notifications {
        display: grid;
        gap: 12px;
        min-height: 0;
        max-height: min(420px, calc(100vh - 300px - env(safe-area-inset-bottom, 0px)));
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-right: 4px;
    }

    .c-mobile-bottom-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px) + var(--mobile-bottom-nav-runtime-offset, 0px));
        z-index: 125;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        padding: 8px;
        border-radius: 22px;
        border: 1px solid rgba(168, 192, 236, 0.44);
        background: rgba(255, 255, 255, 0.94);
        backdrop-filter: blur(18px);
        box-shadow: var(--shadow-lg);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .is-mobile-nav-open .c-mobile-bottom-nav {
        opacity: 0;
        pointer-events: none;
        transform: translateY(16px);
    }

    .is-mobile-bottom-nav-hidden .c-mobile-bottom-nav {
        opacity: 0;
        pointer-events: none;
        transform: translateY(16px);
    }

    .c-mobile-bottom-nav__item {
        position: relative;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 58px;
        padding: 0 10px;
        border: 0;
        border-radius: 16px;
        background: transparent;
        color: var(--color-text-muted);
        font-family: inherit;
        font-size: 0.76rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-decoration: none;
        cursor: pointer;
    }

    .c-mobile-bottom-nav__item.is-active {
        background: rgba(37, 99, 235, 0.1);
        color: var(--color-text-main);
    }

    .c-mobile-bottom-nav__icon {
        width: 22px;
        height: 22px;
    }

    .c-mobile-bottom-nav__badge {
        position: absolute;
        top: 7px;
        right: 18px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 20px;
        height: 20px;
        padding: 0 5px;
        border-radius: 999px;
        border: 2px solid rgba(255, 255, 255, 0.96);
        background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
        color: #ffffff;
        font-size: 0.72rem;
        font-weight: 800;
        line-height: 1;
        box-shadow: 0 10px 20px -16px rgba(37, 99, 235, 0.8);
    }
}

/* --------------------------------------------------------------------------
   24.Z. HOME FLOW POLISH FINAL
   -------------------------------------------------------------------------- */
.c-home-flow__intro h2 {
    line-height: 1.03;
}

.c-home-flow__intro p {
    max-width: 760px;
    color: #5E6B84;
    font-size: 17px;
    line-height: 1.75;
}

.c-home-flow__panel {
    align-items: start;
    gap: 42px;
    margin-top: 54px;
    padding: 42px 44px;
    border: 1px solid #D9E6FA;
    background: linear-gradient(180deg, #F8FBFF 0%, #EDF4FF 100%);
    box-shadow: 0 18px 46px rgba(16, 35, 70, 0.055);
}

.c-home-flow__column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.c-home-flow__column-intro {
    width: min(100%, 468px);
    margin: 0 auto;
}

.c-home-flow__divider {
    background: #DBE6F9;
}

.c-home-flow__column-intro h3 {
    font-size: 30px;
    line-height: 1.08;
    color: #102346;
}

.c-home-flow__column-intro p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.72;
    color: #5F6D86;
}

.c-home-flow__steps {
    width: min(100%, 468px);
    margin: 30px auto 0;
}

.c-home-flow__step {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 0 0 18px 0;
    margin: 0 0 18px 0;
    border-bottom: 1px solid #E1EAF9;
}

.c-home-flow__step-number {
    width: 36px;
    height: 36px;
    margin-top: 0;
    border: 1px solid #D7E4FF;
    background: #E4EDFF;
    color: #2F5DFF;
    font-size: 15px;
    font-weight: 800;
}

.c-home-flow__step-copy h4 {
    color: #102346;
    line-height: 1.35;
}

.c-home-flow__step-copy p {
    max-width: 420px;
    margin-top: 8px;
    color: #55637C;
    font-size: 15px;
    line-height: 1.72;
}

@media (max-width: 860px) {
    .c-home-flow__panel {
        gap: 0;
        padding: 24px 22px;
    }

    .c-home-flow__column-intro,
    .c-home-flow__steps {
        width: 100%;
    }

    .c-home-flow__divider {
        width: auto;
        height: 1px;
        margin: 24px 0;
        background: #DBE6F9;
    }

    .c-home-flow__column-intro h3 {
        font-size: 24px;
    }

    .c-home-flow__column-intro p {
        font-size: 15px;
    }
}

@media (max-width: 760px) {
    .c-home-flow__intro h2 {
        font-size: 40px;
        line-height: 1.03;
    }

    .c-home-flow__intro p {
        font-size: 16px;
    }
}

/* --------------------------------------------------------------------------
   24.Z1. HOME SIGNATURE POLISH FINAL
   -------------------------------------------------------------------------- */
.c-home-signature {
    padding-bottom: 8px;
}

.c-home-signature__intro {
    max-width: 760px;
}

.c-home-signature__intro h2 {
    font-size: 54px;
    line-height: 1.03;
    color: #102346;
}

.c-home-signature__intro p {
    max-width: 760px;
    color: #5F6D86;
    font-size: 17px;
    line-height: 1.75;
}

.c-home-signature__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
    margin-top: 54px;
}

.c-home-signature__card {
    text-align: left;
}

.c-home-signature__card h3 {
    margin: 0;
}

.c-home-signature__card p {
    margin: 12px 0 0 0;
}

.c-home-signature__card--a {
    grid-column: 1 / span 7;
    grid-row: 1;
    min-height: 240px;
    padding: 30px 32px;
    border-radius: 28px;
    background: linear-gradient(135deg, #0D2147 0%, #16315E 55%, #2559B6 100%);
    box-shadow: 0 20px 48px rgba(16, 35, 70, 0.12);
}

.c-home-signature__card--a h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.08;
    color: #FFFFFF;
}

.c-home-signature__card--a p {
    max-width: 500px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.9);
}

.c-home-signature__card--b {
    grid-column: 8 / span 5;
    grid-row: 1;
    min-height: 240px;
    padding: 30px 30px;
    border: 1px solid #D7E4FF;
    border-radius: 28px;
    background: linear-gradient(180deg, #EEF5FF 0%, #E5EFFF 100%);
}

.c-home-signature__card--b h3 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.08;
    color: #102346;
}

.c-home-signature__card--b p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.78;
    color: #56657D;
}

.c-home-signature__card--c,
.c-home-signature__card--d {
    min-height: 190px;
    padding: 24px 24px;
    border-radius: 24px;
    box-shadow: 0 10px 24px rgba(16, 35, 70, 0.04);
}

.c-home-signature__card--c {
    grid-column: 1 / span 4;
    grid-row: 2;
    border: 1px solid #DCE6F8;
    background: #FFFFFF;
}

.c-home-signature__card--d {
    grid-column: 5 / span 8;
    grid-row: 2;
    border: 1px solid #DDE8FB;
    background: #F4F8FF;
}

.c-home-signature__card--c h3,
.c-home-signature__card--d h3 {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.16;
    color: #102346;
}

.c-home-signature__card--c p,
.c-home-signature__card--d p {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.72;
    color: #5C6A83;
}

.c-home-signature__card--d p {
    max-width: 560px;
}

@media (max-width: 960px) {
    .c-home-signature__grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .c-home-signature__card--a {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .c-home-signature__card--b {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 240px;
    }

    .c-home-signature__card--c {
        grid-column: 1 / span 1;
        grid-row: auto;
    }

    .c-home-signature__card--d {
        grid-column: 2 / span 1;
        grid-row: auto;
    }
}

@media (max-width: 760px) {
    .c-home-signature__intro h2 {
        font-size: 40px;
        line-height: 1.03;
    }

    .c-home-signature__intro p {
        font-size: 16px;
    }

    .c-home-signature__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .c-home-signature__card--a,
    .c-home-signature__card--b,
    .c-home-signature__card--c,
    .c-home-signature__card--d {
        grid-column: auto;
        grid-row: auto;
    }

    .c-home-signature__card--a,
    .c-home-signature__card--b {
        min-height: 190px;
        padding: 24px 22px;
    }

    .c-home-signature__card--c,
    .c-home-signature__card--d {
        min-height: 160px;
        padding: 20px 18px;
    }

    .c-home-signature__card--a h3,
    .c-home-signature__card--b h3 {
        font-size: 24px;
    }

    .c-home-signature__card--a p,
    .c-home-signature__card--b p {
        font-size: 15px;
    }

    .c-home-signature__card--c h3,
    .c-home-signature__card--d h3 {
        font-size: 21px;
    }

    .c-marketplace-shell.is-filter-open .c-marketplace-filter-panel {
        border-radius: 24px;
    }
}

/* --------------------------------------------------------------------------
   24.Z2. HOME FLOW STEP ALIGNMENT
   -------------------------------------------------------------------------- */
.c-home-flow__steps {
    width: min(100%, 468px);
    margin-left: auto;
    margin-right: auto;
}

.c-home-flow__step {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
}

.c-home-flow__step-number {
    align-self: center;
    justify-self: center;
}

.c-home-flow__step-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 36px;
}

/* --------------------------------------------------------------------------
   24.Z3. HOME RESOURCES INTRO ALIGNMENT
   -------------------------------------------------------------------------- */
.c-home-resources {
    align-items: center;
}

.c-home-resources__intro {
    align-self: center;
    padding-top: 0;
    padding-bottom: 20px;
}

/* --------------------------------------------------------------------------
   24.Z4. MARKETPLACE FILTER SIDEBAR
   -------------------------------------------------------------------------- */
.c-marketplace-layout {
    display: grid;
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.c-marketplace-sidebar {
    position: sticky;
    top: 132px;
    align-self: start;
}

body.is-navbar-docked .c-marketplace-sidebar {
    top: 104px;
}

.c-filter-card--sidebar {
    margin-bottom: 0;
    padding: 24px;
    border-radius: 26px;
    max-height: calc(100vh - 148px);
    overflow-y: auto;
    overflow-x: hidden;
}

body.is-navbar-docked .c-filter-card--sidebar {
    max-height: calc(100vh - 120px);
}

.c-filter-grid--sidebar {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 18px;
    min-width: 0;
}

.c-filter-grid--sidebar > * {
    min-width: 0;
}

.c-filter-actions--sidebar {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.c-filter-actions--sidebar > * {
    width: 100%;
    justify-content: center;
}

.c-filter-advanced {
    margin-top: 2px;
    padding-top: 16px;
    border-top: 1px solid rgba(168, 192, 236, 0.3);
}

.c-filter-advanced__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 50px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(168, 192, 236, 0.4);
    background: #F7FAFF;
    color: #102346;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    user-select: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.c-filter-advanced__toggle::-webkit-details-marker {
    display: none;
}

.c-filter-advanced__toggle::after {
    content: "";
    width: 9px;
    height: 9px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.18s ease;
}

.c-filter-advanced[open] .c-filter-advanced__toggle::after {
    transform: rotate(225deg);
}

.c-filter-advanced__toggle:hover,
.c-filter-advanced__toggle:focus-visible {
    background: #F2F7FF;
    border-color: rgba(79, 140, 255, 0.42);
    color: #102346;
    outline: none;
}

.c-filter-advanced__content {
    display: grid;
    gap: 18px;
    padding-top: 16px;
}

.c-marketplace-results {
    min-width: 0;
}

@media (max-width: 980px) {
    .c-marketplace-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .c-marketplace-sidebar {
        position: static;
        top: auto;
    }

    .c-filter-card--sidebar,
    body.is-navbar-docked .c-filter-card--sidebar {
        max-height: none;
        overflow: visible;
    }
}

/* --------------------------------------------------------------------------
   24.Z5. MARKETPLACE CONTROLS REBUILD
   -------------------------------------------------------------------------- */
body {
    --market-sticky-top: 132px;
    --market-inline-padding: 32px;
    --market-sticky-top-docked: 92px;
    --market-controls-gap: 28px;
    --market-bleed-left: 0px;
    --market-bleed-right: 0px;
}

body.is-navbar-docked {
    --market-sticky-top: var(--market-sticky-top-docked);
}

.c-marketplace-controls {
    position: sticky;
    top: var(--market-sticky-top);
    z-index: 150;
    margin-bottom: var(--market-controls-gap);
    isolation: isolate;
    transition:
        margin 0.18s ease,
        padding 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.c-marketplace-controls::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--market-bleed-left) * -1);
    right: calc(var(--market-bleed-right) * -1);
    background: rgba(255, 255, 255, 1);
    border-top: 0;
    border-bottom: 1px solid rgba(168, 192, 236, 0.32);
    box-shadow: 0 18px 40px rgba(16, 35, 70, 0.08);
    backdrop-filter: blur(16px);
    pointer-events: none;
    z-index: 0;
}

body.is-navbar-docked .c-marketplace-controls {
    top: calc(var(--market-sticky-top) - 1px);
}

.c-marketplace-controls__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1240px, calc(100vw - (var(--market-inline-padding) * 2)));
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
    transition: padding 0.18s ease;
}

.c-marketplace-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 16px;
    border: 1px solid rgba(168, 192, 236, 0.44);
    background: rgba(255, 255, 255, 0.9);
    color: #102346;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(16, 35, 70, 0.08);
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.c-marketplace-control--filter {
    gap: 4px;
}

.c-marketplace-control__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.c-marketplace-control__icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.c-marketplace-control:hover,
.c-marketplace-control:focus-visible {
    border-color: rgba(59, 108, 255, 0.4);
    background: #ffffff;
    color: #102346;
    outline: none;
}

.c-marketplace-control.has-count {
    color: #2F5DFF;
}

.c-marketplace-control--sort {
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    justify-content: stretch;
    gap: 4px;
    min-width: 228px;
}

.c-marketplace-control__label {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-width: 0;
}

.c-marketplace-control__mode {
    min-width: 0;
}

.c-marketplace-control__icon--sort svg {
    width: 18px;
    height: 18px;
}

.c-marketplace-control__caret {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    transition: transform 0.18s ease;
}

.c-marketplace-control__caret svg {
    display: block;
    width: 12px;
    height: 12px;
}

.c-marketplace-sort.is-open .c-marketplace-control__caret {
    transform: rotate(180deg);
}

.c-marketplace-sort {
    position: relative;
}

.c-marketplace-sort__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 240px;
    padding: 10px;
    border-radius: 18px;
    border: 1px solid rgba(168, 192, 236, 0.42);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 18px 40px rgba(16, 35, 70, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.c-marketplace-sort.is-open .c-marketplace-sort__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.c-marketplace-sort__item {
    display: flex;
    align-items: center;
    min-height: 46px;
    min-width: max-content;
    padding: 0 14px;
    border-radius: 12px;
    color: #102346;
    font-weight: 600;
    text-decoration: none;
}

.c-marketplace-sort__item:hover,
.c-marketplace-sort__item:focus-visible,
.c-marketplace-sort__item.is-active {
    background: rgba(59, 108, 255, 0.08);
    color: #102346;
    outline: none;
}

.c-marketplace-shell {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
}

.c-marketplace-filter-panel {
    display: none;
    min-width: 0;
}

.c-marketplace-shell.is-filter-open {
    grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
}

.c-marketplace-shell.is-filter-open .c-marketplace-filter-panel {
    display: block;
}

.c-marketplace-filter-panel {
    position: sticky;
    top: calc(var(--market-sticky-top) + 82px);
    max-height: calc(100vh - var(--market-sticky-top) - 108px);
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    scrollbar-gutter: stable both-edges;
    padding: 24px 24px 48px 24px;
    border: 1px solid rgba(168, 192, 236, 0.36);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 18px 40px rgba(16, 35, 70, 0.08);
}

.c-marketplace-filter-panel__head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 18px;
    text-align: center;
}

.c-marketplace-filter-panel__head h2 {
    margin: 0;
    color: var(--color-primary);
    font-size: 1.45rem;
    line-height: 1.15;
}

.c-marketplace-filter-panel__head p {
    margin: 8px 0 0 0;
    color: #5F6D86;
}

.c-marketplace-filter-panel__close {
    display: none;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    padding: 0;
    border: 1px solid rgba(168, 192, 236, 0.42);
    border-radius: 14px;
    background: #ffffff;
    color: #102346;
    font-family: inherit;
    cursor: pointer;
}

.c-marketplace-filter-panel__close svg {
    display: block;
    width: 18px;
    height: 18px;
}

.c-marketplace-filter-form {
    display: grid;
    gap: 18px;
}

.c-marketplace-filter-form .c-filter-group {
    min-width: 0;
}

.c-marketplace-filter-form .c-form__select {
    appearance: none;
    padding-right: 46px;
    background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.5 7.5 10 12l4.5-4.5' fill='none' stroke='%23102346' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 14px 14px;
}

.c-filter-label--inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.c-filter-label--inline input {
    flex: 0 0 auto;
}

.c-marketplace-filter-advanced {
    margin-top: 4px;
    padding-top: 16px;
    border-top: 1px solid rgba(168, 192, 236, 0.3);
    display: grid;
    gap: 20px;
}

.c-marketplace-filter-advanced .c-filter-group {
    margin-top: 20px;
}

.c-marketplace-filter-advanced__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    min-height: 34px;
    margin: 0 auto;
    padding: 0 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #102346;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    text-align: center;
    user-select: none;
}

.c-marketplace-filter-advanced__toggle::-webkit-details-marker {
    display: none;
}

.c-marketplace-filter-advanced__toggle::after {
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.18s ease;
}

.c-marketplace-filter-advanced[open] .c-marketplace-filter-advanced__toggle::after {
    transform: translateY(2px) rotate(225deg);
}

.c-marketplace-filter-advanced__content {
    display: grid;
    gap: 18px;
    padding-top: 16px;
}

.c-marketplace-filter-actions {
    display: grid;
    gap: 12px;
    margin-top: 6px;
    padding-top: 18px;
    border-top: 1px solid rgba(168, 192, 236, 0.28);
}

.c-marketplace-main {
    min-width: 0;
}

@media (min-width: 981px) {
    .c-marketplace-controls::before {
        left: 0;
        right: 0;
    }

    .c-marketplace-main .c-domain-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 28px;
        justify-content: start;
    }

    .c-marketplace-main .c-domain-card {
        width: 100%;
        max-width: 360px;
        justify-self: center;
    }

    .c-marketplace-controls.is-filter-open {
        width: calc(100% - 320px);
        margin-left: 320px;
    }

    .c-marketplace-controls.is-filter-open::before {
        left: 0;
        right: 0;
    }

    .c-marketplace-controls.is-filter-open .c-marketplace-controls__bar {
        width: 100%;
        max-width: none;
        padding: 10px 20px;
    }

    .c-marketplace-shell.is-filter-open {
        grid-template-columns: minmax(280px, 320px) minmax(0, 1fr);
        align-items: start;
    }

    .c-marketplace-shell.is-filter-open .c-marketplace-filter-panel {
        display: block;
        top: var(--market-sticky-top);
        margin-top: calc(-1 * (var(--market-controls-height, 84px) + var(--market-controls-gap, 28px)));
        max-height: calc(100vh - var(--market-sticky-top) - 24px);
    }

    .c-marketplace-shell.is-filter-open .c-marketplace-main {
        position: relative;
        padding-left: 28px;
    }

    .c-marketplace-shell.is-filter-open .c-marketplace-main::before {
        content: "";
        position: absolute;
        top: -8px;
        bottom: 0;
        left: 0;
        width: 1px;
        background: rgba(216, 228, 248, 0.9);
    }

    .c-marketplace-shell.is-filter-open .c-marketplace-filter-form {
        gap: 20px;
    }

    .c-marketplace-shell.is-filter-open .c-marketplace-filter-actions {
        margin-top: 6px;
        padding-top: 18px;
        border-top: 1px solid rgba(168, 192, 236, 0.28);
    }
}

@media (min-width: 981px) {
    .c-marketplace-shell .c-domain-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .c-marketplace-shell.is-filter-open .c-domain-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1281px) {
    .c-marketplace-shell .c-domain-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .c-marketplace-shell.is-filter-open .c-domain-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.c-marketplace-load-more {
    display: none;
    justify-content: center;
    margin-top: 28px;
}

.has-js .c-marketplace-load-more {
    display: flex;
}

.c-marketplace-load-more[hidden] {
    display: none !important;
}

.c-marketplace-load-more__button {
    min-width: 280px;
}

.c-marketplace-load-more__button.is-loading {
    opacity: 0.82;
    pointer-events: none;
}

.c-marketplace-load-more__end {
    margin: 28px 0 0 0;
    text-align: center;
    color: #5F6D86;
    font-size: 0.98rem;
    font-weight: 600;
}

.c-marketplace-load-more__end[hidden] {
    display: none;
}

.c-marketplace-pagination--fallback[hidden] {
    display: none;
}

.has-js .c-marketplace-pagination--fallback {
    display: none;
}

.c-marketplace-filter-overlay {
    display: none;
}

.c-marketplace-filter-form .c-form__input.is-disabled,
.c-marketplace-filter-form .c-form__select.is-disabled {
    background: #F3F6FB;
    color: #96A2B8;
    cursor: not-allowed;
}

@media (max-width: 980px) {
    body {
        --market-sticky-top: 108px;
        --market-inline-padding: 24px;
    }

    body.is-navbar-docked {
        --market-sticky-top: var(--market-sticky-top-docked);
    }

    .c-marketplace-controls__bar {
        gap: 12px;
        padding: 10px 0px;
    }

    .c-marketplace-control {
        flex: 1 1 0;
        min-width: 0;
        padding-left: 14px;
        padding-right: 14px;
    }

    .c-marketplace-control--sort {
        min-width: 0;
    }

    .c-marketplace-control__prefix {
        display: none;
    }

    .c-marketplace-sort__menu {
        left: 0;
        right: 0;
        min-width: 0;
    }

    .c-marketplace-shell.is-filter-open {
        grid-template-columns: 1fr;
    }

    .c-marketplace-filter-panel {
        position: fixed;
        right: 18px;
        left: 18px;
        top: calc(var(--market-sticky-top) + 72px);
        max-height: calc(100vh - var(--market-sticky-top) - 92px);
        z-index: 190;
        overflow-y: auto;
        scrollbar-gutter: auto;
        overscroll-behavior: contain;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

    .c-marketplace-filter-panel.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .c-marketplace-filter-panel__close {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .c-marketplace-filter-panel__head {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr) 42px;
        align-items: center;
        gap: 10px;
        margin-bottom: 22px;
    }

    .c-marketplace-filter-panel__head h2 {
        grid-column: 2;
        justify-self: center;
        text-align: center;
        font-size: 1.35rem;
    }

    .c-marketplace-filter-panel__close {
        grid-column: 3;
        justify-self: end;
    }

    .c-marketplace-filter-overlay {
        position: fixed;
        inset: 0;
        z-index: 180;
        background: rgba(10, 21, 38, 0.28);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.18s ease, visibility 0.18s ease;
    }

    .c-marketplace-filter-overlay.is-visible {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.has-market-filter-open {
        overflow: hidden;
    }
}

@media (max-width: 640px) {
    body {
        --market-inline-padding: 18px;
    }
}

.c-notification-item--link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.c-notification-item--link:hover,
.c-notification-item--link:focus-visible {
    background: rgba(37, 99, 235, 0.06);
}

.c-form__input--readonly {
    background: #F4F7FC;
    color: #5F6D86;
    border-color: #D9E6FA;
    cursor: not-allowed;
}

.c-checkbox-wrapper--readonly {
    opacity: 0.92;
}

.c-checkbox-wrapper--readonly input {
    cursor: not-allowed;
}

.c-verification-note {
    padding: 18px 20px;
    border: 1px solid #DDE7F8;
    border-radius: 18px;
    background: #F8FBFF;
}

.c-verification-note h3 {
    margin: 0 0 12px;
    font-size: 1.05rem;
}

.c-verification-note ul {
    margin: 0;
    padding-left: 20px;
    color: #5F6D86;
}

.c-verification-note li + li {
    margin-top: 8px;
}

.c-verification-support {
    padding: 20px 22px;
    border-radius: 18px;
    background: #F8FBFF;
    border: 1px solid #DDE7F8;
}

.c-verification-support p {
    margin: 0 0 16px;
    color: #5F6D86;
}

.c-modal__shell--compact {
    width: min(560px, calc(100vw - 32px));
}

.c-offers-page {
    --offers-page-inline: clamp(16px, 3.5vw, 56px);
    --offers-sticky-top: 132px;
    --offers-sticky-top-docked: 92px;
    width: 100%;
    min-height: calc(100vh - 88px);
    padding: 0 var(--offers-page-inline) 72px;
    background: linear-gradient(180deg, #EAF2FF 0%, #E7F0FC 100%);
}

.c-offers-hero {
    max-width: var(--layout-max-container);
    margin-left: auto;
    margin-right: auto;
}

body.is-navbar-docked .c-offers-page {
    --offers-sticky-top: var(--offers-sticky-top-docked);
}

.c-offers-controls {
    position: sticky;
    top: var(--offers-sticky-top);
    z-index: 155;
    max-width: var(--layout-max-container);
    margin: 0 auto var(--market-controls-gap);
    isolation: isolate;
    transition: top 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.c-offers-controls::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
    border-bottom: 1px solid rgba(168, 192, 236, 0.32);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 18px 40px rgba(16, 35, 70, 0.08);
    backdrop-filter: blur(16px);
    pointer-events: none;
}

body.is-navbar-docked .c-offers-controls {
    top: calc(var(--offers-sticky-top) - 1px);
}

.c-offers-controls__bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(22px, 3vw, 42px);
    width: min(1240px, calc(100vw - (var(--market-inline-padding) * 2)));
    margin: 0 auto;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
}

.c-offers-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    border-radius: 18px;
    border: 1px solid rgba(168, 192, 236, 0.42);
    background: #F3F7FF;
    box-shadow: 0 14px 34px -32px rgba(20, 54, 126, 0.38);
}

.c-offers-switch--status {
    background: #F8FBFF;
}

.c-offers-switch__item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 104px;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 14px;
    color: var(--color-text-main);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.c-offers-switch__item:hover {
    color: var(--color-primary);
}

.c-offers-switch__item.is-active {
    background: #DFEAFF;
    color: var(--color-text-main);
}

.c-offers-mobile-controls {
    display: none;
    position: sticky;
    top: 72px;
    z-index: 155;
}

.c-offers-controls + .c-offers-board,
.c-offers-mobile-controls + .c-offers-board {
    margin-top: 0;
}

.c-offers-controls + .c-offers-empty-card,
.c-offers-mobile-controls + .c-offers-empty-card {
    margin-top: 0;
}

.c-offers-board {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 2.5vw, 34px);
    align-items: start;
    width: 100%;
    max-width: var(--layout-max-container);
    margin: clamp(42px, 5vw, 64px) auto 0;
}

.c-offer-card {
    --offer-accent-rgb: 47, 93, 255;
    position: relative;
    display: grid;
    gap: 16px;
    min-width: 0;
    overflow: visible;
    padding: clamp(20px, 1.7vw, 26px) clamp(16px, 1.6vw, 24px);
    border: 1px solid rgba(168, 192, 236, 0.44);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(249, 252, 255, 0.98) 100%);
    box-shadow: 0 24px 58px -44px rgba(20, 54, 126, 0.42), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.c-offer-card--status-new {
    --offer-accent-rgb: 52, 199, 89;
}

.c-offer-card--status-progress {
    --offer-accent-rgb: 242, 183, 72;
}

.c-offer-card--status-closed {
    --offer-accent-rgb: 91, 103, 122;
}

.c-offer-card:has(.c-offer-move-form.is-open) {
    z-index: 10;
}

.c-offer-card:has(.c-offer-tooltip:hover),
.c-offer-card:has(.c-offer-tooltip:focus-within) {
    z-index: 30;
}

.c-offer-card::before {
    content: "";
    position: absolute;
    inset: 0 28px auto;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, rgba(var(--offer-accent-rgb), 0), rgba(var(--offer-accent-rgb), 0.78), rgba(var(--offer-accent-rgb), 0));
    pointer-events: none;
}

.c-offer-card:hover {
    border-color: rgba(96, 142, 255, 0.52);
    box-shadow: 0 28px 68px -46px rgba(20, 54, 126, 0.48), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

.c-offer-card.is-expanded {
    grid-column: span 2;
    padding: clamp(26px, 2.4vw, 38px) clamp(24px, 2.6vw, 42px);
}

.c-offer-card__header {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 32px;
    padding: 0;
}

.c-offer-card__header h2 {
    margin: 0;
    color: var(--color-text-main);
    font-size: clamp(1.08rem, 1.35vw, 1.26rem);
    font-weight: 750;
    line-height: 1.18;
    text-align: center;
    overflow-wrap: anywhere;
}

.c-offer-card__compact {
    display: grid;
    gap: 14px;
}

.c-offer-card.is-expanded .c-offer-card__compact {
    display: none;
}

.c-offer-summary-box,
.c-offer-detail-block {
    border: 1px solid rgba(183, 203, 241, 0.58);
    border-radius: 16px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F9FF 100%);
    color: var(--color-text-main);
    box-shadow: 0 16px 34px -30px rgba(20, 54, 126, 0.35);
}

.c-offer-summary-box {
    display: grid;
    gap: 6px;
    justify-items: center;
    margin: 0 auto;
    width: min(100%, 360px);
    padding: 20px 22px;
    text-align: center;
}

.c-offer-summary-box strong {
    display: block;
    color: #08214A;
    font-size: clamp(1.16rem, 1.6vw, 1.36rem);
    font-weight: 760;
    line-height: 1.28;
}

.c-offer-summary-box span {
    display: block;
    color: #19355F;
    font-size: clamp(0.98rem, 1.25vw, 1.12rem);
    font-weight: 600;
    line-height: 1.32;
}

.c-offer-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.c-offer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 106px;
    min-height: 38px;
    padding: 0 24px;
    border: 0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.c-offer-btn--primary {
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 14px 24px -18px rgba(37, 99, 235, 0.75);
}

.c-offer-btn--primary:hover {
    background: var(--color-primary-hover);
    color: #FFFFFF;
    box-shadow: 0 16px 28px -18px rgba(37, 99, 235, 0.9);
}

.c-offer-btn--danger {
    background: #F76D72;
    color: #FFFFFF;
    box-shadow: 0 14px 24px -18px rgba(220, 38, 38, 0.68);
}

.c-offer-btn--danger:hover {
    background: #E85F62;
    color: #FFFFFF;
    box-shadow: 0 16px 28px -18px rgba(220, 38, 38, 0.82);
}

.c-offer-move-form {
    position: relative;
    display: inline-flex;
    margin: 0;
}

.c-offer-move-form.is-open {
    z-index: 8;
}

.c-offer-move {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 106px;
    min-height: 38px;
    padding: 0 24px;
    border: 0;
    border-radius: 10px;
    background: #E6F0FF;
    color: var(--color-text-main);
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 12px 22px -18px rgba(37, 99, 235, 0.55);
    transition: box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.c-offer-move:hover,
.c-offer-move:focus-visible,
.c-offer-move-form.is-open .c-offer-move {
    background: #DCEAFF;
    box-shadow: 0 14px 24px -18px rgba(37, 99, 235, 0.72);
}

.c-offer-move svg {
    flex: 0 0 auto;
    width: 13px;
    height: 13px;
    pointer-events: none;
    transition: transform 0.18s ease;
}

.c-offer-move-form.is-open .c-offer-move svg {
    transform: rotate(180deg);
}

.c-offer-move__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    min-width: 100%;
    padding: 8px;
    border-radius: 16px;
    border: 1px solid rgba(168, 192, 236, 0.52);
    background: #FFFFFF;
    box-shadow: 0 20px 44px rgba(16, 35, 70, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.c-offer-move-form.is-open .c-offer-move__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.c-offer-move__item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 40px;
    padding: 0 12px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    color: var(--color-text-main);
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    cursor: pointer;
}

.c-offer-move__item:hover,
.c-offer-move__item:focus-visible,
.c-offer-move__item.is-active {
    background: rgba(59, 108, 255, 0.08);
    color: var(--color-text-main);
}

.c-offer-details {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 16px;
}

.c-offer-details[hidden] {
    display: none;
}

.c-offer-detail-block {
    display: grid;
    gap: 10px;
    position: relative;
    padding: 18px 20px;
    overflow: visible;
}

.c-offer-detail-block:has(.c-offer-tooltip:hover),
.c-offer-detail-block:has(.c-offer-tooltip:focus-within) {
    z-index: 20;
}

.c-offer-detail-block::before {
    content: "";
    position: absolute;
    inset: 16px auto 16px 0;
    width: 3px;
    border-radius: 0 999px 999px 0;
    background: rgba(47, 93, 255, 0.24);
}

.c-offer-detail-block > * {
    position: relative;
    z-index: 1;
}

.c-offer-detail-block p {
    margin: 0;
    color: var(--color-text-main);
    font-size: clamp(0.94rem, 1.05vw, 1.04rem);
    font-weight: 560;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.c-offer-detail-block strong {
    color: #244367;
    font-weight: 700;
}

.c-offer-detail-value {
    color: #102347;
    font-weight: 500;
}

.c-offer-detail-block--message p + p {
    color: #2B4161;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.45;
}

.c-offer-copy-line,
.c-offer-status-line {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.c-offer-icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 1px solid rgba(168, 192, 236, 0.58);
    border-radius: 999px;
    background: #EEF5FF;
    color: #2563EB;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.c-offer-icon-btn:hover,
.c-offer-icon-btn:focus-visible {
    border-color: rgba(59, 108, 255, 0.42);
    background: #E1ECFF;
    color: var(--color-primary);
}

.c-offer-icon-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.c-offer-icon-btn [data-copy-feedback] {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 5;
    transform: translateX(-50%);
    padding: 5px 9px;
    border-radius: 999px;
    background: #10203C;
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 14px 26px -18px rgba(16, 32, 60, 0.6);
}

.c-offer-tooltip {
    position: relative;
    display: inline-flex;
    z-index: 30;
}

.c-offer-tooltip__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 999px;
    border: 1px solid rgba(168, 192, 236, 0.72);
    background: #E6F0FF;
    color: #2563EB;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    cursor: help;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.c-offer-tooltip__button:hover,
.c-offer-tooltip__button:focus-visible {
    border-color: rgba(59, 108, 255, 0.46);
    background: #DCEAFF;
    color: var(--color-primary);
}

.c-offer-tooltip__panel {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 10px);
    z-index: 100;
    width: min(360px, calc(100vw - 48px));
    transform: translateX(-50%);
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(168, 192, 236, 0.55);
    background: #FFFFFF;
    color: #44536B;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.55;
    box-shadow: 0 24px 48px -30px rgba(20, 54, 126, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.16s ease, visibility 0.16s ease;
}

.c-offer-tooltip:hover .c-offer-tooltip__panel,
.c-offer-tooltip:focus-within .c-offer-tooltip__panel {
    opacity: 1;
    visibility: visible;
}

.c-offer-actions--details {
    justify-content: flex-start;
    padding-top: 2px;
}

.c-offers-empty-card {
    display: grid;
    justify-items: center;
    gap: 14px;
    max-width: 720px;
    margin: clamp(42px, 5vw, 64px) auto 0;
    padding: 30px;
    border-radius: 26px;
    background: #FFFFFF;
    text-align: center;
    box-shadow: 0 26px 68px -52px rgba(20, 54, 126, 0.38);
}

.c-offers-empty-card h2 {
    margin: 0;
    color: var(--color-text-main);
    font-size: 1.25rem;
}

.c-offers-empty-card p {
    margin: 0;
    max-width: 520px;
    color: var(--color-text-muted);
    font-size: 0.96rem;
}

.c-offer-modal .c-card__body {
    display: grid;
    gap: 14px;
}

.c-offer-modal h2 {
    margin: 0;
    font-size: 1.25rem;
}

.c-offer-modal p {
    margin: 0;
    color: var(--color-text-muted);
}

.c-offer-modal__actions {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 1120px) {
    .c-offers-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .c-offer-card.is-expanded {
        grid-column: span 2;
    }
}

@media (max-width: 720px) {
    body.has-offers-page.has-fixed-navbar.is-navbar-docked,
    body.has-dashboard-page.has-fixed-navbar.is-navbar-docked {
        padding-top: 96px;
    }

    .c-offers-page {
        --offers-page-inline: 14px;
        --offers-sticky-top: 72px;
        min-height: calc(100vh - 96px);
        padding: 0 14px 56px;
    }

    .c-offers-controls--desktop {
        display: none;
    }

    .c-offers-mobile-controls {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        margin: 0 -14px 24px;
        padding: 9px 14px;
        background: #FFFFFF;
        border-top: 1px solid rgba(168, 192, 236, 0.36);
        border-bottom: 1px solid rgba(168, 192, 236, 0.36);
        box-shadow: 0 16px 32px -30px rgba(20, 54, 126, 0.42);
    }

    .c-offers-mobile-dropdown {
        position: relative;
        min-width: 0;
    }

    .c-offers-mobile-dropdown.is-open {
        z-index: 3;
    }

    .c-offers-mobile-dropdown__button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: 100%;
        min-height: 46px;
        padding: 0 14px;
        border-radius: 14px;
        border: 1px solid rgba(168, 192, 236, 0.65);
        background: #FFFFFF;
        color: var(--color-text-main);
        font-family: inherit;
        font-size: 0.91rem;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 12px 28px rgba(16, 35, 70, 0.08);
        transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
    }

    .c-offers-mobile-dropdown__button:hover,
    .c-offers-mobile-dropdown__button:focus-visible,
    .c-offers-mobile-dropdown.is-open .c-offers-mobile-dropdown__button {
        border-color: rgba(59, 108, 255, 0.4);
        background: #FFFFFF;
        color: var(--color-text-main);
        outline: none;
    }

    .c-offers-mobile-dropdown__button span {
        min-width: 0;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .c-offers-mobile-dropdown__button svg {
        flex: 0 0 auto;
        width: 14px;
        height: 14px;
        pointer-events: none;
        transition: transform 0.18s ease;
    }

    .c-offers-mobile-dropdown.is-open .c-offers-mobile-dropdown__button svg {
        transform: rotate(180deg);
    }

    .c-offers-mobile-dropdown__menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        min-width: 100%;
        padding: 8px;
        border-radius: 16px;
        border: 1px solid rgba(168, 192, 236, 0.42);
        background: #FFFFFF;
        box-shadow: 0 18px 40px rgba(16, 35, 70, 0.12);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        pointer-events: none;
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    }

    .c-offers-mobile-dropdown.is-open .c-offers-mobile-dropdown__menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .c-offers-mobile-dropdown__item {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 12px;
        border-radius: 11px;
        color: var(--color-text-main);
        font-size: 0.9rem;
        font-weight: 600;
        text-align: center;
        text-decoration: none;
    }

    .c-offers-mobile-dropdown__item:hover,
    .c-offers-mobile-dropdown__item:focus-visible,
    .c-offers-mobile-dropdown__item.is-active {
        background: rgba(59, 108, 255, 0.08);
        color: var(--color-text-main);
        outline: none;
    }

    .c-offers-board {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 28px;
    }

    .c-offer-card,
    .c-offer-card.is-expanded {
        grid-column: auto;
        padding: 22px 18px;
        border-radius: 26px;
    }

    .c-offer-card__header h2 {
        font-size: 1.12rem;
        font-weight: 700;
    }

    .c-offer-summary-box {
        width: 100%;
        padding: 16px;
    }

    .c-offer-summary-box strong {
        font-size: 1.16rem;
    }

    .c-offer-summary-box span {
        font-size: 1rem;
    }

    .c-offer-detail-block {
        padding: 15px 16px;
    }

    .c-offer-detail-block p {
        font-size: 1rem;
        line-height: 1.42;
    }

    .c-offer-detail-block--message p + p {
        font-size: 0.82rem;
    }

    .c-offer-status-line {
        position: relative;
    }

    .c-offer-status-line .c-offer-tooltip {
        position: static;
    }

    .c-offer-status-line .c-offer-tooltip__panel {
        left: 0;
        right: 0;
        bottom: calc(100% + 8px);
        width: auto;
        transform: none;
    }

    .c-offer-actions--details {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: space-between;
        align-items: center;
        gap: 10px 12px;
    }

    .c-offer-actions--details .c-offer-move-form {
        justify-self: start;
    }

    .c-offer-actions--details .c-offer-btn--danger {
        justify-self: end;
        min-width: 0;
        padding-inline: 13px;
    }

    .c-offer-actions--details [data-offer-toggle] {
        grid-column: 1 / -1;
        justify-self: center;
        order: 3;
    }
}

@media (max-width: 420px) {
    .c-offers-mobile-controls {
        gap: 8px;
    }

    .c-offers-mobile-dropdown__button {
        padding-inline: 12px;
        font-size: 0.86rem;
    }

    .c-offers-mobile-dropdown__item {
        font-size: 0.86rem;
    }

    .c-offer-actions {
        gap: 10px;
    }

    .c-offer-btn,
    .c-offer-move {
        min-width: 102px;
        font-size: 0.82rem;
    }
}

body.has-static-navbar {
    padding-top: 0;
}

body.has-static-navbar .c-navbar {
    position: relative !important;
    inset: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    padding-top: 0;
    border-bottom-color: rgba(168, 192, 236, 0.36);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    box-shadow: 0 14px 40px -34px rgba(20, 54, 126, 0.32);
}

body.has-static-navbar .c-navbar__container {
    position: relative;
    max-width: var(--layout-max-content);
    margin: 0 auto;
    padding: 0 20px;
}

body.has-static-navbar .c-navbar__shell {
    min-height: 84px;
    padding: 14px 18px;
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
    border-color: transparent;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

.c-domain-page--detail {
    max-width: 1220px;
}

.c-domain-detail__return-row {
    margin-bottom: 24px;
}

.c-domain-detail__status-note {
    margin-bottom: 24px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(168, 192, 236, 0.34);
    background: rgba(248, 251, 255, 0.82);
    color: #5F6D86;
    line-height: 1.7;
}

.c-domain-detail__status-note strong {
    color: #102346;
    font-weight: 800;
}

.c-domain-detail__hero-meta {
    align-items: center;
}

.c-domain-detail__meta-pill {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: #102346;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.c-domain-detail__section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.c-domain-detail__section-head h2,
.c-domain-detail__section-head h3 {
    margin-bottom: 0;
}

.c-domain-detail__section-note {
    margin: 8px 0 0 0;
    color: #5F6D86;
    line-height: 1.7;
}

.c-domain-detail__panel--quick-offer {
    background: linear-gradient(180deg, rgba(248, 251, 255, 0.96) 0%, rgba(237, 244, 255, 0.98) 100%);
    border-color: rgba(168, 192, 236, 0.42);
}

.c-domain-quick-offer__choices {
    display: grid;
    gap: 12px;
}

.c-domain-detail__panel--form {
    scroll-margin-top: 24px;
}

.c-domain-detail__lead-message {
    padding: 16px 18px;
    border-radius: 16px;
    background: #F8FBFF;
    border: 1px solid #DDE7F8;
    color: var(--color-text-main);
    line-height: 1.7;
}

.c-domain-detail__description {
    line-height: 1.85;
    color: #445067;
}

.c-domain-detail__message-field {
    resize: none;
}

body.has-static-navbar .c-domain-context-nav [data-marketplace-return],
body.has-static-navbar .c-domain-bottom-cta [data-marketplace-return] {
    padding: 0px 26px;
}

@media (max-width: 960px) {
    body.has-static-navbar .c-navbar {
        padding-top: 0;
    }

    body.has-static-navbar .c-navbar__container {
        padding: 0 12px;
    }

    body.has-static-navbar .c-navbar__shell {
        min-height: 72px;
        padding: 12px 14px;
        padding-left: 2px;
        padding-right: 2px;
    }

    .c-domain-detail__section-head {
        flex-direction: column;
    }
}

/* --- Domain adatlap uj szerkezet --- */
.c-domain-show {
    background: #EEF4FF;
}

.c-domain-show__container {
    width: min(1240px, calc(100vw - (var(--market-inline-padding) * 2)));
    margin: 0 auto;
}

.c-domain-show__hero {
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 28% 12%, rgba(47, 109, 246, 0.22), transparent 30%),
        radial-gradient(circle at 76% 0%, rgba(255, 255, 255, 0.1), transparent 24%),
        linear-gradient(90deg, #254E99 0%, #2C62C4 25%, #2E6CDB 50%, #2C62C4 75%, #254E99 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.c-domain-show__hero-inner {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 46px 0;
}

.c-domain-show__eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    font-weight: 800;
}

.c-domain-show__hero h1 {
    margin: 0;
    color: #FFFFFF;
    font-size: clamp(2.4rem, 5vw, 4.35rem);
    line-height: 1;
}

.c-domain-show__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.c-domain-show__badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 11px;
    border-radius: 999px;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
}

.c-domain-show__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    margin-right: 6px;
    border-radius: 999px;
    background: currentColor;
}

.c-domain-show__badge--trust {
    background: #E8F8C8;
    color: #197B50;
}

.c-domain-show__badge--premium {
    background: #D9F3FF;
    color: #166FA4;
}

.c-domain-context-nav {
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid #D8E4F8;
}

.c-domain-context-nav__inner {
    min-height: 72px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
}

.c-domain-context-nav__left {
    justify-self: start;
}

.c-domain-context-nav__center {
    display: flex;
    gap: 10px;
    justify-content: center;
    justify-self: center;
}

.c-domain-context-nav__right {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    justify-self: end;
}

.c-domain-context-nav__form {
    margin: 0;
}

.c-domain-context-nav__button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid #C8DAFA;
    border-radius: 14px;
    background: #FFFFFF;
    color: #102346;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.c-domain-context-nav__button:hover,
.c-domain-context-nav__button:focus-visible {
    color: #2F5DFF;
    border-color: #AFC9FF;
    background: #F8FBFF;
    outline: none;
}

.c-domain-context-nav__button svg {
    width: 18px;
    height: 18px;
}

.c-domain-context-nav__button.is-active {
    color: #2F5DFF;
    border-color: #AFC9FF;
    background: #EEF5FF;
}

.c-domain-context-nav__button.is-disabled,
.c-domain-context-nav__button:disabled {
    opacity: 0.44;
    pointer-events: none;
    cursor: default;
}

.c-domain-context-nav__mobile-label {
    display: none;
}

.c-domain-show__trade {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
    padding: clamp(56px, 7vw, 92px) clamp(36px, 5vw, 76px);
}

.c-domain-offer-card,
.c-domain-process-card {
    background: #FFFFFF;
    box-shadow: 0 16px 38px rgba(16, 35, 70, 0.08);
}

.c-domain-offer-form,
.c-domain-state-card {
    padding: 0;
}

.c-domain-offer-form__price {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 26px 24px;
    color: #111827;
    font-size: clamp(1.35rem, 2vw, 1.72rem);
    font-weight: 900;
    text-align: center;
}

.c-domain-offer-form__price strong {
    color: #2F5DFF;
}

.c-domain-offer-form__choices {
    display: grid;
}

.c-domain-offer-choice {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 28px;
    background: #F4F8FF;
    color: #102346;
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
}

.c-domain-offer-choice input[type="radio"] {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
    accent-color: #FFFFFF;
}

.c-domain-offer-choice--stack {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
}

.c-domain-offer-choice__line {
    display: flex;
    align-items: center;
    gap: 18px;
}

.c-domain-offer-choice__amount {
    display: grid;
    gap: 8px;
    padding-left: 40px;
}

.c-domain-offer-choice__amount[hidden],
.c-domain-offer-form__amount[hidden] {
    display: none;
}

.c-domain-offer-form__amount {
    display: grid;
    gap: 8px;
    padding: 18px 28px;
    background: #2C62C4;
    color: #FFFFFF;
}

.c-domain-offer-form__amount .c-form__label,
.c-domain-offer-choice__amount .c-form__label{
    color: white !important;
}

.c-domain-offer-form__amount .c-form__label,
.c-domain-offer-choice__amount .c-form__label {
    color: #FFFFFF;
}

.c-domain-offer-form__fields {
    display: grid;
    gap: 16px;
    padding: 30px 34px 34px;
}

.c-domain-offer-form .c-form__input,
.c-domain-offer-form .c-form__textarea {
    border-color: #D3DCEB;
    background: #F7FAFF;
}

.c-domain-offer-form .c-form__input[readonly] {
    color: #53627B;
    background: #EEF3FB;
    cursor: not-allowed;
}

.c-domain-privacy-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #102346;
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.45;
}

.c-domain-privacy-check input {
    width: 20px;
    height: 20px;
    margin-top: 1px;
    flex: 0 0 auto;
}

.c-domain-process-card {
    padding: 38px 42px;
    align-self: center;
}

.c-domain-process-card h2 {
    margin: 0 0 28px;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2rem);
}

.c-domain-process-list {
    display: grid;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.c-domain-process-list li {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    align-items: start;
}

.c-domain-process-list span {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #EAF2FF;
    color: #2F5DFF;
    font-weight: 900;
}

.c-domain-process-list h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
}

.c-domain-process-list p {
    margin: 0;
    color: #445067;
    font-size: 0.92rem;
    line-height: 1.45;
}

.c-domain-process-card__contact {
    margin: 28px 0 0;
    text-align: center;
    color: #102346;
    font-weight: 800;
    line-height: 1.55;
}

.c-domain-process-card__contact a {
    color: #2F5DFF;
}

.c-domain-state-card {
    display: grid;
    gap: 18px;
    padding: 34px;
}

.c-domain-state-card h2 {
    margin: 0;
}

.c-domain-state-card p {
    margin: 0;
    color: #5F6D86;
    line-height: 1.7;
}

.c-domain-state-card__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
}

.c-domain-state-card__list div {
    padding: 14px;
    border-radius: 14px;
    background: #F7FAFF;
    border: 1px solid #DDE7F8;
}

.c-domain-state-card__list dt {
    color: #66748D;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.c-domain-state-card__list dd {
    margin: 4px 0 0;
    color: #102346;
    font-weight: 800;
}

.c-domain-state-card__message {
    padding: 16px;
    border-radius: 16px;
    background: #F8FBFF;
    border: 1px solid #DDE7F8;
    color: #445067;
    line-height: 1.7;
}

.c-domain-state-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.c-domain-show__info-section {
    padding: clamp(46px, 6vw, 70px) clamp(36px, 6vw, 112px) clamp(56px, 7vw, 82px);
}

.c-domain-show__info-section--with-description {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(20px, 4vw, 36px);
}

.c-domain-show__info-section--with-description .c-domain-show__description {
    display: grid;
    grid-template-rows: auto 1fr;
}

.c-domain-show__description h2 {
    margin: 0 auto 14px 20px;
    font-size: 1.2rem;
}

.c-domain-show__description-box {
    margin: 0 auto;
    padding: 24px 28px;
    border-radius: 22px;
    background: #FFFFFF;
    color: #102346;
    line-height: 1.7;
}

.c-domain-show__info-section--with-description .c-domain-show__description-box {
    height: 100%;
    width: 100%;
}

.c-domain-info-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 6vw, 74px);
    padding-top: 34px;
}

.c-domain-show__info-section > .c-domain-info-cards:first-child {
    padding-top: 0;
}

.c-domain-show__info-section--with-description .c-domain-info-cards {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 22px);
    padding-top: 0;
}

.c-domain-info-card {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 34px 28px;
    border-radius: 22px;
    background: #FFFFFF;
    text-align: center;
}

.c-domain-show__info-section--with-description .c-domain-info-card {
    height: 100%;
}

@media (max-width: 900px) {
    .c-domain-show__info-section--with-description {
        grid-template-columns: 1fr;
    }

    .c-domain-show__info-section--with-description .c-domain-info-cards {
        grid-template-rows: none;
    }
}

.c-domain-info-card h2 {
    margin: 0;
    font-size: 1.2rem;
}

.c-domain-info-card p {
    max-width: 320px;
    margin: 0;
    color: #445067;
    font-size: 0.92rem;
    line-height: 1.55;
}

.c-domain-faq {
    padding: clamp(50px, 7vw, 76px) clamp(28px, 6vw, 90px);
}

.c-domain-faq h2 {
    margin: 0 0 34px;
    color: var(--color-text-main);
    text-align: center;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.c-domain-faq__list {
    max-width: 760px;
    display: grid;
    gap: 16px;
    margin: 0 auto;
}

.c-domain-faq__item {
    background: #FFFFFF;
    color: #0B1B38;
}

.c-domain-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

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

.c-domain-faq__item summary::after {
    content: "+";
    font-size: 1.4rem;
    font-weight: 900;
}

.c-domain-faq__item[open] summary::after {
    content: "×";
}

.c-domain-faq__item p {
    margin: 0;
    padding: 0 24px 22px;
    color: #102346;
    font-weight: 700;
    line-height: 1.55;
}

.c-domain-bottom-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding: clamp(46px, 6vw, 70px) clamp(16px, 3vw, 22px);
}

.c-domain-bottom-cta article {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: clamp(34px, 5vw, 48px);
    border-radius: 34px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
    text-align: center;
}

.c-domain-bottom-cta h2 {
    margin: 0;
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.c-domain-bottom-cta p {
    max-width: 420px;
    margin: 0;
    color: #0B1B38;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 600;
    line-height: 1.25;
}

.c-domain-utility-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 0 0 54px;
}

.c-domain-utility-actions form {
    margin: 0;
}

@media (max-width: 980px) {
    .c-domain-show__container {
        width: min(100% - 28px, var(--layout-max-content));
    }

    .c-domain-context-nav__inner {
        min-height: 64px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }

    .c-domain-context-nav__center {
        margin-left: auto;
    }

    .c-domain-context-nav__right {
        display: none;
    }

    .c-domain-context-nav__desktop-label,
    .c-domain-context-nav__button--icon span {
        display: none;
    }

    .c-domain-context-nav__mobile-label {
        display: inline;
    }

    .c-domain-context-nav__button {
        min-width: 48px;
        min-height: 46px;
        padding: 0 14px;
    }

    .c-domain-show__trade {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px 14px;
    }

    .c-domain-process-card {
        padding: 30px 24px;
    }

    .c-domain-info-cards,
    .c-domain-bottom-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .c-domain-show__hero-inner {
        min-height: 190px;
        padding: 36px 0;
    }

    .c-domain-show__badges {
        gap: 6px;
    }

    .c-domain-show__badge {
        min-height: 26px;
        padding: 5px 9px;
        font-size: 0.68rem;
    }

    .c-domain-offer-form__price {
        padding: 22px 18px;
        font-size: 1.25rem;
    }

    .c-domain-offer-choice,
    .c-domain-offer-form__amount {
        padding: 16px 20px;
    }

    .c-domain-offer-form__fields,
    .c-domain-state-card {
        padding: 24px 20px;
    }

    .c-domain-state-card__list {
        grid-template-columns: 1fr;
    }

    .c-domain-show__description,
    .c-domain-info-cards,
    .c-domain-faq {
        margin: 0px;
        border-radius: 0px;
    }
}

/* --- Domain detail visual polish --- */
.c-domain-show {
    background:
        radial-gradient(circle at 18% 0%, rgba(59, 108, 255, 0.08), transparent 30%),
        linear-gradient(180deg, #EEF4FF 0%, #F7FAFF 46%, #EEF4FF 100%);
}

body.has-domain-detail-page.has-static-navbar .c-navbar {
    padding-top: 0;
    border-bottom: 1px solid #D8E4F8;
    background: rgba(248, 251, 255, 0.92);
    box-shadow: none;
}

body.has-domain-detail-page.has-static-navbar .c-navbar__shell {
    min-height: 82px;
}

.c-domain-context-nav {
    position: relative;
    z-index: 5;
    margin: 0;
    background: rgba(248, 251, 255, 0.96);
    border-top: 0;
    border-bottom: 1px solid #D8E4F8;
    box-shadow: none;
    backdrop-filter: blur(14px);
}

.c-domain-context-nav__inner {
    min-height: 66px;
}

.c-domain-context-nav__button {
    min-height: 44px;
    border-color: #CADBF6;
    background: rgba(255, 255, 255, 0.74);
    color: #102346;
    box-shadow: 0 8px 20px rgba(16, 35, 70, 0.045);
}

.c-domain-context-nav__button:hover,
.c-domain-context-nav__button:focus-visible {
    background: #FFFFFF;
    border-color: #AFC9FF;
    color: #2F5DFF;
}

.c-domain-context-nav__button.is-active {
    background: #EAF2FF;
    color: #2F5DFF;
    border-color: #AFC9FF;
}

.c-domain-context-nav__button.is-disabled,
.c-domain-context-nav__button:disabled {
    background: rgba(255, 255, 255, 0.52);
    color: #8A98B0;
    box-shadow: none;
}

.c-domain-show__hero-inner {
    min-height: 220px;
    padding: 44px 0 48px;
}

.c-domain-show__eyebrow {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
    letter-spacing: 0.02em;
}

.c-domain-show__hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.7rem);
    line-height: 0.96;
}

.c-domain-show__badges {
    margin-top: 18px;
    gap: 9px;
}

.c-domain-show__badge {
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.76rem;
    letter-spacing: 0.045em;
    box-shadow: 0 8px 18px rgba(3, 14, 34, 0.14);
}

.c-domain-show__badge::before {
    width: 7px;
    height: 7px;
}

.c-domain-show__badge--trust {
    background: linear-gradient(180deg, #DDFBEF 0%, #BEF3DE 100%);
    color: #08724D;
    border-color: rgba(98, 217, 170, 0.62);
}

.c-domain-show__badge--premium {
    background: linear-gradient(180deg, #E8F2FF 0%, #CFE3FF 100%);
    color: #174F9D;
    border-color: rgba(117, 171, 255, 0.58);
}

.c-domain-show__badge--seal,
.c-domain-show__badge--invoice,
.c-domain-show__badge--diamond {
    color: #FFFFFF;
}

.c-domain-show__badge--seal {
    background: #6DC93B;
    border-color: rgba(255, 255, 255, 0.18);
}

.c-domain-show__badge--invoice {
    background: #EEB51A;
    border-color: rgba(255, 255, 255, 0.18);
}

.c-domain-show__badge--diamond {
    background: #00C8FF;
    border-color: rgba(255, 255, 255, 0.18);
}

.c-domain-show__badge--seal::before,
.c-domain-show__badge--invoice::before,
.c-domain-show__badge--diamond::before {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.c-domain-show__badge--seal::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cmask id='m'%3E%3Crect width='24' height='24' fill='white'/%3E%3Cpath d='M7.15 12.2l3.02 3.05 6.58-7' fill='none' stroke='black' stroke-width='2.45' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/mask%3E%3C/defs%3E%3Cpath fill='white' mask='url(%23m)' d='M12 1.4l2.05 1.72 2.66-.22 1.08 2.44 2.44 1.08-.22 2.66L21.73 12l-1.72 2.05.22 2.66-2.44 1.08-1.08 2.44-2.66-.22L12 21.73l-2.05-1.72-2.66.22-1.08-2.44-2.44-1.08.22-2.66L2.27 12l1.72-2.05-.22-2.66 2.44-1.08 1.08-2.44 2.66.22L12 1.4z'/%3E%3C/svg%3E");
}

.c-domain-show__badge--invoice::before {
    background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cmask id='m'%3E%3Crect width='24' height='24' fill='white'/%3E%3Cpath stroke='black' stroke-width='1.75' stroke-linecap='round' d='M9 8h6M9 11h6M9 14h3.6'/%3E%3Ccircle cx='15.3' cy='14' r='1.15' fill='black'/%3E%3C/mask%3E%3C/defs%3E%3Cpath fill='white' mask='url(%23m)' d='M5 3.5h14v17l-1.8-1.05-1.8 1.05-1.8-1.05-1.8 1.05-1.8-1.05-1.8 1.05L5 19.45v-15.95z'/%3E%3C/svg%3E");
}

.c-domain-show__badge--diamond::before {
    background-image: url("data:image/svg+xml,%3Csvg width='25' height='24' viewBox='0 0 25 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7.05 3.8h10.9L22.5 9.1l-10 11.1-10-11.1 4.55-5.3z'/%3E%3Cpath d='M2.5 9.1h20M7.05 3.8l3.2 5.3 2.25 11.1M17.95 3.8l-3.2 5.3-2.25 11.1M12.5 3.8v5.3'/%3E%3C/g%3E%3C/svg%3E");
}

.c-domain-show__trade {
    position: relative;
    gap: clamp(34px, 5vw, 72px);
    padding: clamp(56px, 7vw, 86px) clamp(34px, 5vw, 72px);
    border-radius: 30px;
    margin-top: 10px;
}

.c-domain-offer-card,
.c-domain-process-card {
    border: 1px solid #D5E4FA;
    border-radius: 28px;
    background: #FFFFFF;
    box-shadow: 0 20px 52px rgba(16, 35, 70, 0.08);
    overflow: hidden;
}

.c-domain-offer-form__price {
    justify-content: flex-start;
    gap: 14px;
    padding: 28px 34px;
    border-bottom: 1px solid #E4ECFA;
    background:
        linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
    color: #102346;
    text-align: left;
}

.c-domain-offer-form__price span {
    color: #102346;
    font-weight: 900;
}

.c-domain-offer-form__price strong {
    color: #2F6DF6;
    letter-spacing: -0.025em;
}

.c-domain-offer-form__choices {
    background: #FFFFFF;
}

.c-domain-offer-choice {
    min-height: 72px;
    padding: 18px 30px;
    background: #F8FBFF;
    color: #102346;
    border-bottom: 1px solid #E4ECFA;
    transition: background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.c-domain-offer-choice:hover {
    background: #EAF2FF;
    box-shadow: inset 4px 0 0 rgba(47, 109, 246, 0.34);
}

.c-domain-offer-choice:has(input:checked) {
    background: #2C62C4;
    color: #FFFFFF;
}

.c-domain-offer-choice input[type="radio"] {
    accent-color: #3B6CFF;
}

.c-domain-offer-choice:has(input:checked) input[type="radio"] {
    accent-color: black;
}

.c-domain-offer-choice__amount {
    padding-left: 42px;
}

.c-domain-offer-form__amount {
    padding: 22px 34px;
    background: #2C62C4;
    color: #FFFFFF;
}

.c-domain-offer-form__amount .c-form__label,
.c-domain-offer-choice__amount .c-form__label {
    color: rgba(255, 255, 255, 0.9);
}

.c-domain-offer-form__fields {
    gap: 18px;
    padding: 32px 34px 36px;
    background: #FFFFFF;
}

.c-domain-offer-form .c-form__label {
    color: #102346;
    font-weight: 800;
}

.c-domain-offer-form .c-form__input,
.c-domain-offer-form .c-form__textarea {
    min-height: 52px;
    border-color: #CBDCF5;
    border-radius: 14px;
    background: #F8FBFF;
    color: #102346;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.c-domain-offer-form .c-form__input:focus,
.c-domain-offer-form .c-form__textarea:focus {
    border-color: #8DB2FF;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(59, 108, 255, 0.12);
}

.c-domain-offer-form .c-form__input[readonly] {
    color: #53627B;
    background: #EDF4FF;
    border-color: #D8E4F8;
}

.c-domain-detail__message-field,
.c-domain-offer-form .c-form__textarea {
    resize: none;
}

.c-domain-privacy-check {
    padding: 12px 0;
    border-radius: 16px;
    border: 0;
    background: transparent;
    color: #445067;
}

.c-domain-privacy-check a {
    color: #2F5DFF;
    font-weight: 900;
}

.c-domain-process-card {
    padding: clamp(34px, 4vw, 46px);
    align-self: center;
}

.c-domain-process-card h2 {
    color: #102346;
    letter-spacing: -0.035em;
}

.c-domain-process-list {
    gap: 26px;
}

.c-domain-process-list li {
    position: relative;
    grid-template-columns: 44px 1fr;
    gap: 16px;
}

.c-domain-process-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 18px;
    top: 42px;
    bottom: -22px;
    width: 1px;
    background: #D8E4F8;
}

.c-domain-process-list span {
    width: 38px;
    height: 38px;
    background: #EAF2FF;
    border: 1px solid #D6E4FF;
    color: #2F5DFF;
    box-shadow: 0 8px 16px rgba(47, 93, 255, 0.08);
}

.c-domain-process-list h3 {
    color: #102346;
    font-size: 1.08rem;
}

.c-domain-process-list p {
    color: #5F6D86;
    font-size: 0.94rem;
    line-height: 1.58;
}

.c-domain-process-card__contact {
    padding-top: 24px;
    border-top: 1px solid #E4ECFA;
    color: #445067;
}

.c-domain-process-card__contact a {
    color: #2F5DFF;
    font-weight: 900;
}

.c-domain-state-card {
    padding: 36px;
    background: #FFFFFF;
}

.c-domain-state-card h2 {
    color: #102346;
    font-size: clamp(1.6rem, 2.2vw, 2rem);
}

.c-domain-state-card__list div,
.c-domain-state-card__message {
    background: #F8FBFF;
    border-color: #D8E4F8;
}

.c-domain-show__description,
.c-domain-info-cards {
    border-radius: 30px;
}

.c-domain-show__description h2 {
    color: #102346;
    font-size: clamp(1.22rem, 1.8vw, 1.45rem);
    letter-spacing: -0.02em;
}

.c-domain-show__description-box {
    padding: 26px 30px;
    border: 1px solid #D8E4F8;
    border-radius: 26px;
    background: #FFFFFF;
    color: #445067;
    box-shadow: 0 14px 32px rgba(16, 35, 70, 0.045);
}

.c-domain-info-cards {
    gap: clamp(24px, 4vw, 48px);
    border-radius: 30px;
}

.c-domain-info-card {
    padding: 36px 30px;
    border: 1px solid #D8E4F8;
    border-radius: 30px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
    box-shadow: 0 14px 32px rgba(16, 35, 70, 0.05);
}

.c-domain-info-card h2 {
    color: #102346;
    letter-spacing: -0.02em;
}

.c-domain-info-card p {
    color: #5F6D86;
}

.c-domain-info-card .c-btn--outline {
    background: #10264D;
    border-color: #10264D;
    color: #FFFFFF;
}

.c-domain-info-card .c-btn--outline:hover,
.c-domain-info-card .c-btn--outline:focus-visible {
    background: #2F6DF6;
    border-color: #2F6DF6;
    color: #FFFFFF;
}

.c-domain-faq {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.c-domain-faq__list {
    gap: 14px;
}

.c-domain-faq__item {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    color: #102346;
    box-shadow: 0 16px 36px rgba(3, 14, 34, 0.12);
    overflow: hidden;
}

.c-domain-faq__item summary {
    padding: 20px 24px;
    font-size: clamp(1.08rem, 1.8vw, 1.34rem);
    line-height: 1.2;
}

.c-domain-faq__item summary::after {
    color: #2F5DFF;
}

.c-domain-faq__item[open] summary::after {
    content: "\00d7";
}

.c-domain-faq__item p {
    padding: 0 24px 24px;
    color: #445067;
    font-weight: 600;
    line-height: 1.7;
}

.c-domain-bottom-cta {
    gap: 28px;
    padding: clamp(54px, 7vw, 82px) 16px clamp(58px, 7vw, 86px);
}

.c-domain-bottom-cta article {
    position: relative;
    overflow: hidden;
    align-content: center;
    min-height: 245px;
    padding: clamp(34px, 4vw, 50px);
    border: 1px solid #D8E4F8;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(59, 108, 255, 0.1), transparent 42%),
        linear-gradient(180deg, #FFFFFF 0%, #F7FAFF 100%);
    box-shadow: 0 18px 44px rgba(16, 35, 70, 0.06);
}

.c-domain-bottom-cta article:nth-child(2) {
    border-color: rgba(47, 109, 246, 0.34);
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 42%),
        linear-gradient(135deg, #10264D 0%, #173867 56%, #2F6DF6 100%);
}

.c-domain-bottom-cta h2 {
    color: #102346;
    letter-spacing: -0.035em;
}

.c-domain-bottom-cta p {
    color: #445067;
    font-size: clamp(1.05rem, 2vw, 1.38rem);
    line-height: 1.32;
}

.c-domain-bottom-cta article:nth-child(2) h2,
.c-domain-bottom-cta article:nth-child(2) p {
    color: #FFFFFF;
}

.c-domain-bottom-cta article:nth-child(2) .c-btn--outline {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #FFFFFF;
}

.c-domain-bottom-cta article:nth-child(2) .c-btn--outline:hover,
.c-domain-bottom-cta article:nth-child(2) .c-btn--outline:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    color: #FFFFFF;
}

.c-domain-utility-actions {
    margin-bottom: 72px;
}

.c-domain-show .c-btn--primary {
    border-color: transparent;
    background: linear-gradient(135deg, #2563EB 0%, #2F6DF6 100%);
    color: #FFFFFF;
    box-shadow: 0 14px 28px rgba(37, 99, 235, 0.22);
}

.c-domain-show .c-btn--primary:hover:not(:disabled),
.c-domain-show .c-btn--primary:focus-visible {
    background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
    color: #FFFFFF;
}

.c-domain-show .c-btn--outline {
    border-color: #BFD3F5;
    color: #102346;
}

.c-domain-show .c-btn--outline:hover:not(:disabled),
.c-domain-show .c-btn--outline:focus-visible {
    border-color: #8DB2FF;
    background: #EAF2FF;
    color: #2F6DF6;
}

.c-domain-show .c-domain-info-card .c-btn--outline {
    background: #2F6DF6;
    border-color: #2F6DF6;
    color: #FFFFFF;
}

.c-domain-show .c-domain-info-card .c-btn--outline:hover:not(:disabled),
.c-domain-show .c-domain-info-card .c-btn--outline:focus-visible {
    background: #10264D;
    border-color: #10264D;
    color: #FFFFFF;
}

.c-domain-offer-form .c-form__group,
.c-domain-offer-form__fields > * {
    min-width: 0;
}

.c-domain-offer-form .c-form__input,
.c-domain-offer-form .c-form__textarea {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 980px) {
    .c-domain-show__container {
        width: min(100% - 28px, var(--layout-max-content));
    }

    .c-domain-context-nav__inner {
        min-height: 62px;
    }

    .c-domain-show__trade {
        gap: 26px;
        padding: 34px 14px;
        border-radius: 0px;
    }

    .c-domain-process-card {
        align-self: stretch;
    }
}

@media (max-width: 640px) {
    .c-domain-show > .c-domain-show__container {
        width: 100%;
    }

    .c-domain-show__container {
        width: min(100% - 24px, var(--layout-max-content));
    }

    .c-domain-context-nav__inner {
        gap: 8px;
    }

    .c-domain-context-nav__button {
        min-width: 46px;
        min-height: 44px;
        padding: 0 13px;
        box-shadow: none;
    }

    .c-domain-show__hero-inner {
        min-height: 210px;
        padding: 38px 0;
    }

    .c-domain-show__hero h1 {
        font-size: clamp(2.2rem, 12vw, 3.2rem);
    }

    .c-domain-show__badges {
        justify-content: center;
    }

    .c-domain-offer-form__price {
        padding: 24px 20px;
    }

    .c-domain-offer-choice,
    .c-domain-offer-form__amount,
    .c-domain-offer-form__fields,
    .c-domain-state-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .c-domain-offer-choice__amount {
        padding-left: 0;
    }

    .c-domain-show__info-section {
        padding-left: 0;
        padding-right: 0;
    }

    .c-domain-show__description,
    .c-domain-info-cards,
    .c-domain-faq {
        margin: 0px;
        border-radius: 0px;
    }

    .c-domain-info-card,
    .c-domain-bottom-cta article {
        border-radius: 26px;
    }
}

/* --- Domain detail typography normalization --- */
.c-domain-show {
    font-size: 1rem;
    line-height: 1.6;
}

.c-domain-show__eyebrow {
    font-size: 0.95rem;
    line-height: 1.35;
    font-weight: 800;
}

.c-domain-show__hero h1 {
    font-size: clamp(2.45rem, 4.4vw, 4.15rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.c-domain-show__badge {
    font-size: 0.8rem;
    line-height: 1;
    font-weight: 700;
}

.c-domain-offer-form__price {
    font-size: 1.4rem;
    line-height: 1.35;
}

.c-domain-offer-form__price strong {
    font-size: 1.5rem;
    line-height: 1.05;
}

.c-domain-offer-choice,
.c-domain-privacy-check {
    font-size: 0.98rem;
    line-height: 1.45;
}

.c-domain-offer-form .c-form__label,
.c-domain-offer-choice__amount .c-form__label,
.c-domain-offer-form__amount .c-form__label {
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 800;
}

.c-domain-offer-form .c-form__input,
.c-domain-offer-form .c-form__textarea {
    font-size: 1rem;
    line-height: 1.55;
}

.c-domain-process-card h2,
.c-domain-state-card h2 {
    font-size: clamp(1.45rem, 2vw, 1.75rem);
    line-height: 1.12;
    font-weight: 800;
}

.c-domain-process-list h3 {
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 800;
}

.c-domain-process-list p,
.c-domain-process-card__contact,
.c-domain-state-card p,
.c-domain-state-card__message {
    font-size: 0.94rem;
    line-height: 1.65;
}

.c-domain-state-card__list dt {
    font-size: 0.76rem;
    line-height: 1.25;
}

.c-domain-state-card__list dd {
    font-size: 0.98rem;
    line-height: 1.35;
}

.c-domain-show__description h2,
.c-domain-info-card h2 {
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    line-height: 1.18;
    font-weight: 800;
}

.c-domain-show__description-box {
    font-size: 1rem;
    line-height: 1.75;
}

.c-domain-info-card p {
    font-size: 0.94rem;
    line-height: 1.65;
}

.c-domain-faq h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.15rem);
    line-height: 1.12;
    font-weight: 800;
}

.c-domain-faq__item summary {
    font-size: clamp(1rem, 1.5vw, 1.14rem);
    line-height: 1.25;
    font-weight: 800;
    user-select: none;
}

.c-domain-faq__item p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.c-domain-bottom-cta h2 {
    font-size: clamp(1.45rem, 2.2vw, 1.85rem);
    line-height: 1.14;
    font-weight: 800;
}

.c-domain-bottom-cta p {
    font-size: clamp(1rem, 1.45vw, 1.15rem);
    line-height: 1.55;
    font-weight: 600;
}

.c-domain-bottom-cta {
    gap: 24px;
    padding-top: clamp(42px, 5vw, 58px);
    padding-bottom: clamp(46px, 5vw, 64px);
}

.c-domain-bottom-cta article {
    min-height: 210px;
    padding: 34px 32px;
    border-radius: 28px;
    gap: 16px;
}

.c-domain-bottom-cta article > * {
    max-width: 430px;
}

.c-domain-bottom-cta .c-btn {
    width: 240px;
    max-width: 100%;
    min-height: 52px;
}

@media (max-width: 640px) {
    .c-domain-show {
        font-size: 0.96rem;
    }

    .c-domain-show__eyebrow {
        font-size: 0.84rem;
    }

    .c-domain-show__hero h1 {
        font-size: clamp(2rem, 10vw, 2.65rem);
        line-height: 1;
    }

    .c-domain-show__badge {
        font-size: 0.7rem;
    }

    .c-domain-offer-form__price {
        font-size: 1.1rem;
    }

    .c-domain-offer-form__price strong {
        font-size: 1.2rem;
    }

    .c-domain-offer-choice,
    .c-domain-privacy-check,
    .c-domain-offer-form .c-form__input,
    .c-domain-offer-form .c-form__textarea {
        font-size: 0.94rem;
    }

    .c-domain-process-card h2,
    .c-domain-state-card h2,
    .c-domain-faq h2,
    .c-domain-bottom-cta h2 {
        font-size: 1.35rem;
    }

    .c-domain-process-card,
    .c-domain-show__description {
        margin-top: 30px
    }

    .c-domain-show__description,
    .c-domain-info-cards {
        padding-top: 0px;
    }

    .c-domain-show__description h2,
    .c-domain-info-card h2 {
        font-size: 1.08rem;
    }

    .c-domain-faq__item summary {
        font-size: 0.95rem;
    }

    .c-domain-bottom-cta p {
        font-size: 0.96rem;
    }

    .c-domain-bottom-cta {
        gap: 18px;
        padding-top: 34px;
        padding-bottom: 46px;
    }

    .c-domain-bottom-cta article {
        min-height: 0;
        padding: 30px 22px;
        border-radius: 24px;
    }

    .c-domain-bottom-cta .c-btn {
        width: min(100%, 220px);
        min-height: 50px;
    }
}

.c-domain-owner-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    margin: 42px 0 34px;
    padding: 34px;
    border: 1px solid #d5e4fa;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(59, 108, 255, 0.1), transparent 38%),
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 18px 46px rgba(16, 35, 70, 0.07);
}

.c-domain-owner-panel h2 {
    margin: 0 0 22px;
    color: #2f5dff;
    font-size: clamp(1.7rem, 3vw, 2.25rem);
    line-height: 1.08;
}

.c-domain-owner-panel__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.c-domain-owner-panel__meta div {
    padding: 16px 18px;
    border: 1px solid #dce8fb;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.78);
}

.c-domain-owner-panel__meta dt {
    margin: 0 0 6px;
    color: #5f6d86;
    font-size: 0.88rem;
    font-weight: 700;
}

.c-domain-owner-panel__meta dd {
    margin: 0;
    color: #102346;
    font-size: 1.08rem;
    font-weight: 800;
}

.c-domain-owner-panel__actions {
    display: grid;
    gap: 12px;
    width: min(100%, 260px);
}

.c-domain-owner-panel__actions .c-btn {
    width: 100%;
    justify-content: center;
}

.c-domain-share__mobile-text {
    display: none;
}

@media (max-width: 860px) {
    .c-domain-owner-panel {
        grid-template-columns: 1fr;
        padding: 26px 22px;
        margin-top: 30px;
    }

    .c-domain-owner-panel__meta {
        grid-template-columns: 1fr;
    }

    .c-domain-owner-panel__actions {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .c-domain-owner-panel {
        border-radius: 24px;
    }

    .c-domain-owner-panel__share .c-domain-share__desktop-text {
        display: none;
    }

    .c-domain-owner-panel__share .c-domain-share__mobile-text {
        display: inline;
    }
}

/* Marketplace cards aligned with the domain detail hero language. */
.c-domain-grid {
    align-items: start;
}

.c-domain-card {
    height: auto;
    align-self: start;
}

.c-domain-card__body {
    flex: 0 0 auto;
}

.c-domain-card__header {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    min-height: 114px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: #2563EB;
}

.c-domain-card__header::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(7, 24, 56, 0.08));
}

.c-domain-card__header > * {
    position: relative;
    z-index: 1;
}

.c-domain-card__name {
    color: #FFFFFF;
    text-align: center;
    text-shadow: 0 8px 22px rgba(3, 14, 34, 0.2);
}

.c-domain-card__badges {
    align-items: center;
    justify-content: center;
    min-height: 0;
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 14px;
}

.c-domain-card__body,
.c-domain-card__meta,
.c-domain-card__price,
.c-domain-card__trend {
    text-align: center;
}

.c-domain-card__footer {
    justify-content: center;
}

.c-domain-card__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    max-width: 100%;
    min-height: 30px;
    overflow: visible;
    padding: 5px 8px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.67rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.025em;
    box-shadow: 0 8px 18px rgba(3, 14, 34, 0.14);
    white-space: nowrap;
    user-select: none;
    cursor: pointer;
    transition: box-shadow 0.18s ease;
}

.c-domain-card__badge:hover,
.c-domain-card__badge:focus-visible {
    box-shadow: 0 10px 24px rgba(3, 14, 34, 0.2);
    outline: none;
    z-index: 3;
}

.c-domain-card__badge-label {
    display: inline;
    user-select: none;
}

.c-domain-card__badge-icon {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: inherit;
    font-size: 0.66rem;
    font-weight: 900;
    margin-right: 5px;
}

.c-domain-card__badge--neutral {
    background: rgba(255, 255, 255, 0.16);
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.22);
}

.c-domain-card .c-domain-show__badge {
    width: auto;
    min-width: 0;
    max-width: 100%;
    min-height: 30px;
    padding: 5px 8px;
    font-size: 0.67rem;
    letter-spacing: 0.025em;
}

.c-domain-card .c-domain-show__badge--seal::before,
.c-domain-card .c-domain-show__badge--invoice::before,
.c-domain-card .c-domain-show__badge--diamond::before {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    margin-right: 5px;
}

.c-domain-show__badge[data-badge-tooltip] {
    user-select: none;
    cursor: pointer;
}

.c-badge-tooltip {
    position: fixed;
    z-index: 1200;
    width: max-content;
    max-width: min(320px, calc(100vw - 24px));
    padding: 12px 14px;
    border: 1px solid rgba(168, 192, 236, 0.58);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.98);
    color: #13233F;
    box-shadow: 0 18px 44px rgba(16, 35, 70, 0.18);
    font-size: 0.88rem;
    line-height: 1.45;
    text-align: left;
}

.c-badge-tooltip[hidden] {
    display: none;
}

.c-badge-tooltip__title {
    display: block;
    margin-bottom: 5px;
    font-size: 0.82rem;
    font-weight: 900;
}

.c-badge-tooltip__text {
    display: block;
    color: #51627D;
}

.c-domain-card__footer .c-btn--outline {
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-text-main);
    border-color: rgba(168, 192, 236, 0.72);
    box-shadow: none;
    transform: none;
}

.c-domain-card__footer .c-btn--outline:hover:not(:disabled),
.c-domain-card__footer .c-btn--outline:focus-visible {
    background: rgba(168, 192, 236, 0.20);
    color: #2563EB;
    border-color: var(--color-border-focus);
    box-shadow: none;
    transform: none;
}

/* --- Hirdetés űrlapoldalak --- */
body.has-domain-add-page {
    background: linear-gradient(180deg, #F5F9FF 0%, #EAF3FF 100%);
}

body.has-domain-add-page.has-static-navbar .c-navbar {
    padding-top: 0;
    border-bottom: 1px solid #D8E4F8;
    background: rgba(248, 251, 255, 0.92);
    box-shadow: none;
}

body.has-domain-add-page.has-static-navbar .c-navbar__shell {
    min-height: 82px;
}

.c-domain-add-page {
    width: min(100%, var(--layout-max-content));
    margin: 10px auto 72px auto;
    padding: 0 20px;
}

.c-domain-add-hero {
    position: relative;
    min-height: 178px;
    margin-bottom: 32px;
    padding: 28px 32px 34px;
}

.c-domain-add-hero__top {
    position: absolute;
    top: 24px;
    left: 28px;
}

.c-domain-add-back {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(168, 192, 236, 0.72);
    background: rgba(255, 255, 255, 0.72);
    color: var(--color-text-main);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.c-domain-add-back:hover,
.c-domain-add-back:focus-visible {
    background: rgba(232, 241, 255, 0.94);
    border-color: var(--color-border-focus);
    color: var(--color-primary);
    outline: none;
}

.c-domain-add-hero__copy {
    width: min(100%, 760px);
    margin: 0 auto;
    text-align: center;
}

.c-domain-add-hero .c-marketplace-header__desc {
    margin-left: auto;
    margin-right: auto;
}

.c-domain-add-card {
    overflow: visible;
    border-radius: 28px;
    border: 1px solid rgba(168, 192, 236, 0.44);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 70px -48px rgba(16, 35, 70, 0.45);
}

.c-domain-add-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 1fr);
    gap: 44px;
    padding: 44px;
}

.c-domain-add-form,
.c-domain-add-side {
    min-width: 0;
}

.c-domain-add-form {
    display: grid;
    gap: 34px;
}

.c-domain-add-section {
    margin: 0;
}

.c-domain-add-section__heading {
    margin-bottom: 16px;
}

.c-domain-add-section__title {
    margin-bottom: 9px;
    font-size: 1rem;
}

.c-domain-add-section__title span {
    color: var(--color-text-muted);
    font-size: 0.86rem;
    font-weight: 700;
}

.c-domain-add-section__note {
    max-width: 620px;
    margin: 0 0 12px 0;
    color: var(--color-text-muted);
    line-height: 1.45;
}

.c-domain-add-domain-row,
.c-domain-add-price-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 0.32fr);
    gap: 18px;
}

.c-domain-add-tld-select {
    min-width: 112px;
}

.c-domain-add-readonly-field {
    display: flex;
    align-items: center;
    min-height: 50px;
    padding: 12px 15px;
    border: 1px solid rgba(168, 192, 236, 0.54);
    border-radius: 14px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F9FF 100%);
    color: var(--color-text-main);
    font-size: 1rem;
    font-weight: 800;
}

.c-domain-add-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.c-domain-add-select-card {
    display: grid;
    gap: 7px;
    min-width: 0;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.c-domain-add-select-card .c-form__select {
    color: var(--color-text-main);
    font-size: 0.95rem;
    font-weight: 700;
}

.c-domain-add-price-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
    column-gap: 22px;
    align-items: start;
}

.c-domain-add-price-grid .c-form__group {
    margin-bottom: 0;
}

.c-domain-price-type-group {
    position: relative;
    z-index: 1;
}

.c-domain-price-type-group:has(.c-domain-price-tooltip:hover),
.c-domain-price-type-group:has(.c-domain-price-tooltip:focus-within) {
    z-index: 80;
}

.c-domain-price-type-label {
    position: static;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-bottom: 8px;
}

.c-domain-price-type-label .c-form__label {
    margin-bottom: 0;
}

.c-domain-price-tooltip {
    position: static;
    z-index: 30;
    display: inline-flex;
    align-items: center;
}

.c-domain-price-tooltip__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    padding: 0;
    border: 1px solid rgba(59, 130, 246, 0.34);
    border-radius: 999px;
    background: rgba(219, 234, 254, 0.86);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    cursor: help;
}

.c-domain-price-tooltip__button:hover,
.c-domain-price-tooltip__button:focus-visible {
    background: rgba(191, 219, 254, 0.95);
    border-color: rgba(59, 130, 246, 0.58);
    outline: none;
}

.c-domain-price-tooltip__panel {
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 120;
    display: grid;
    gap: 4px;
    width: min(326px, 100%, calc(100vw - 40px));
    padding: 14px 15px;
    border: 1px solid rgba(168, 192, 236, 0.72);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    color: var(--color-text-main);
    box-shadow: 0 22px 48px -26px rgba(16, 35, 70, 0.34);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    visibility: hidden;
}

.c-domain-price-tooltip__panel::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 88px;
    width: 12px;
    height: 12px;
    border-left: 1px solid rgba(168, 192, 236, 0.72);
    border-top: 1px solid rgba(168, 192, 236, 0.72);
    background: rgba(255, 255, 255, 0.98);
    transform: rotate(45deg);
}

.c-domain-price-tooltip:hover .c-domain-price-tooltip__panel,
.c-domain-price-tooltip:focus-within .c-domain-price-tooltip__panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.c-domain-price-tooltip__panel strong {
    margin-top: 5px;
    color: var(--color-text-main);
    font-size: 0.84rem;
    line-height: 1.25;
}

.c-domain-price-tooltip__panel strong:first-child {
    margin-top: 0;
}

.c-domain-price-tooltip__panel span {
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 650;
    line-height: 1.45;
}

.c-domain-add-description {
    min-height: 150px;
    resize: vertical;
}

.c-domain-add-counter {
    margin-top: 8px;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: right;
}

.c-domain-add-field-hint {
    margin: 8px 0 0;
    color: var(--color-text-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.c-domain-add-page .c-form__error:empty {
    display: none;
}

.c-domain-add-side {
    display: grid;
    align-content: start;
    gap: 18px;
}

.c-domain-add-preview,
.c-domain-add-note {
    border-radius: 22px;
    border: 1px solid rgba(168, 192, 236, 0.46);
    background: rgba(247, 251, 255, 0.9);
    box-shadow: var(--shadow-sm);
}

.c-domain-add-preview {
    padding: 18px;
}

.c-domain-add-side__title {
    margin: 0 0 12px;
    color: var(--color-text-main);
    font-size: 1.05rem;
    line-height: 1.2;
}

.c-domain-add-preview-card {
    width: min(100%, 292px);
    margin: 0 auto;
    border-radius: 24px;
    box-shadow: 0 22px 50px -38px rgba(16, 35, 70, 0.5);
}

.c-domain-add-preview-card .c-domain-card__header {
    min-height: 68px;
    padding: 17px 16px;
    background: linear-gradient(135deg, #2563EB 0%, #2F6BEF 100%);
}

.c-domain-add-preview-card .c-domain-card__name {
    min-height: 28px;
    font-size: 1.48rem;
}

.c-domain-add-preview-card .c-domain-card__body {
    gap: 16px;
    padding: 20px 20px 18px;
    background: #FFFFFF;
}

.c-domain-add-preview-card .c-domain-card__price {
    font-size: 1.58rem;
    line-height: 1.1;
}

.c-domain-add-preview-button {
    pointer-events: none;
    user-select: none;
}

.c-domain-add-note {
    padding: 18px;
    border-color: rgba(245, 158, 11, 0.28);
    background: linear-gradient(135deg, rgba(255, 251, 235, 0.96), rgba(255, 247, 214, 0.72));
    color: #7C4A03;
}

.c-domain-add-note h2 {
    margin: 0 0 8px;
    color: #A16207;
    font-size: 1.02rem;
}

.c-domain-add-note p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.45;
}

.c-domain-add-submit-row {
    padding: 14px 44px 44px;
}

.c-domain-add-submit {
    min-height: 54px;
    font-size: 1rem;
}

.c-domain-add-dirty-modal .c-modal__shell {
    max-width: 480px;
}

.c-domain-add-dirty-modal h2 {
    margin: 0 34px 12px 0;
    color: var(--color-text-main);
    font-size: 1.55rem;
    line-height: 1.18;
}

.c-domain-add-dirty-modal p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.c-domain-add-dirty-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 960px) {
    .c-domain-add-page {
        margin-top: 8px;
        padding: 0 14px 84px;
    }

    .c-domain-add-hero {
        min-height: 0;
        padding: 24px 18px;
        margin-bottom: 18px;
    }

    .c-domain-add-hero__top {
        position: static;
        display: flex;
        justify-content: center;
        margin-bottom: 18px;
    }

    .c-domain-add-card__body {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 30px;
    }

    .c-domain-add-category-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .c-domain-add-preview {
        order: 1;
    }

    .c-domain-add-note {
        order: 2;
    }

    .c-domain-add-submit-row {
        padding: 8px 30px 30px;
    }
}

@media (max-width: 560px) {
    body.has-domain-add-page.has-static-navbar .c-navbar__shell {
        min-height: 72px;
    }

    .c-domain-add-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .c-domain-add-hero {
        border-radius: 22px;
    }

    .c-domain-add-domain-row,
    .c-domain-add-price-grid {
        grid-template-columns: 1fr;
    }

    .c-domain-price-tooltip__panel {
        top: 28px;
        width: min(100%, calc(100vw - 68px));
    }

    .c-domain-add-card {
        border-radius: 24px;
    }

    .c-domain-add-card__body {
        padding: 22px;
    }

    .c-domain-add-preview,
    .c-domain-add-note {
        padding: 18px;
    }

    .c-domain-add-preview-card .c-domain-card__name {
        font-size: 1.45rem;
    }

    .c-domain-add-dirty-actions {
        flex-direction: column;
    }

    .c-domain-add-dirty-actions .c-btn {
        width: 100%;
    }
}

/* --- Fiókbeállítások oldal --- */
body.has-settings-page {
    background: linear-gradient(180deg, #EEF5FF 0%, #E8F1FC 100%);
}

body.has-settings-page .c-settings-shell {
    width: min(100%, 1040px);
    margin: 20px auto 78px;
    padding: 0 20px;
}

.c-settings-hero {
    justify-content: center;
    margin-bottom: 26px;
    padding: 42px 28px;
    border: 1px solid rgba(168, 192, 236, 0.46);
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(79, 140, 255, 0.1), transparent 34%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 255, 0.94));
    box-shadow: 0 26px 68px -48px rgba(20, 54, 126, 0.44);
    text-align: center;
}

.c-settings-hero .c-page-header__title {
    margin-bottom: 10px;
    font-size: clamp(2.15rem, 4.2vw, 3.35rem);
    line-height: 1.04;
}

.c-settings-hero .c-page-header__desc {
    max-width: 680px;
    margin: 0 auto;
}

.c-settings-list {
    display: grid;
    gap: 30px;
    width: min(100%, 900px);
    margin: 0 auto;
}

.c-settings-card {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border: 1px solid rgba(168, 192, 236, 0.46);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 58px -44px rgba(20, 54, 126, 0.38), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

body.has-settings-page .c-settings-section {
    border: 0;
}

body.has-settings-page .c-settings-section__title {
    margin: 0 0 14px;
    color: #102347;
    font-size: clamp(1.28rem, 2vw, 1.55rem);
    line-height: 1.18;
}

body.has-settings-page .c-settings-section__desc {
    max-width: 720px;
    margin: 0 0 28px;
    color: #63718A;
    font-size: 0.98rem;
    line-height: 1.65;
}

body.has-settings-page .c-checkbox-wrapper {
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    max-width: 680px;
    margin: 2px 0 0;
    padding: 18px 20px;
    border: 1px solid rgba(168, 192, 236, 0.46);
    border-radius: 18px;
    background: rgba(248, 251, 255, 0.92);
}

body.has-settings-page .c-checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--color-primary);
    transform: none;
}

body.has-settings-page .c-checkbox-wrapper__title {
    color: #102347;
    font-weight: 800;
}

body.has-settings-page .c-checkbox-wrapper__desc {
    margin-top: 3px;
    color: #63718A;
    line-height: 1.45;
}

body.has-settings-page .c-alert {
    margin: 0 0 22px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(248, 251, 255, 0.94);
    border-color: rgba(168, 192, 236, 0.46);
    color: #243650;
    line-height: 1.5;
}

body.has-settings-page .c-settings-form {
    display: grid;
    gap: 22px;
}

body.has-settings-page .c-settings-form.u-mt-4 {
    margin-top: 22px !important;
}

body.has-settings-page .c-settings-form .c-form__group,
body.has-settings-page .c-settings-form .c-form-split,
body.has-settings-page .c-settings-form .c-inline-actions,
body.has-settings-page .c-settings-form .c-alert {
    margin: 0;
}

body.has-settings-page .c-settings-form .c-form-split .c-form__group {
    margin: 0;
}

body.has-settings-page .c-form-split {
    gap: 20px;
}

body.has-settings-page .c-form__group {
    margin-bottom: 20px;
}

body.has-settings-page .c-form__input {
    min-height: 50px;
    border-radius: 14px;
}

body.has-settings-page .c-inline-actions {
    margin-top: 24px;
}

body.has-settings-page .c-btn {
    min-height: 46px;
    border-radius: 13px;
    font-size: 0.94rem;
}

body.has-settings-page .c-btn--outline {
    background: rgba(255, 255, 255, 0.82);
}

body.has-settings-page .c-danger-zone {
    padding: 0;
    border-radius: 20px;
    border: 0;
    background: transparent;
}

body.has-settings-page .c-danger-zone__title {
    color: #D92D4A;
}

body.has-settings-page .c-danger-zone h3 {
    margin: 0 0 16px;
    font-size: clamp(1.28rem, 2vw, 1.55rem);
    line-height: 1.18;
}

body.has-settings-page .c-danger-zone__copy {
    margin: 0 0 24px;
    color: #243650;
    line-height: 1.65;
}

body.has-settings-page .c-danger-zone .c-alert {
    background: rgba(248, 251, 255, 0.94);
    border-color: rgba(168, 192, 236, 0.46);
    color: #243650;
}

.c-flash-stack .c-alert--flash {
    margin: 0;
    box-shadow: 0 16px 34px -22px rgba(15, 23, 42, 0.55);
}

.c-flash-stack .c-alert--success {
    background: var(--color-success-bg);
    color: var(--color-success);
    border-color: #a7f3d0;
}

.c-flash-stack .c-alert--danger {
    background: var(--color-danger-bg);
    color: var(--color-danger);
    border-color: #fecaca;
}

.c-flash-stack .c-alert--warning {
    background: var(--color-warning-bg);
    color: var(--color-warning);
    border-color: #fde68a;
}

.c-flash-stack .c-alert--neutral {
    background: var(--color-bg-alt);
    color: var(--color-text-main);
    border-color: var(--color-border);
}

body.has-verification-page .c-settings-list {
    width: min(100%, 960px);
}

.c-verification-page > .c-verification-sms-card {
    width: min(100%, 960px);
    margin: 0 auto 30px;
}

body.has-verification-page .c-verification-note,
body.has-verification-page .c-verification-support,
body.has-verification-page .c-verification-sms-card {
    border-color: rgba(168, 192, 236, 0.46);
    background: rgba(248, 251, 255, 0.92);
    box-shadow: none;
}

body.has-verification-page .c-verification-note ul {
    line-height: 1.55;
}

.c-verification-sms-card {
    scroll-margin-top: 126px;
}

.c-verification-sms-form {
    margin-top: 20px;
}

.c-verification-sms-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
}

.c-verification-sms-actions .c-btn {
    min-width: 178px;
}

@media (max-width: 560px) {
    .c-verification-sms-actions {
        display: grid;
    }

    .c-verification-sms-actions .c-btn {
        width: 100%;
        min-width: 0;
    }
}

/* --- Gyakori kérdések oldal --- */
body.has-faq-page {
    background: linear-gradient(180deg, #EEF5FF 0%, #E8F1FC 100%);
}

body.has-faq-page .c-info-page {
    width: min(100%, var(--layout-max-container));
    margin: 20px auto 78px;
    padding: 0 20px;
}

/* --- Tudástár --- */
body.has-knowledge-page {
    background: linear-gradient(180deg, #EEF5FF 0%, #E8F1FC 100%);
}

.c-knowledge-page {
    width: min(100%, var(--layout-max-container));
    margin: 20px auto 84px;
    padding: 0 20px;
}

.c-knowledge-hero {
    margin-bottom: 30px;
}

.c-knowledge-section {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.c-knowledge-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.c-knowledge-section__head h2 {
    margin: 0;
    color: #102347;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.1;
}

.c-knowledge-topic-grid,
.c-knowledge-card-grid {
    display: grid;
    gap: 18px;
}

.c-knowledge-topic-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.c-knowledge-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.c-knowledge-card-grid--featured {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.c-knowledge-topic-card,
.c-knowledge-card,
.c-knowledge-group,
.c-knowledge-article,
.c-knowledge-cta article {
    border: 1px solid rgba(168, 192, 236, 0.46);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 58px -44px rgba(20, 54, 126, 0.38), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.c-knowledge-topic-card {
    padding: 24px;
    border-radius: 22px;
}

.c-knowledge-topic-card h3,
.c-knowledge-card h3,
.c-knowledge-card h4 {
    margin: 0;
    color: #102347;
    line-height: 1.18;
}

.c-knowledge-topic-card h3 {
    font-size: 1.08rem;
}

.c-knowledge-topic-card p,
.c-knowledge-card p {
    margin: 12px 0 0;
    color: #5C6B84;
    line-height: 1.65;
}

.c-knowledge-card {
    display: flex;
    flex-direction: column;
    min-height: 250px;
    padding: 24px;
    border-radius: 22px;
}

.c-knowledge-card h3,
.c-knowledge-card h4 {
    margin-top: 14px;
    font-size: 1.08rem;
}

.c-knowledge-card__button {
    width: fit-content;
    margin-top: auto;
}

.c-knowledge-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    min-height: 28px;
    padding: 5px 10px;
    border: 1px solid rgba(168, 192, 236, 0.55);
    border-radius: 999px;
    background: #EEF5FF;
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 800;
}

.c-knowledge-groups {
    display: grid;
    gap: 26px;
}

.c-knowledge-group {
    padding: 26px;
    border-radius: 24px;
}

.c-knowledge-group__head {
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(168, 192, 236, 0.46);
}

.c-knowledge-group__head h3 {
    margin: 0;
    color: #102347;
    font-size: clamp(1.24rem, 1.8vw, 1.55rem);
}

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

.c-knowledge-cta--single {
    grid-template-columns: minmax(0, 1fr);
}

.c-knowledge-cta article {
    padding: 30px;
    border-radius: 24px;
}

.c-knowledge-cta h2 {
    margin: 0;
    color: #102347;
    font-size: clamp(1.35rem, 2vw, 1.72rem);
}

.c-knowledge-cta p {
    max-width: 640px;
    margin: 12px 0 20px;
    color: #5C6B84;
    line-height: 1.65;
}

.c-knowledge-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    width: min(100%, 920px);
    margin: 0 auto 18px;
    color: #6B7B96;
    font-size: 0.9rem;
    font-weight: 700;
}

.c-knowledge-breadcrumb a {
    color: #51617B;
}

.c-knowledge-article-page {
    width: min(100%, 1040px);
}

.c-knowledge-article {
    width: min(100%, 920px);
    margin: 0 auto;
    padding: clamp(28px, 5vw, 48px);
    border-radius: 28px;
}

.c-knowledge-article__header {
    display: grid;
    gap: 16px;
    text-align: left;
}

.c-knowledge-article__header h1 {
    max-width: 820px;
    margin: 0;
    color: #102347;
    font-size: clamp(2.1rem, 4.2vw, 3.35rem);
    line-height: 1.04;
}

.c-knowledge-article__header p {
    max-width: 780px;
    margin: 0;
    color: #5C6B84;
    font-size: 1.06rem;
    line-height: 1.75;
}

.c-knowledge-article__figure {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 30px 0 34px;
    border: 1px solid rgba(168, 192, 236, 0.5);
    border-radius: 24px;
    background: #F6FAFF;
    aspect-ratio: 16 / 9;
}

.c-knowledge-article__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-knowledge-article__body {
    display: grid;
    gap: 18px;
    color: #263854;
    font-size: 1.02rem;
    line-height: 1.78;
}

.c-knowledge-article__body h2 {
    margin: 18px 0 0;
    color: #102347;
    font-size: clamp(1.35rem, 2vw, 1.72rem);
    line-height: 1.18;
}

.c-knowledge-article__body h2:first-child {
    margin-top: 0;
}

.c-knowledge-article__body p {
    margin: 0;
}

.c-knowledge-related {
    width: min(100%, 920px);
    margin-right: auto;
    margin-left: auto;
}

.c-knowledge-article__body h3 {
    margin: 8px 0 0;
    color: #102347;
    font-size: 1.12rem;
    line-height: 1.25;
}

.c-knowledge-article__body ul {
    margin: 0;
    padding-left: 1.15rem;
}

.c-knowledge-article__body li + li {
    margin-top: 8px;
}

.c-knowledge-sources {
    margin-top: 18px;
    padding: 22px;
    border: 1px solid rgba(168, 192, 236, 0.52);
    border-radius: 20px;
    background: #F7FBFF;
}

.c-knowledge-sources h2 {
    margin-top: 0;
}

.c-knowledge-sources ul {
    display: grid;
    gap: 10px;
    padding-left: 1.05rem;
}

.c-knowledge-sources a {
    color: var(--color-primary);
    font-weight: 800;
}

/* --- Dokumentumminták --- */
/* --- Kapcsolat --- */
body.has-contact-page {
    background: linear-gradient(180deg, #EEF5FF 0%, #E8F1FC 100%);
}

.c-contact-page {
    width: min(100%, var(--layout-max-container));
    margin: 20px auto 84px;
    padding: 0 20px;
}

.c-contact-hero {
    margin-bottom: 28px;
}

.c-contact-card,
.c-contact-topic-card,
.c-contact-related-link {
    border: 1px solid rgba(168, 192, 236, 0.38);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 42px -34px rgba(20, 54, 126, 0.22);
}

.c-contact-card {
    display: grid;
    gap: 20px;
    padding: 30px;
    border-radius: 26px;
}

.c-contact-card--main {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr);
    align-items: center;
    margin-bottom: 30px;
}

.c-contact-card--notice {
    background:
        linear-gradient(180deg, rgba(255, 251, 235, 0.82), rgba(255, 255, 255, 0.94));
    border-color: rgba(245, 158, 11, 0.24);
}

.c-contact-card h2,
.c-contact-topic-card h3 {
    margin: 0;
    color: var(--color-text-main);
}

.c-contact-card p,
.c-contact-topic-card p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.72;
}

.c-contact-email-box {
    display: grid;
    gap: 6px;
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.18);
}

.c-contact-email-box span {
    color: var(--color-text-muted);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.c-contact-email-box strong {
    color: var(--color-text-main);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    word-break: break-word;
}

.c-contact-actions {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.c-contact-copy-feedback {
    min-height: 1.4em;
    color: var(--color-success);
    font-size: 0.92rem;
    font-weight: 700;
}

.c-contact-section {
    margin-top: 34px;
}

.c-contact-section__head {
    margin-bottom: 16px;
}

.c-contact-section__head h2 {
    margin: 0;
    color: var(--color-text-main);
    font-size: clamp(1.45rem, 2.5vw, 2rem);
}

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

.c-contact-topic-card {
    padding: 24px;
    border-radius: 22px;
}

.c-contact-topic-card h3 {
    font-size: 1.04rem;
}

.c-contact-topic-card p {
    margin-top: 10px;
    font-size: 0.96rem;
}

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

.c-contact-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.c-contact-related-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 62px;
    padding: 16px 18px;
    border-radius: 18px;
    color: var(--color-text-main);
    font-weight: 800;
    text-decoration: none;
}

.c-contact-related-link:hover,
.c-contact-related-link:focus-visible {
    border-color: rgba(37, 99, 235, 0.34);
    color: var(--color-primary);
    outline: none;
}

body.has-documents-page {
    background: linear-gradient(180deg, #EEF5FF 0%, #E8F1FC 100%);
}

.c-documents-page {
    width: min(100%, var(--layout-max-container));
    margin: 20px auto 84px;
    padding: 0 20px;
}

.c-documents-hero {
    margin-bottom: 28px;
}

.c-documents-layout {
    display: grid;
    gap: 26px;
    width: min(100%, 1040px);
    margin: 0 auto;
}

.c-documents-notice,
.c-documents-card,
.c-documents-section {
    border: 1px solid rgba(168, 192, 236, 0.48);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 58px -44px rgba(20, 54, 126, 0.38), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.c-documents-notice {
    padding: 26px 30px;
    border-color: rgba(245, 188, 80, 0.45);
    background: linear-gradient(180deg, #FFF8E9 0%, #FFFFFF 100%);
}

.c-documents-notice h2,
.c-documents-section h2,
.c-documents-section-head h2 {
    margin: 0;
    color: #102347;
    font-size: clamp(1.28rem, 1.9vw, 1.62rem);
    line-height: 1.16;
}

.c-documents-notice p,
.c-documents-section p,
.c-documents-card p,
.c-documents-variant p {
    margin: 12px 0 0;
    color: #5C6B84;
    line-height: 1.72;
}

.c-documents-main,
.c-documents-section {
    display: grid;
    gap: 18px;
}

.c-documents-section {
    padding: 30px;
}

.c-documents-section--soft {
    background: #F7FBFF;
}

.c-documents-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.c-documents-card {
    display: grid;
    gap: 26px;
    padding: 30px;
}

.c-documents-card__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: center;
    gap: 28px;
}

.c-documents-card h3 {
    margin: 14px 0 0;
    color: #102347;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    line-height: 1.1;
}

.c-documents-card__figure {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(168, 192, 236, 0.5);
    border-radius: 22px;
    background: #F6FAFF;
    aspect-ratio: 16 / 9;
}

.c-documents-card__figure img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c-documents-meta {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.4fr);
    gap: 14px;
    margin: 0;
}

.c-documents-meta div,
.c-documents-variant {
    border: 1px solid rgba(168, 192, 236, 0.48);
    border-radius: 20px;
    background: #F8FBFF;
}

.c-documents-meta div {
    padding: 18px;
}

.c-documents-meta dt {
    margin: 0 0 6px;
    color: #64748B;
    font-size: 0.82rem;
    font-weight: 900;
}

.c-documents-meta dd {
    margin: 0;
    color: #102347;
    font-weight: 800;
    line-height: 1.5;
}

.c-documents-variants {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.c-documents-variant {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 22px;
}

.c-documents-variant h4 {
    margin: 0;
    color: #102347;
    font-size: 1.08rem;
    line-height: 1.22;
}

.c-documents-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.c-btn.is-disabled {
    cursor: not-allowed;
    opacity: 0.58;
}

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

.c-documents-steps li {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(168, 192, 236, 0.48);
    border-radius: 20px;
    background: #F8FBFF;
}

.c-documents-steps span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #E6F0FF;
    color: var(--color-primary);
    font-weight: 900;
}

.c-documents-steps h3 {
    margin: 0;
    color: #102347;
    font-size: 1rem;
    line-height: 1.28;
}

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

.c-documents-guide {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    min-height: 150px;
    padding: 20px;
    border: 1px solid rgba(168, 192, 236, 0.48);
    border-radius: 20px;
    background: #F8FBFF;
    color: #102347;
    font-weight: 850;
}

.c-documents-guide strong {
    color: var(--color-primary);
    font-size: 0.92rem;
}

.c-documents-sources ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding-left: 1.1rem;
}

.c-documents-sources a {
    color: var(--color-primary);
    font-weight: 800;
}

/* --- Jogi oldalak --- */
body.has-legal-page {
    background: linear-gradient(180deg, #EEF5FF 0%, #E8F1FC 100%);
}

.c-legal-page {
    width: min(100%, var(--layout-max-container));
    margin: 20px auto 84px;
    padding: 0 20px;
}

.c-legal-hero {
    margin-bottom: 28px;
}

.c-legal-card {
    width: min(100%, 980px);
    margin: 0 auto;
    padding: clamp(28px, 4vw, 46px);
    border: 1px solid rgba(168, 192, 236, 0.48);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 58px -44px rgba(20, 54, 126, 0.38), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.c-legal-content {
    color: #263854;
    font-size: 1rem;
    line-height: 1.74;
}

.c-legal-content h2 {
    margin: 34px 0 12px;
    color: #102347;
    font-size: clamp(1.32rem, 2vw, 1.7rem);
    line-height: 1.18;
}

.c-legal-content h2:first-child {
    margin-top: 0;
}

.c-legal-content h3 {
    margin: 24px 0 10px;
    color: #102347;
    font-size: 1.12rem;
    line-height: 1.25;
}

.c-legal-content p {
    margin: 0 0 14px;
}

.c-legal-content ul {
    margin: 0 0 16px;
    padding-left: 1.15rem;
}

.c-legal-content li + li {
    margin-top: 7px;
}

.c-legal-table-wrap {
    overflow-x: auto;
    margin: 18px 0 24px;
    border: 1px solid rgba(168, 192, 236, 0.52);
    border-radius: 18px;
    background: #FFFFFF;
}

.c-legal-table-wrap table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
}

.c-legal-table-wrap th,
.c-legal-table-wrap td {
    padding: 13px 15px;
    border-bottom: 1px solid rgba(168, 192, 236, 0.42);
    color: #263854;
    text-align: left;
    vertical-align: top;
}

.c-legal-table-wrap th {
    background: #EEF5FF;
    color: #102347;
    font-weight: 900;
}

.c-legal-table-wrap tr:last-child td {
    border-bottom: 0;
}

.c-faq-hero {
    margin-bottom: 30px;
}

.c-faq-sections {
    display: grid;
    gap: 30px;
    width: min(100%, 980px);
    margin: 0 auto;
}

.c-faq-category {
    padding: 32px;
    border: 1px solid rgba(168, 192, 236, 0.46);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 58px -44px rgba(20, 54, 126, 0.38), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.c-faq-category__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(168, 192, 236, 0.5);
}

.c-faq-category__head h2 {
    margin: 0;
    color: #102347;
    font-size: clamp(1.28rem, 2vw, 1.62rem);
    line-height: 1.15;
}

.c-faq-category__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 42px;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(168, 192, 236, 0.5);
    border-radius: 999px;
    background: #EEF5FF;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.c-faq-category__list {
    display: grid;
    gap: 12px;
}

.c-faq-item {
    overflow: hidden;
    border: 1px solid rgba(168, 192, 236, 0.48);
    border-radius: 18px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
    box-shadow: 0 14px 38px -34px rgba(20, 54, 126, 0.38);
}

.c-faq-item[open] {
    border-color: rgba(96, 142, 255, 0.52);
    background: #FFFFFF;
}

.c-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    color: #102347;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

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

.c-faq-item__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #E6F0FF;
    border: 1px solid rgba(168, 192, 236, 0.56);
}

.c-faq-item__icon::before,
.c-faq-item__icon::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    background: var(--color-primary);
}

.c-faq-item__icon::after {
    transform: rotate(90deg);
    transition: opacity 0.16s ease;
}

.c-faq-item[open] .c-faq-item__icon::after {
    opacity: 0;
}

.c-faq-item__body {
    padding: 0 20px 20px;
    color: #5C6B84;
    font-size: 0.96rem;
    line-height: 1.7;
}

.c-faq-item__body p {
    margin: 0;
}

@media (max-width: 720px) {
    body.has-settings-page .c-settings-shell {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 58px;
        padding: 0 14px;
    }

    .c-settings-hero {
        margin-bottom: 18px;
        padding: 30px 18px;
        border-radius: 24px;
    }

    .c-settings-list {
        gap: 22px;
    }

    .c-settings-card {
        padding: 26px 20px;
        border-radius: 22px;
    }

    body.has-settings-page .c-settings-section__desc {
        margin-bottom: 22px;
    }

    body.has-settings-page .c-checkbox-wrapper {
        padding: 15px;
    }

    body.has-settings-page .c-inline-actions,
    body.has-settings-page .c-inline-actions .c-btn,
    body.has-settings-page .c-inline-actions a {
        width: 100%;
    }

    body.has-settings-page .c-danger-zone {
        padding: 18px;
    }

    body.has-faq-page .c-info-page {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 58px;
        padding: 0 14px;
    }

    .c-knowledge-page {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 58px;
        padding: 0 14px;
    }

    .c-knowledge-hero {
        margin-bottom: 18px;
    }

    .c-knowledge-section {
        gap: 14px;
        margin-top: 26px;
    }

    .c-knowledge-topic-grid,
    .c-knowledge-card-grid,
    .c-knowledge-card-grid--featured,
    .c-knowledge-cta {
        grid-template-columns: 1fr;
    }

    .c-knowledge-topic-card,
    .c-knowledge-card,
    .c-knowledge-group,
    .c-knowledge-cta article {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .c-knowledge-card {
        min-height: auto;
    }

    .c-knowledge-card__button {
        width: 100%;
    }

    .c-knowledge-breadcrumb {
        width: 100%;
        margin-bottom: 14px;
        font-size: 0.84rem;
    }

    .c-knowledge-article {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .c-knowledge-article__header h1 {
        font-size: clamp(1.75rem, 9vw, 2.35rem);
    }

    .c-knowledge-article__header p,
    .c-knowledge-article__body {
        font-size: 0.96rem;
    }

    .c-knowledge-article__figure {
        margin: 24px 0 28px;
        border-radius: 20px;
    }

    .c-contact-page {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 58px;
        padding: 0 14px;
    }

    .c-contact-hero {
        margin-bottom: 18px;
    }

    .c-contact-card,
    .c-contact-topic-card {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .c-contact-card--main,
    .c-contact-topic-grid,
    .c-contact-info-grid,
    .c-contact-related-grid {
        grid-template-columns: 1fr;
    }

    .c-contact-actions,
    .c-contact-actions .c-btn {
        width: 100%;
    }

    .c-contact-copy-feedback {
        width: 100%;
        text-align: center;
    }

    .c-documents-page {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 58px;
        padding: 0 14px;
    }

    .c-documents-hero {
        margin-bottom: 18px;
    }

    .c-documents-layout {
        gap: 20px;
    }

    .c-documents-notice,
    .c-documents-card,
    .c-documents-section {
        border-radius: 22px;
    }

    .c-documents-notice,
    .c-documents-card,
    .c-documents-section {
        padding: 22px 16px;
    }

    .c-documents-card__content,
    .c-documents-meta,
    .c-documents-variants,
    .c-documents-steps,
    .c-documents-guide-grid {
        grid-template-columns: 1fr;
    }

    .c-documents-card__content {
        gap: 20px;
    }

    .c-documents-card__figure {
        border-radius: 18px;
    }

    .c-documents-actions,
    .c-documents-actions .c-btn,
    .c-documents-actions .c-btn.is-disabled {
        width: 100%;
    }

    .c-documents-steps li {
        padding: 18px;
    }

    .c-documents-guide {
        min-height: auto;
    }

    .c-legal-page {
        width: 100%;
        margin-top: 10px;
        margin-bottom: 58px;
        padding: 0 14px;
    }

    .c-legal-hero {
        margin-bottom: 18px;
    }

    .c-legal-card {
        padding: 24px 18px;
        border-radius: 24px;
    }

    .c-legal-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .c-legal-content h2 {
        margin-top: 28px;
    }

    .c-faq-hero {
        margin-bottom: 18px;
    }

    .c-faq-sections {
        gap: 22px;
    }

    .c-faq-category {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .c-faq-category__head {
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }

    .c-faq-category__number {
        min-width: 38px;
        min-height: 30px;
        padding: 0 10px;
        font-size: 0.76rem;
    }

    .c-faq-item summary {
        padding: 16px;
        font-size: 0.95rem;
    }

    .c-faq-item__body {
        padding: 0 16px 16px;
        font-size: 0.92rem;
    }
}

/* --- Domain tulajdonjog-igazolas --- */
body.has-domain-verification-page {
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 32%),
        linear-gradient(180deg, #F5F9FF 0%, #EAF3FF 100%);
}

.c-domain-verification-page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 72px;
}

.c-domain-verification-hero {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 28px;
    min-height: 326px;
    margin-bottom: 28px;
    padding: 48px 32px 40px;
    border: 1px solid rgba(168, 192, 236, 0.62);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(216, 232, 255, 0.82), transparent 34%),
        rgba(255, 255, 255, 0.78);
    box-shadow: 0 26px 70px -50px rgba(16, 35, 70, 0.48);
}

.c-domain-verification-back {
    position: absolute;
    top: 24px;
    left: 28px;
}

.c-domain-verification-hero__copy {
    display: grid;
    justify-items: center;
    gap: 16px;
    width: min(760px, 100%);
    margin-top: 14px;
    text-align: center;
}

.c-domain-verification-hero .c-marketplace-header__title {
    max-width: 760px;
    margin: 0;
}

.c-domain-verification-hero .c-marketplace-header__desc {
    max-width: 680px;
    margin: 0;
}

.c-domain-verification-domain {
    display: grid;
    justify-items: center;
    gap: 8px;
    width: min(360px, 100%);
    padding: 22px 28px;
    border: 1px solid rgba(168, 192, 236, 0.72);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 52px -44px rgba(16, 35, 70, 0.42);
    text-align: center;
}

.c-domain-verification-domain span {
    color: #567095;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.c-domain-verification-domain strong {
    color: #102344;
    font-size: clamp(1.45rem, 3vw, 2.05rem);
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.c-domain-verification-flow {
    display: grid;
    gap: 28px;
}

.c-domain-verification-grid-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.c-domain-verification-panel-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.c-domain-verification-panel-stack {
    display: grid;
    gap: 28px;
    align-content: start;
}

.c-domain-verification-card {
    padding: 26px;
    border: 1px solid rgba(168, 192, 236, 0.62);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 26px 70px -50px rgba(16, 35, 70, 0.48);
}

.c-domain-verification-card h2,
.c-domain-verification-card h3 {
    margin: 0;
    color: #102344;
    line-height: 1.18;
}

.c-domain-verification-card h2 {
    font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.c-domain-verification-card h3 {
    font-size: 1rem;
}

.c-domain-verification-card p {
    margin: 0;
    color: #567095;
    line-height: 1.66;
}

.c-domain-verification-section-head {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.c-domain-verification-dns-card {
    width: 100%;
}

.c-domain-verification-record {
    display: grid;
    gap: 14px;
}

.c-domain-verification-record-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 12px 14px;
    padding: 16px;
    border: 1px solid rgba(168, 192, 236, 0.46);
    border-radius: 18px;
    background: #F8FBFF;
}

.c-domain-verification-record-row--token {
    grid-template-columns: minmax(0, 1fr) auto;
}

.c-domain-verification-record-row > div {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.c-domain-verification-record-row small {
    color: #6B7F9F;
    line-height: 1.5;
}

.c-domain-verification-record-label {
    color: #567095;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.c-domain-verification-record-value {
    display: block;
    width: 100%;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid rgba(59, 108, 255, 0.18);
    border-radius: 14px;
    background: #FFFFFF;
    color: #102344;
    font: 700 0.96rem/1.45 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    overflow-wrap: anywhere;
    white-space: normal;
}

.c-domain-verification-record-value--token {
    color: #1D4ED8;
}

.c-domain-verification-copy {
    white-space: nowrap;
}

.c-domain-verification-copy-feedback {
    grid-column: 1 / -1;
    min-height: 1.35em;
    color: #15803D;
    font-size: 0.88rem;
    font-weight: 700;
}

.c-domain-verification-copy-feedback.is-error {
    color: #B45309;
}

.c-domain-verification-check-inline {
    display: grid;
    gap: 16px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(168, 192, 236, 0.46);
}

.c-domain-verification-check-inline .c-domain-verification-section-head {
    margin-bottom: 0;
}

.c-domain-verification-alert {
    display: grid;
    gap: 6px;
}

.c-domain-verification-alert strong {
    color: #92400E;
}

.c-domain-verification-steps {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: verification-step;
}

.c-domain-verification-steps li {
    position: relative;
    display: grid;
    gap: 6px;
    padding-left: 44px;
    counter-increment: verification-step;
}

.c-domain-verification-steps li::before {
    position: absolute;
    top: 0;
    left: 0;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #E7F0FF;
    color: #2563EB;
    content: counter(verification-step);
    font-size: 0.82rem;
    font-weight: 900;
}

.c-domain-verification-steps strong {
    color: #102344;
    line-height: 1.35;
}

.c-domain-verification-steps span {
    color: #567095;
    line-height: 1.58;
}

.c-domain-verification-notes ul {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding-left: 20px;
    color: #567095;
    line-height: 1.58;
}

.c-domain-verification-keep-note {
    display: grid;
    gap: 10px;
    margin-top: 20px;
    padding: 18px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-radius: 18px;
    background: #EFF6FF;
}

.c-domain-verification-status-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: start;
}

.c-domain-verification-status-card--success {
    border-color: rgba(22, 163, 74, 0.22);
    background: linear-gradient(180deg, #F7FEFA 0%, #FFFFFF 100%);
}

.c-domain-verification-status-icon {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #DCFCE7;
    color: #15803D;
    font-size: 1.2rem;
    font-weight: 900;
}

.c-domain-verification-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.c-domain-verification-delete-form {
    margin-top: 12px;
}

.c-domain-verification-help-card {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
}

.c-domain-verification-help-card p {
    margin-top: 10px;
    margin-bottom: 16px;
}

@media (min-width: 901px) {
    .c-domain-verification-hero {
        margin-bottom: 56px;
    }

    .c-domain-verification-flow {
        gap: 56px;
    }

    .c-domain-verification-grid-row {
        row-gap: 56px;
    }

    .c-domain-verification-panel-stack {
        gap: 56px;
    }

    .c-domain-verification-dns-card {
        width: min(100%, 580px);
        margin-inline: auto;
    }

    .c-domain-verification-dns-card .c-domain-verification-record-row--token {
        grid-template-columns: 1fr;
    }

    .c-domain-verification-dns-card .c-domain-verification-copy {
        justify-self: start;
    }
}

@media (max-width: 900px) {
    .c-domain-verification-hero,
    .c-domain-verification-grid-row,
    .c-domain-verification-panel-columns {
        grid-template-columns: 1fr;
    }

    .c-domain-verification-panel-stack {
        display: contents;
    }

    .c-domain-verification-steps-card {
        order: 1;
    }

    .c-domain-verification-notes {
        order: 2;
    }

    .c-domain-verification-help-card {
        order: 3;
    }

    .c-domain-verification-actions-card {
        order: 4;
    }
}

@media (max-width: 620px) {
    .c-domain-verification-page {
        width: 100%;
        padding: 16px 14px 58px;
    }

    .c-domain-verification-hero {
        min-height: auto;
        margin-bottom: 22px;
        padding: 82px 18px 26px;
    }

    .c-domain-verification-back {
        top: 24px;
        left: 18px;
    }

    .c-domain-verification-flow,
    .c-domain-verification-grid-row,
    .c-domain-verification-panel-columns {
        gap: 22px;
    }

    .c-domain-verification-domain,
    .c-domain-verification-card {
        border-radius: 22px;
    }

    .c-domain-verification-card {
        padding: 20px 16px;
    }

    .c-domain-verification-record-row {
        grid-template-columns: 1fr;
    }

    .c-domain-verification-record-row--token {
        grid-template-columns: 1fr;
    }

    .c-domain-verification-copy,
    .c-domain-verification-actions .c-btn,
    .c-domain-verification-delete-form .c-btn {
        width: 100%;
    }

    .c-domain-verification-status-card {
        grid-template-columns: 1fr;
    }
}

/* --- Auth oldalak és vendég belépési kapu --- */
body.has-auth-page {
    padding-top: 0;
    background: linear-gradient(180deg, #F5F9FF 0%, #EAF3FF 100%);
}

.c-auth-main--with-brand {
    min-height: 100vh;
    padding: clamp(22px, 4vw, 42px) 18px;
}

.c-auth-main--with-brand .c-auth-shell {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 18px;
    width: min(100%, 560px);
    min-height: auto;
    margin: 0 auto;
    padding: 0;
}

.c-auth-main--with-brand .c-auth-card {
    position: relative;
    max-width: none;
    height: auto;
    padding: 0;
    border: 1px solid rgba(168, 192, 236, 0.46);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 28px 70px -48px rgba(16, 35, 70, 0.45);
}

.c-auth-main--with-brand .c-auth-card .c-card__body {
    position: relative;
    padding: 34px 34px 38px;
}

.c-auth-gate-card .c-auth-header {
    margin-bottom: 24px;
}

.c-auth-gate-card .c-auth-header h1 {
    font-size: clamp(1.55rem, 4vw, 2rem);
    line-height: 1.12;
}

.c-auth-gate-card .c-auth-header p {
    max-width: 390px;
    margin: 0 auto;
    line-height: 1.6;
}

.c-auth-gate-actions {
    display: grid;
    gap: 12px;
}

@media (max-width: 520px) {
    .c-auth-main--with-brand {
        align-items: flex-start;
        min-height: auto;
        padding: 12px 6px 36px;
    }

    .c-auth-main--with-brand .c-auth-shell {
        width: 100%;
        max-width: none;
    }

    .c-auth-main--with-brand .c-auth-card .c-card__body {
        padding: 30px 16px 32px;
    }

    .c-auth-main--with-brand .c-auth-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .c-auth-main--with-brand .c-auth-actions .c-auth-link {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}
