/* =============================================================================
   /herbalife-uyelik landing - light + yeşil tema.
   .hu-* scope (Herbalife Uyelik). Sayfanın geneliyle uyumlu sade görünüm,
   3'lü tier kartlarında "featured" vurgusu için brand-primary + sıcak accent.
   ============================================================================= */

.hu-page {
    --hu-bg: #ffffff;
    --hu-bg-soft: #f6faf7;
    --hu-text: #0f172a;
    --hu-muted: #64748b;
    --hu-border: #e2e8f0;
    --hu-primary: var(--brand-primary, #15803d);
    --hu-primary-soft: var(--brand-primary-soft, #f0fdf4);
    --hu-primary-light: var(--brand-primary-light, #dcfce7);
    --hu-primary-dark: var(--brand-primary-dark, #14532d);
    --hu-accent: var(--brand-accent, #d97706);
    --hu-shadow: 0 4px 18px rgba(15, 23, 42, .08);
    --hu-shadow-strong: 0 10px 40px rgba(20, 83, 45, .14);

    background: var(--hu-bg);
    color: var(--hu-text);
    font-family: inherit;
}

.hu-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}
.hu-container--narrow {
    max-width: 820px;
}

/* ----------------------------------------------------------------------------
   HERO
   ---------------------------------------------------------------------------- */
.hu-hero {
    padding: 64px 0 48px;
    background: linear-gradient(180deg, var(--hu-primary-soft) 0%, #fff 100%);
    border-bottom: 1px solid var(--hu-border);
}
.hu-hero__inner {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.hu-hero__title {
    font-size: clamp(36px, 6vw, 60px);
    line-height: 1.05;
    font-weight: 800;
    color: var(--hu-primary-dark);
    margin: 18px 0 16px;
    letter-spacing: -0.02em;
}
.hu-hero__sub {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.6;
    color: #334155;
    max-width: 640px;
    margin: 0 auto 28px;
}
.hu-hero__sub strong {
    color: var(--hu-primary-dark);
}
.hu-hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 26px;
}
.hu-hero__quick {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
    font-size: 14px;
    color: var(--hu-muted);
}
.hu-hero__quick li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hu-hero__quick i {
    color: var(--hu-primary);
    font-size: 16px;
}

/* ----------------------------------------------------------------------------
   PILL + BUTTONS (shared)
   ---------------------------------------------------------------------------- */
.hu-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--hu-primary-light);
    color: var(--hu-primary-dark);
    font-size: 13px;
    font-weight: 600;
}
.hu-pill__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--hu-primary);
    box-shadow: 0 0 0 4px rgba(21, 128, 61, .15);
}

.hu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .15s ease, background .15s ease;
}
.hu-btn--primary {
    background: var(--hu-primary);
    color: #fff;
    box-shadow: var(--hu-shadow);
}
.hu-btn--primary:hover {
    background: var(--hu-primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--hu-shadow-strong);
}
.hu-btn--ghost {
    background: #fff;
    color: var(--hu-primary-dark);
    border-color: var(--hu-primary-light);
}
.hu-btn--ghost:hover {
    background: var(--hu-primary-soft);
    border-color: var(--hu-primary);
}
.hu-btn--block {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
    font-size: 16px;
}

/* ----------------------------------------------------------------------------
   SECTIONS
   ---------------------------------------------------------------------------- */
.hu-section {
    padding: 64px 0;
}
.hu-section--soft {
    background: var(--hu-bg-soft);
}
.hu-section__head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 36px;
}
.hu-h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: var(--hu-primary-dark);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}
.hu-section__lead {
    color: #475569;
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
}
.hu-section__lead strong {
    color: var(--hu-primary-dark);
}

/* ----------------------------------------------------------------------------
   3'LÜ TIER KARŞILAŞTIRMA
   ---------------------------------------------------------------------------- */
.hu-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0 20px;
}
@media (max-width: 900px) {
    .hu-tier-grid { grid-template-columns: 1fr; }
}

.hu-tier {
    position: relative;
    background: #fff;
    border: 1px solid var(--hu-border);
    border-radius: 16px;
    padding: 28px 22px 24px;
    display: flex;
    flex-direction: column;
    transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
}
.hu-tier:hover {
    transform: translateY(-2px);
    box-shadow: var(--hu-shadow);
    border-color: var(--hu-primary-light);
}
.hu-tier--featured {
    border: 2px solid var(--hu-primary);
    background: linear-gradient(180deg, var(--hu-primary-soft) 0%, #fff 60%);
    box-shadow: var(--hu-shadow-strong);
    transform: translateY(-4px);
}
.hu-tier__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hu-primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(21, 128, 61, .35);
}

.hu-tier__head {
    margin-bottom: 14px;
}
.hu-tier__name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--hu-primary-dark);
    margin-bottom: 6px;
}
.hu-tier__rate {
    display: inline-block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.01em;
}
.hu-tier__rate--green {
    color: var(--hu-primary);
}
.hu-tier__rate--muted {
    color: var(--hu-muted);
    font-size: 17px;
    font-weight: 600;
}
.hu-tier__desc {
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 18px;
}
.hu-tier__bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex-grow: 1;
}
.hu-tier__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 14px;
    color: #334155;
    line-height: 1.5;
}
.hu-tier__bullets i {
    color: var(--hu-primary);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}
.hu-tier__bullets .bi-x-circle {
    color: var(--hu-muted);
}
.hu-tier__cta {
    display: block;
    text-align: center;
    padding: 11px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background .15s ease, transform .12s ease;
}
.hu-tier__cta--primary {
    background: var(--hu-primary);
    color: #fff;
}
.hu-tier__cta--primary:hover {
    background: var(--hu-primary-dark);
    transform: translateY(-1px);
}
.hu-tier__cta--ghost {
    background: #fff;
    color: var(--hu-primary-dark);
    border: 1px solid var(--hu-border);
}
.hu-tier__cta--ghost:hover {
    background: var(--hu-primary-soft);
    border-color: var(--hu-primary);
}

.hu-tier-note {
    text-align: center;
    color: var(--hu-muted);
    font-size: 14px;
    line-height: 1.55;
    margin: 20px auto 0;
    max-width: 720px;
}
.hu-tier-note i {
    color: var(--hu-primary);
    margin-right: 4px;
}

/* ----------------------------------------------------------------------------
   BENEFITS GRID
   ---------------------------------------------------------------------------- */
.hu-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
@media (max-width: 900px) {
    .hu-benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .hu-benefits { grid-template-columns: 1fr; }
}

.hu-benefit {
    background: #fff;
    border: 1px solid var(--hu-border);
    border-radius: 14px;
    padding: 22px 18px;
    text-align: center;
    transition: transform .15s ease, box-shadow .2s ease;
}
.hu-benefit:hover {
    transform: translateY(-2px);
    box-shadow: var(--hu-shadow);
}
.hu-benefit__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--hu-primary-soft);
    color: var(--hu-primary);
    font-size: 24px;
    margin-bottom: 14px;
}
.hu-benefit h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--hu-primary-dark);
    margin: 0 0 8px;
}
.hu-benefit p {
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

/* ----------------------------------------------------------------------------
   STEPS (Nasıl üye olunur)
   ---------------------------------------------------------------------------- */
.hu-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 14px;
}
.hu-step {
    display: flex;
    gap: 18px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--hu-border);
    border-radius: 14px;
    align-items: flex-start;
    transition: border-color .15s ease, transform .12s ease;
}
.hu-step:hover {
    border-color: var(--hu-primary-light);
    transform: translateX(2px);
}
.hu-step__no {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--hu-primary);
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hu-step__body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--hu-primary-dark);
    margin: 0 0 6px;
}
.hu-step__body p {
    color: #475569;
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
}

/* ----------------------------------------------------------------------------
   FAQ
   ---------------------------------------------------------------------------- */
.hu-faq {
    display: grid;
    gap: 10px;
}
.hu-faq__item {
    background: #fff;
    border: 1px solid var(--hu-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .15s ease;
}
.hu-faq__item[open] {
    border-color: var(--hu-primary-light);
}
.hu-faq__item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--hu-primary-dark);
    font-size: 15.5px;
    list-style: none;
}
.hu-faq__item summary::-webkit-details-marker { display: none; }
.hu-faq__item summary i {
    color: var(--hu-primary);
    font-size: 18px;
    transition: transform .2s ease;
    flex-shrink: 0;
}
.hu-faq__item[open] summary i {
    transform: rotate(180deg);
}
.hu-faq__a {
    padding: 0 20px 18px;
}
.hu-faq__a p {
    color: #475569;
    line-height: 1.65;
    font-size: 14.5px;
    margin: 0;
}

/* ----------------------------------------------------------------------------
   FORM
   ---------------------------------------------------------------------------- */
.hu-section--form {
    background: linear-gradient(180deg, #fff 0%, var(--hu-primary-soft) 100%);
}
.hu-form-card {
    background: #fff;
    border: 1px solid var(--hu-border);
    border-radius: 18px;
    padding: 36px 32px;
    box-shadow: var(--hu-shadow);
}
.hu-form-card--center {
    text-align: center;
}
@media (max-width: 540px) {
    .hu-form-card { padding: 26px 20px; }
}
.hu-form-card__head {
    text-align: center;
    margin-bottom: 28px;
}
.hu-form-card__title {
    margin-bottom: 8px;
}
.hu-form-card__lead {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.hu-form {
    display: grid;
    gap: 16px;
}
.hu-form__row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.hu-form__grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 540px) {
    .hu-form__grid-2 { grid-template-columns: 1fr; }
}
.hu-form__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--hu-text);
}
.hu-form__opt {
    color: var(--hu-muted);
    font-weight: 400;
    font-size: 13px;
}
.hu-form__input {
    width: 100%;
    box-sizing: border-box;
    padding: 11px 14px;
    border: 1px solid var(--hu-border);
    border-radius: 9px;
    font-size: 15px;
    background: #fff;
    color: var(--hu-text);
    transition: border-color .12s ease, box-shadow .12s ease;
    font-family: inherit;
}
/* Inputwrap (icon'lu input) display: block, .hu-form__row flex column'da
   stretch çalışsın diye explicit width: 100% lazım - aksi halde wrap
   içindeki input default content-fit genişliği alıyor ("yarım" görünüm). */
.hu-form__inputwrap {
    display: block;
    width: 100%;
}
.hu-form__input:focus {
    outline: 0;
    border-color: var(--hu-primary);
    box-shadow: 0 0 0 3px rgba(21, 128, 61, .15);
}
.hu-form__input.is-invalid {
    border-color: #dc2626;
}
.hu-form__textarea {
    resize: vertical;
    min-height: 96px;
    line-height: 1.5;
}
.hu-form__err {
    color: #dc2626;
    font-size: 12.5px;
}
.hu-form__hint {
    text-align: center;
    color: var(--hu-muted);
    font-size: 13px;
    margin: 8px 0 0;
}

/* Honeypot (görünmez) */
.hu-form__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Radio grup (üyelik tipi seçimi) */
.hu-radio-group {
    display: grid;
    gap: 8px;
}
.hu-radio-group.is-invalid {
    padding: 8px;
    border: 1px solid #dc2626;
    border-radius: 9px;
}
.hu-radio {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--hu-border);
    border-radius: 10px;
    cursor: pointer;
    transition: border-color .15s ease, background .15s ease;
}
.hu-radio:hover {
    border-color: var(--hu-primary-light);
    background: var(--hu-primary-soft);
}
.hu-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.hu-radio__bullet {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--hu-border);
    background: #fff;
    margin-top: 2px;
    transition: all .15s ease;
    position: relative;
}
.hu-radio input:checked + .hu-radio__bullet {
    border-color: var(--hu-primary);
    background: var(--hu-primary);
    box-shadow: inset 0 0 0 3px #fff;
}
.hu-radio:has(input:checked) {
    border-color: var(--hu-primary);
    background: var(--hu-primary-soft);
}
.hu-radio__label {
    font-size: 14.5px;
    color: var(--hu-text);
    line-height: 1.45;
}

/* KVKK checkbox */
.hu-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    padding: 4px 0;
    cursor: pointer;
}
.hu-form__check input {
    margin-top: 3px;
    accent-color: var(--hu-primary);
    flex-shrink: 0;
}
.hu-form__check a {
    color: var(--hu-primary);
    text-decoration: underline;
}
.hu-form__check.is-invalid span {
    color: #dc2626;
}

/* Alert */
.hu-alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 9px;
    font-size: 14px;
    margin-bottom: 18px;
}
.hu-alert--error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ----------------------------------------------------------------------------
   FORM EXTENDED (.hu-formx) - split-screen redesign (2026-05-16 iter 2)
   ----------------------------------------------------------------------------
   Sol: hook + 3 adım + trust signals. Sağ: elevated form kartı.
   Background: yeşil gradient + ambient blob/grid. Mobilde tek kolon.
   .hu-form-card (eski) hâlâ tesekkurler sayfasında kullanıldığı için silinmedi.
   ---------------------------------------------------------------------------- */
.hu-formx {
    position: relative;
    overflow: hidden;
    padding: 80px 0 100px;
    background: linear-gradient(135deg, var(--hu-primary-dark) 0%, var(--hu-primary) 60%, #16a34a 100%);
    color: #fff;
}
@media (max-width: 540px) {
    .hu-formx { padding: 56px 0 72px; }
}

.hu-formx__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hu-formx__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}
.hu-formx__blob--a {
    width: 480px; height: 480px;
    top: -160px; left: -120px;
    background: #4ade80;
}
.hu-formx__blob--b {
    width: 420px; height: 420px;
    bottom: -160px; right: -120px;
    background: #fbbf24;
    opacity: .22;
}
.hu-formx__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.hu-formx__split {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 960px) {
    .hu-formx__split { grid-template-columns: 1fr; gap: 32px; }
}

/* --- Sol kolon --- */
.hu-formx__side {
    color: #fff;
}
.hu-formx__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hu-formx__eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, .25);
    animation: hu-pulse 2.2s ease-in-out infinite;
}
@keyframes hu-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(251, 191, 36, .25); }
    50% { box-shadow: 0 0 0 8px rgba(251, 191, 36, .08); }
}

.hu-formx__title {
    font-size: clamp(30px, 4.5vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 18px 0 16px;
    color: #fff;
}
.hu-formx__title-em {
    background: linear-gradient(135deg, #fbbf24 0%, #fde68a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hu-formx__sub {
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,.85);
    margin: 0 0 28px;
    max-width: 480px;
}

.hu-formx__steps {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 12px;
}
.hu-formx__steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform .15s ease, background .15s ease;
}
.hu-formx__steps li:hover {
    transform: translateX(2px);
    background: rgba(255,255,255,.13);
}
.hu-formx__step-no {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: var(--hu-primary-dark);
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Step icon badge - rounded-square, kademe rengiyle, sağ-alt köşede mini sıra rakamı */
.hu-formx__step-icon {
    position: relative;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 6px 14px rgba(0,0,0,.18);
    transition: transform .15s ease;
}
.hu-formx__steps li:hover .hu-formx__step-icon {
    transform: rotate(-3deg) scale(1.04);
}
/* Adıma özel renk vurgusu */
.hu-formx__step-icon--1 {
    background: linear-gradient(135deg, #86efac 0%, #22c55e 100%);
    color: var(--hu-primary-dark);
}
.hu-formx__step-icon--2 {
    background: linear-gradient(135deg, #93c5fd 0%, #3b82f6 100%);
    color: #1e3a8a;
}
.hu-formx__step-icon--3 {
    background: linear-gradient(135deg, #fde68a 0%, #f59e0b 100%);
    color: #78350f;
}
/* Mini sıra rakamı - badge tarzı */
.hu-formx__step-num {
    position: absolute;
    right: -6px;
    bottom: -6px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #fff;
    color: var(--hu-primary-dark);
    font-size: 11px;
    font-weight: 800;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.18);
    border: 1px solid rgba(0,0,0,.05);
}
.hu-formx__steps li > div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.hu-formx__steps li strong {
    color: #fff;
    font-size: 14.5px;
    font-weight: 700;
}
.hu-formx__steps li span {
    color: rgba(255,255,255,.7);
    font-size: 12.5px;
}

.hu-formx__trust {
    display: grid;
    gap: 8px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255,255,255,.18);
    padding-top: 18px;
}
.hu-formx__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: rgba(255,255,255,.85);
}
.hu-formx__trust-item i {
    color: #fbbf24;
    font-size: 16px;
    flex-shrink: 0;
}

/* --- Sağ kolon: form kartı --- */
.hu-formx__card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 32px 30px;
    color: var(--hu-text);
    box-shadow:
        0 20px 60px rgba(20, 83, 45, .35),
        0 4px 16px rgba(0,0,0,.12);
}
@media (max-width: 540px) {
    .hu-formx__card { padding: 24px 20px; border-radius: 16px; }
}
.hu-formx__card-glow {
    position: absolute;
    inset: -2px;
    z-index: -1;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(251, 191, 36, .35), rgba(74, 222, 128, .35));
    filter: blur(16px);
    opacity: .5;
}

.hu-formx__card-head {
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--hu-border);
}
.hu-formx__card-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--hu-primary-soft);
    color: var(--hu-primary-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 6px;
    margin-bottom: 10px;
}
.hu-formx__card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--hu-primary-dark);
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.hu-formx__card-lead {
    color: var(--hu-muted);
    font-size: 14px;
    margin: 0;
}

/* Input ikonu */
.hu-form__inputwrap {
    position: relative;
}
.hu-form__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--hu-muted);
    font-size: 16px;
    pointer-events: none;
    transition: color .15s ease;
}
.hu-form__input--icon {
    padding-left: 40px;
}
.hu-form__inputwrap:focus-within .hu-form__icon {
    color: var(--hu-primary);
}

/* hint'i sade tut, ikonla biraz daha samimi */
.hu-form__hint i {
    margin-right: 4px;
    color: var(--hu-primary);
}

/* ----------------------------------------------------------------------------
   ALT-AUDIENCE NAV (footer hint)
   ---------------------------------------------------------------------------- */
.hu-altnav {
    padding: 36px 0 56px;
    text-align: center;
    background: var(--hu-bg);
    border-top: 1px solid var(--hu-border);
}
.hu-altnav p {
    color: var(--hu-muted);
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}
.hu-altnav a {
    color: var(--hu-primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--hu-primary-light);
    text-underline-offset: 3px;
}
.hu-altnav a:hover {
    text-decoration-color: var(--hu-primary);
}
