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

:root {
    --ga-bg: #0f1419;
    --ga-surface: #1a222c;
    --ga-border: rgba(255, 255, 255, 0.08);
    --ga-text: #f1f5f9;
    --ga-muted: #94a3b8;
    --ga-accent: #38bdf8;
    --ga-accent-dim: #0ea5e9;
    --ga-danger: #f87171;
    --ga-success: #4ade80;
    --ga-radius: 12px;
    --ga-font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

body.ga-body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--ga-font);
    background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(56, 189, 248, 0.18), transparent 55%),
        var(--ga-bg);
    color: var(--ga-text);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.ga-wrap {
    width: 100%;
    max-width: 400px;
}

.ga-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    justify-content: center;
}

.ga-brand--wordmark {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.ga-brand-logo {
    width: min(220px, 88vw);
    height: auto;
    max-height: 52px;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Giriş ekranı: wordmark %50 daha büyük */
.ga-page-login .ga-brand-logo {
    width: min(330px, 92vw);
    max-height: 78px;
}

.ga-brand-tagline {
    font-size: 0.8rem;
    color: var(--ga-muted);
    font-weight: 500;
    text-align: center;
}

.ga-brand-text {
    text-align: left;
}

.ga-brand-text strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.ga-brand-text span {
    font-size: 0.8rem;
    color: var(--ga-muted);
    font-weight: 500;
}

.ga-card {
    background: var(--ga-surface);
    border: 1px solid var(--ga-border);
    border-radius: var(--ga-radius);
    padding: 1.5rem 1.35rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.ga-card h1 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.ga-lead {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: var(--ga-muted);
    line-height: 1.5;
}

.ga-field {
    margin-bottom: 1rem;
}

.ga-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ga-muted);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ga-input {
    width: 100%;
    padding: 0.65rem 0.85rem;
    border-radius: 8px;
    border: 1px solid var(--ga-border);
    background: rgba(0, 0, 0, 0.25);
    color: var(--ga-text);
    font-size: 0.95rem;
    font-family: inherit;
}

.ga-input:focus {
    outline: none;
    border-color: var(--ga-accent);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.ga-input::placeholder {
    color: rgba(148, 163, 184, 0.65);
}

/* Telefon satırı: ülke + numara — iletişim formu ile aynı netlik */
.ga-field .orenda-phone-input-wrap {
    width: 100%;
}

.ga-field .orenda-phone-input-wrap .ga-input {
    flex: 1 1 0;
    min-width: 0;
    width: auto;
    min-height: 46px;
    font-size: 1rem;
    padding: 0.72rem 0.9rem;
}

.ga-field select.phone-country-select {
    background: rgba(0, 0, 0, 0.32) !important;
    border: 1px solid var(--ga-border) !important;
    color: var(--ga-text) !important;
}

.ga-field select.phone-country-select option {
    background: #1a222c;
    color: var(--ga-text);
}

.ga-btn {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    background: linear-gradient(135deg, var(--ga-accent), var(--ga-accent-dim));
    color: #0f172a;
    margin-top: 0.25rem;
    transition: opacity 0.15s, transform 0.1s;
}

.ga-btn:hover:not(:disabled) {
    opacity: 0.95;
}

.ga-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.ga-footer-links {
    margin-top: 1.25rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--ga-muted);
}

.ga-footer-links a {
    color: var(--ga-accent);
    text-decoration: none;
    font-weight: 500;
}

.ga-footer-links a:hover {
    text-decoration: underline;
}

.ga-msg {
    display: none;
    padding: 0.65rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.45;
}

.ga-msg.is-error {
    display: block;
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
}

.ga-msg.is-ok {
    display: block;
    background: rgba(74, 222, 128, 0.12);
    border: 1px solid rgba(74, 222, 128, 0.35);
    color: #bbf7d0;
}

.ga-site-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--ga-muted);
}

.ga-site-link a {
    color: var(--ga-muted);
}

/* Pricing teaser (login/signup) */
.ga-pricing {
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--ga-border);
}

.ga-pricing-title {
    margin: 0 0 0.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.ga-pricing-subtitle {
    margin: -0.35rem 0 0.85rem;
    color: var(--ga-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.ga-pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.ga-plan-card {
    border: 1px solid var(--ga-border);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    padding: 0.9rem 0.9rem 0.85rem;
}

.ga-plan-card--tier-pro {
    border-color: rgba(212, 175, 55, 0.42);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.09);
}

.ga-plan-card--tier-business {
    border-color: rgba(167, 139, 250, 0.42);
    box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.1);
}

.ga-plan-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.ga-plan-name {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.ga-plan-price {
    font-weight: 800;
    color: var(--ga-text);
    white-space: nowrap;
}

.ga-plan-price small {
    font-weight: 600;
    color: var(--ga-muted);
}

.ga-plan-price-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    text-align: right;
}

.ga-plan-price--year {
    font-size: 1rem;
    letter-spacing: -0.02em;
}

.ga-plan-price-month {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--ga-muted);
}

.ga-plan-price-month small {
    font-weight: 600;
    color: var(--ga-muted);
}

.ga-plan-features {
    margin: 0.6rem 0 0;
    padding-left: 1rem;
    color: rgba(241, 245, 249, 0.92);
    font-size: 0.82rem;
    line-height: 1.45;
}

.ga-plan-features li {
    margin: 0.15rem 0;
}

.ga-plan-card ul.orenda-pkg-features {
    list-style: none;
    margin: 0.6rem 0 0;
    padding: 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(241, 245, 249, 0.92);
}

.ga-plan-card .orenda-pkg-feature {
    margin: 0 0 0.4rem;
}

.ga-plan-card .orenda-pkg-feature-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.35rem;
}

.ga-plan-card .orenda-pkg-feature-title {
    flex: 1;
    min-width: 0;
    font-weight: 500;
}

.ga-plan-card .orenda-pkg-info-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(56, 189, 248, 0.14);
    color: var(--ga-accent);
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
}

.ga-plan-card .orenda-pkg-info-btn:hover {
    background: rgba(56, 189, 248, 0.24);
}

.ga-plan-card .orenda-pkg-info-btn[aria-expanded='true'] {
    background: rgba(56, 189, 248, 0.28);
}

.ga-plan-card .orenda-pkg-feature-detail {
    margin: 0.3rem 0 0;
    padding: 0.45rem 0.6rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: var(--ga-muted);
    background: rgba(0, 0, 0, 0.22);
    border-radius: 8px;
    border: 1px solid var(--ga-border);
}

.ga-pricing-footnote {
    margin: 0.85rem 0 0;
    color: var(--ga-muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

@media (min-width: 760px) {
    .ga-wrap {
        max-width: 1100px;
    }
    .ga-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .ga-card {
        padding: 1.75rem 1.6rem;
    }
}

@media (min-width: 1100px) {
    .ga-pricing-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
