/* —— Design tokens (aligned with backend panel) —— */
:root {
    --color-bg: #f8fafc;
    --color-surface: #ffffff;
    --color-text: #0f172a;
    --color-muted: #64748b;
    --color-border: #e2e8f0;
    --color-primary: #2563eb;
    --color-primary-hover: #1d4ed8;
    --color-primary-soft: rgba(37, 99, 235, 0.08);
    --trial-blue: #2d6aee;
    --trial-blue-hover: #245cc9;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 40px -12px rgba(15, 23, 42, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --header-h: 64px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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

#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.container--narrow {
    max-width: 720px;
}

/* —— Header —— */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
}

.frontend-header {
    position: relative;
}

.frontend-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: var(--header-h);
    gap: 1rem;
}

.frontend-header__brand {
    display: inline-flex;
    align-items: center;
    line-height: 1.1;
    text-decoration: none;
    flex-shrink: 0;
}

.frontend-header__brand:hover {
    text-decoration: none;
}

.frontend-header__brand:hover .frontend-header__wordmark-accent {
    filter: brightness(1.06);
}

.frontend-header__wordmark {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3rem 0.45rem;
    max-width: min(100%, 18rem);
}

.frontend-header__wordmark-line {
    font-size: clamp(0.875rem, 2.4vw, 1.0625rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-text);
    line-height: 1.15;
}

.frontend-header__wordmark-accent {
    font-size: clamp(1rem, 2.8vw, 1.3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--color-primary);
    padding: 0.12rem 0.4rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(160deg, var(--color-primary-soft) 0%, rgba(37, 99, 235, 0.12) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.75),
        0 1px 2px rgba(37, 99, 235, 0.12);
}

.frontend-header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.frontend-header__toggle-bar {
    display: block;
    height: 2px;
    width: 22px;
    background: var(--color-text);
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25rem 1.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a:not(.btn) {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-muted);
    text-decoration: none;
}

.nav-menu a:not(.btn):hover {
    color: var(--color-text);
}

.nav-menu__cta {
    margin-left: 0.25rem;
}

.nav-menu__cta--pair {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

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

.btn--nav-trial:hover {
    background: var(--color-bg);
    color: var(--trial-blue);
    border-color: rgba(45, 106, 238, 0.35);
}

@media (max-width: 900px) {
    .frontend-header__toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.75rem 1.25rem 1.25rem;
        background: var(--color-surface);
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }

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

    .nav-menu li {
        border-bottom: 1px solid var(--color-border);
    }

    .nav-menu li:last-child {
        border-bottom: none;
        padding-top: 0.5rem;
    }

    .nav-menu a:not(.btn) {
        display: block;
        padding: 0.75rem 0;
    }

    .nav-menu__cta {
        margin-left: 0;
    }

    .nav-menu__cta .btn {
        width: 100%;
        text-align: center;
    }

    .site-header.is-nav-open .frontend-header__toggle-bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-nav-open .frontend-header__toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .site-header.is-nav-open .frontend-header__toggle-bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* —— Buttons —— */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
    text-decoration: none;
}

.btn--sm {
    padding: 0.45rem 0.9rem;
    font-size: 0.8125rem;
    border-radius: 8px;
}

.btn--lg {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
    border-radius: 12px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: #fff;
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn--primary:hover {
    filter: brightness(1.05);
    color: #fff;
}

.btn--secondary {
    background: var(--color-surface);
    color: var(--color-primary);
    border-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
    background: var(--color-bg);
    color: var(--color-primary-hover);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border-color: var(--color-border);
}

.btn--ghost:hover {
    background: var(--color-bg);
}

.btn--block {
    width: 100%;
}

/* —— Hero —— */
.landing-hero {
    position: relative;
    padding: 4rem 0 4.5rem;
    background: linear-gradient(145deg, #1e3a8a 0%, #2563eb 42%, #3b82f6 100%);
    color: #fff;
    overflow: hidden;
}

.landing-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 80% 20%, rgba(255, 255, 255, 0.12), transparent 55%);
    pointer-events: none;
}

.landing-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 40rem;
}

.landing-eyebrow {
    margin: 0 0 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
}

.landing-hero__title {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 4vw, 2.375rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.landing-hero__lead {
    margin: 0 0 1.75rem;
    font-size: 1.0625rem;
    line-height: 1.65;
    opacity: 0.95;
}

.landing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.landing-hero .btn--primary {
    box-shadow: 0 8px 24px -4px rgba(0, 0, 0, 0.25);
}

.landing-hero .btn--ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
}

.landing-hero .btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.landing-hero__note {
    margin: 0;
    font-size: 0.8125rem;
    opacity: 0.85;
}

/* —— Sections —— */
.landing-section {
    padding: 4rem 0;
}

.landing-section--muted {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.landing-section__title {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-align: center;
}

.landing-section__intro {
    margin: 0 auto 2.5rem;
    max-width: 36rem;
    text-align: center;
    color: var(--color-muted);
    font-size: 1rem;
}

/* Steps */
.landing-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .landing-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.landing-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.landing-step__num {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-radius: 10px;
}

.landing-step__title {
    margin: 0 0 0.35rem;
    font-size: 1rem;
    font-weight: 700;
}

.landing-step__text {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--color-muted);
}

/* Feature grid */
.landing-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 600px) {
    .landing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 900px) {
    .landing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    padding: 1.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: var(--shadow-md);
}

.card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--color-primary);
    background: var(--color-primary-soft);
    border-radius: 10px;
}

.card__title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
}

.card__text {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-muted);
    line-height: 1.55;
}

/* Trial banner */
.trial-banner {
    max-width: 40rem;
    margin: 0 auto;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06) 0%, rgba(59, 130, 246, 0.08) 100%);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.trial-banner__list {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--color-text);
    font-size: 0.9375rem;
}

.trial-banner__list li {
    margin-bottom: 0.5rem;
}

.trial-banner__foot {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* Fiyatlandırma: giriş paragrafı olmadan başlık–grid aralığı */
#fiyat .landing-section__title + .pricing {
    margin-top: 1.75rem;
}

/* Pricing */
.pricing {
    display: grid;
    gap: 1.25rem;
    align-items: stretch;
}

@media (min-width: 768px) {
    .pricing {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.pricing-card--featured {
    background: var(--color-surface);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: var(--shadow-lg);
    transform: scale(1.02);
}

.pricing-card__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-primary);
    border-radius: 100px;
}

.pricing-card__name {
    margin: 0 0 0.25rem;
    font-size: 1.125rem;
    font-weight: 800;
}

.pricing-card__price {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-muted);
}

.pricing-card__features {
    flex: 1;
    margin: 0 0 1.5rem;
    padding-left: 1.15rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.pricing-card__features li {
    margin-bottom: 0.4rem;
}

@media (max-width: 767px) {
    .pricing-card--featured {
        transform: none;
    }
}

/* FAQ */
.faq {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.faq__item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: var(--color-surface);
    overflow: hidden;
}

.faq__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: left;
    color: var(--color-text);
    background: transparent;
    border: none;
    cursor: pointer;
}

.faq__trigger::after {
    content: '';
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--color-muted);
    border-bottom: 2px solid var(--color-muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.faq__item.is-open .faq__trigger::after {
    transform: rotate(-135deg);
}

.faq__panel {
    padding: 0 1.25rem 1rem;
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.faq__panel[hidden] {
    display: none;
}

.faq__panel p {
    margin: 0;
}

.faq__panel p + p {
    margin-top: 0.75rem;
}

/* CTA */
.landing-cta {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.landing-cta__title {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.landing-cta__text {
    margin: 0 auto 1.75rem;
    max-width: 32rem;
    color: var(--color-muted);
    font-size: 1rem;
}

.landing-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

.landing-cta__hint {
    display: block;
    max-width: 28rem;
    margin: 0 auto 1rem;
    font-size: 0.875rem;
    color: var(--color-muted);
}

/* Footer */
.site-footer {
    margin-top: auto;
    background: #0f172a;
    color: #94a3b8;
    font-size: 0.875rem;
}

.frontend-footer {
    padding: 3rem 0 0;
}

.frontend-footer__grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

@media (min-width: 640px) {
    .frontend-footer__grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.frontend-footer__brand-link {
    display: inline-flex;
    align-items: center;
    line-height: 1.15;
    margin-bottom: 0.65rem;
    text-decoration: none;
}

.frontend-footer__brand-link:hover .frontend-footer__wordmark-line {
    color: #fff;
}

.frontend-footer__brand-link:hover .frontend-footer__wordmark-accent {
    filter: brightness(1.08);
}

.frontend-footer__wordmark {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.3rem 0.45rem;
    max-width: min(100%, 17rem);
}

.frontend-footer__wordmark-line {
    font-size: clamp(0.875rem, 2.2vw, 1rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #e2e8f0;
    transition: color 0.15s ease;
}

.frontend-footer__wordmark-accent {
    font-size: clamp(0.9375rem, 2.5vw, 1.15rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #93c5fd;
    padding: 0.12rem 0.38rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(160deg, rgba(59, 130, 246, 0.28) 0%, rgba(37, 99, 235, 0.18) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.12),
        0 1px 2px rgba(0, 0, 0, 0.2);
    transition: filter 0.15s ease;
}

.frontend-footer__muted {
    margin: 0;
    max-width: 16rem;
    line-height: 1.5;
}

.frontend-footer__title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    margin-bottom: 0.75rem;
}

.frontend-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.frontend-footer__links li {
    margin-bottom: 0.5rem;
}

.frontend-footer__links a {
    color: #cbd5e1;
    text-decoration: none;
}

.frontend-footer__links a:hover {
    color: #fff;
}

.frontend-footer__bottom {
    padding: 1.25rem 0 1.75rem;
    text-align: center;
    font-size: 0.8125rem;
    color: #64748b;
}

.frontend-footer__bottom p {
    margin: 0;
}

/* —— Trial registration modal —— */
.trial-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}

.trial-modal[hidden] {
    display: none !important;
}

.trial-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.trial-modal__dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 34rem;
    padding: 2rem 1.75rem 1.5rem;
    background: var(--color-surface);
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.2);
    border: 1px solid var(--color-border);
}

.trial-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
}

.trial-modal__close:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

.trial-modal__badge {
    display: inline-block;
    margin-bottom: 0.75rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--trial-blue);
    border-radius: 100px;
}

.trial-modal__title {
    margin: 0 0 0.5rem;
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    line-height: 1.25;
    padding-right: 2rem;
}

.trial-modal__subtitle {
    margin: 0 0 1.25rem;
    font-size: 0.9375rem;
    color: var(--color-muted);
    line-height: 1.5;
}

.trial-modal__errors {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #b91c1c;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius-sm);
}

.trial-modal__errors ul {
    margin: 0;
    padding-left: 1.1rem;
}

.trial-modal__footer {
    margin: 1.25rem 0 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-muted);
}

.trial-modal__footer a {
    font-weight: 700;
    color: var(--trial-blue);
    text-decoration: none;
}

.trial-modal__footer a:hover {
    text-decoration: underline;
}

.trial-form__grid {
    display: grid;
    gap: 1rem 1.25rem;
}

@media (min-width: 560px) {
    .trial-form__grid {
        grid-template-columns: 1fr 1fr;
    }

    .trial-form__field:nth-child(5),
    .trial-form__field:nth-child(6) {
        grid-column: span 1;
    }
}

.trial-form__label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-text);
}

.trial-form__req {
    color: #dc2626;
}

.trial-form__input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.trial-form__input::placeholder {
    color: #94a3b8;
}

.trial-form__input:focus {
    outline: none;
    border-color: rgba(45, 106, 238, 0.55);
    box-shadow: 0 0 0 3px rgba(45, 106, 238, 0.15);
}

.trial-form__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.trial-form__input-wrap .trial-form__input {
    padding-right: 2.75rem;
}

.trial-form__toggle-pass {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: var(--color-muted);
    cursor: pointer;
}

.trial-form__toggle-pass:hover {
    background: var(--color-bg);
    color: var(--color-text);
}

.trial-form__eye {
    pointer-events: none;
}

.trial-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.trial-form__actions .btn {
    flex: 1;
    min-width: 8rem;
}

.trial-form__cancel {
    border: 1px solid var(--color-border);
    background: #fff;
    color: var(--color-text);
}

.trial-form__cancel:hover {
    background: var(--color-bg);
}

.btn--trial-submit {
    background: linear-gradient(180deg, var(--trial-blue) 0%, var(--trial-blue-hover) 100%);
    color: #fff;
    border: 1px solid rgba(45, 106, 238, 0.4);
    box-shadow: 0 4px 14px -2px rgba(45, 106, 238, 0.45);
}

.btn--trial-submit:hover:not(:disabled) {
    filter: brightness(1.03);
    color: #fff;
}

.btn--trial-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}
