/* =============================================================================
   /is-firsati landing - premium dark + gold (.if-* scoped)
   =============================================================================
   Tema: basaribiryolculuktur.com'dan port. Bu sayfa herbalsepet'in default
   yeşil/krem temasından kasıtlı olarak ayrı duruyor - "premium fırsat" hissi
   için onyx zemin + gold accent. Tüm style'lar .if-page (veya child) altında
   scoped; site genelini kirletmiyor.

   Renk skalası:
     onyx-950: #06090f   (gövde)
     onyx-900: #0a0e14   (kart zeminleri)
     onyx-800: #11161f   (yumuşak yüzey)
     onyx-700: #1a212c   (placeholder)
     gold-300: #f4d47c
     gold-400: #e5c46a
     gold-500: #d4af37
     gold-600: #a07d22
   ============================================================================= */

.if-page {
    position: relative;
    background: #06090f;
    color: #e5e7eb;
    overflow: hidden;
    /* Header light, .if-page dark - aralarındaki keskin geçişi yumuşatmak için
       tepede ince hairline + üstten gradient. */
    border-top: 1px solid rgba(212, 175, 55, 0.18);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.if-page * { box-sizing: border-box; }

.if-page a { color: #f4d47c; text-decoration: none; transition: color 0.2s ease; }
.if-page a:hover { color: #fff; }

/* Container'lar - herbalsepet container yerine kendi narrow varyantlarımız */
.if-container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; }
.if-container--narrow  { max-width: 920px; }
.if-container--xnarrow { max-width: 720px; }

/* -----------------------------------------------------------------------------
   Ambient background (radial blobs + grid)
   ----------------------------------------------------------------------------- */
.if-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.if-ambient__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}
.if-ambient__blob--1 {
    top: 40px; left: 18%;
    width: 700px; height: 700px;
    background: rgba(212, 175, 55, 0.07);
}
.if-ambient__blob--2 {
    bottom: 20%; right: -100px;
    width: 600px; height: 600px;
    background: rgba(212, 175, 55, 0.06);
    filter: blur(110px);
}
.if-ambient__grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

/* -----------------------------------------------------------------------------
   Reveal animation override - global .reveal layout JS'inde tanımlı
   (.visible class ekleniyor). Burada ek animasyon var.
   ----------------------------------------------------------------------------- */
.if-page .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.2, 0.8, 0.2, 1),
                transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.if-page .reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* -----------------------------------------------------------------------------
   Typography helpers
   ----------------------------------------------------------------------------- */
.if-h2 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(28px, 4vw, 52px);
    line-height: 1.1;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.if-h2__em {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(110deg, #fff5d6 0%, #f4d47c 22%, #d4af37 48%, #b8941f 70%, #d4af37 90%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: ifShine 9s linear infinite;
}
@keyframes ifShine {
    0%   { background-position: 200% 50%; }
    100% { background-position: -50% 50%; }
}

.if-section {
    position: relative;
    padding: 96px 0;
    z-index: 1;
}
.if-section__head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}
.if-section__lead {
    color: #94a3b8;
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
}
.if-accent { color: #f4d47c; font-weight: 500; }

/* -----------------------------------------------------------------------------
   Pill (eyebrow) badge
   ----------------------------------------------------------------------------- */
.if-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(17, 22, 31, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    margin-bottom: 24px;
}
.if-pill--warn { border-color: rgba(212, 175, 55, 0.16); }
.if-pill__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #f4d47c;
    animation: ifPulse 4s ease-in-out infinite;
}
@keyframes ifPulse { 0%, 100% { opacity: 0.5; } 50% { opacity: 1; } }
.if-pill__text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #f4d47c;
    font-weight: 600;
}
.if-pill .bi { color: #e5c46a; font-size: 13px; }

/* -----------------------------------------------------------------------------
   Buttons
   ----------------------------------------------------------------------------- */
.if-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.3s ease;
    position: relative;
    overflow: hidden;
}
/* Primary buton: bronze/koyu altın gradient + beyaz text + ince shadow.
   Önceki açık gold + siyah text okunurluk düşüktü - basari'da farklı zemin
   üzerinde işe yarıyordu, bizim sayfa daha iyi kontrast istiyor. */
.if-btn--primary {
    color: #fff;
    background: linear-gradient(135deg, #c69820 0%, #a07d22 45%, #6b4d11 100%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    box-shadow: 0 10px 40px -10px rgba(212, 175, 55, 0.5),
                inset 0 1px 0 rgba(255, 245, 214, 0.25),
                inset 0 -1px 0 rgba(40, 30, 5, 0.5);
    font-weight: 700;
}
.if-btn--primary:hover {
    color: #fff;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 45%, #8a6d18 100%);
    transform: translateY(-1px);
    box-shadow: 0 14px 50px -10px rgba(212, 175, 55, 0.7),
                inset 0 1px 0 rgba(255, 245, 214, 0.35),
                inset 0 -1px 0 rgba(40, 30, 5, 0.55);
}
.if-btn--primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(120deg, transparent 28%, rgba(255, 230, 150, 0.35), transparent 72%);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}
.if-btn--primary:hover::before { transform: translateX(100%); }
.if-btn--primary .bi { color: #fff; }

.if-btn--ghost {
    color: #e5c46a;
    background: rgba(212, 175, 55, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.35);
}
.if-btn--ghost:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.10);
    border-color: rgba(212, 175, 55, 0.6);
}

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

.if-cta-row {
    display: flex; flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
}
.if-cta-row--start  { justify-content: flex-start; margin-bottom: 14px; }
.if-cta-row--center { justify-content: center; margin: 56px 0 0; }

@media (max-width: 640px) {
    .if-btn { padding: 12px 22px; font-size: 14px; }
    .if-cta-row .if-btn { flex: 1 1 100%; }
}

/* -----------------------------------------------------------------------------
   HERO
   ----------------------------------------------------------------------------- */
.if-hero {
    position: relative;
    padding: 96px 0 80px;
    z-index: 1;
}
.if-hero__inner { text-align: center; }
.if-hero__title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.04;
    margin: 0 0 22px;
    color: #fff;
    letter-spacing: -0.02em;
}
.if-hero__title-em {
    display: inline-block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 1.15em;
    background: linear-gradient(110deg, #fff5d6 0%, #f4d47c 22%, #d4af37 48%, #b8941f 70%, #d4af37 90%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: ifShine 9s linear infinite;
}
.if-hero__sub {
    font-size: clamp(15px, 1.6vw, 19px);
    margin: 0 auto 8px;
    max-width: 720px;
    color: #cbd5e1;
}
.if-hero__sub-small {
    font-size: 14px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 48px;
    line-height: 1.55;
}

/* Stats */
.if-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}
.if-stats__item { text-align: center; }
.if-stats__item--mid {
    border-left:  1px solid rgba(212, 175, 55, 0.15);
    border-right: 1px solid rgba(212, 175, 55, 0.15);
}
.if-stats__num {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: clamp(24px, 3.5vw, 38px);
    background: linear-gradient(110deg, #fff5d6 0%, #f4d47c 22%, #d4af37 48%, #b8941f 70%, #d4af37 90%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: ifShine 9s linear infinite;
}

/* -----------------------------------------------------------------------------
   Hero VIDEO
   ----------------------------------------------------------------------------- */
.if-video {
    max-width: 920px;
    margin: 0 auto 56px;
    position: relative;
}
.if-video__glow {
    position: absolute; inset: -16px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.18));
    filter: blur(40px);
    pointer-events: none;
}
.if-video__frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(212, 175, 55, 0.15);
    background: #06090f;
}
.if-video__thumb {
    position: absolute; inset: 0;
    cursor: pointer; z-index: 2;
    border: 0; padding: 0;
}
.if-video__thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.if-video__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(6, 9, 15, 0.55), rgba(6, 9, 15, 0.35));
}
.if-video__play {
    position: absolute; inset: 0;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 14px;
    pointer-events: none;
}
.if-video__play-btn {
    width: 88px; height: 88px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #e5c46a 0%, #d4af37 35%, #b8941f 65%, #d4af37 100%);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: transform 0.2s ease;
}
.if-video__thumb:hover .if-video__play-btn { transform: scale(1.08); }
.if-video__play-btn .bi {
    font-size: 38px;
    color: #06090f;
    margin-left: 4px;
}
.if-video__play-label {
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.05em;
    font-size: 15px;
}
.if-video__player {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    display: none;
    background: #06090f;
    z-index: 3;
}
.if-video.is-playing .if-video__thumb { display: none; }
.if-video.is-playing .if-video__player { display: block; }

@media (max-width: 640px) {
    .if-video__play-btn { width: 64px; height: 64px; }
    .if-video__play-btn .bi { font-size: 28px; }
}

/* -----------------------------------------------------------------------------
   SORUNLAR (4 ağrı kartı)
   ----------------------------------------------------------------------------- */
.if-pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}
@media (max-width: 720px) { .if-pain-grid { grid-template-columns: 1fr; gap: 14px; } }

.if-pain {
    position: relative;
    background: rgba(17, 22, 31, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.if-pain::before, .if-pain::after {
    content: ''; position: absolute;
    width: 14px; height: 14px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}
.if-pain::before { top: 8px; left: 8px;  border-right: 0; border-bottom: 0; }
.if-pain::after  { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }

.if-pain__icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.18);
    color: #fca5a5;
    font-size: 20px;
}
.if-pain__body h3 {
    margin: 0 0 8px;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}
.if-pain__body p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.6;
    font-size: 14.5px;
}

@media (max-width: 720px) {
    .if-pain { flex-direction: column; padding: 22px; gap: 12px; }
}

.if-quote {
    text-align: center;
    margin: 56px auto 0;
    max-width: 760px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 30px);
    line-height: 1.35;
    color: #f4d47c;
}

/* -----------------------------------------------------------------------------
   ÇÖZÜM (3 sütun)
   ----------------------------------------------------------------------------- */
.if-pillar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 920px) { .if-pillar-grid { grid-template-columns: 1fr; } }

.if-pillar {
    position: relative;
    background: rgba(17, 22, 31, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.5s ease;
}
.if-pillar:hover { transform: translateY(-6px); }
.if-pillar__img {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}
.if-pillar__img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.if-pillar:hover .if-pillar__img img { transform: scale(1.05); }
.if-pillar__img::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(6, 9, 15, 0.55) 75%, rgba(6, 9, 15, 0.95) 100%);
}
.if-pillar__body { padding: 28px; }
.if-pillar__head {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 14px;
}
.if-pillar__badge {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #e5c46a 0%, #d4af37 35%, #b8941f 65%, #d4af37 100%);
    color: #06090f;
    font-size: 18px;
}
.if-pillar__no {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #f4d47c;
    font-weight: 600;
}
.if-pillar__body h3 {
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}
.if-pillar__body p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.65;
    font-size: 14.5px;
}

/* -----------------------------------------------------------------------------
   LEADFLOW NETWORK (gizem)
   ----------------------------------------------------------------------------- */
.if-section--mystery {
    background:
        radial-gradient(ellipse at center, rgba(6, 9, 15, 0.4) 30%, rgba(6, 9, 15, 0.95) 80%),
        url('/assets/img/is-firsati/leadflow-mystery.jpg') center/cover no-repeat;
}
.if-leadflow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 980px) { .if-leadflow { grid-template-columns: 1fr; gap: 50px; } }

.if-leadflow__copy { }
.if-leadflow__copy .if-h2 { margin-bottom: 22px; }
.if-leadflow__lead {
    font-size: 17px;
    color: #cbd5e1;
    margin: 0 0 18px;
    line-height: 1.55;
}
.if-leadflow__desc {
    color: #94a3b8;
    line-height: 1.65;
    margin: 0 0 32px;
    font-size: 14.5px;
}
.if-leadflow__bullets { list-style: none; padding: 0; margin: 0 0 32px; }
.if-leadflow__bullets li {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 0;
    color: #cbd5e1;
    font-size: 14.5px;
}
.if-leadflow__bullets .bi {
    color: #f4d47c;
    font-size: 18px;
    flex-shrink: 0;
}
.if-leadflow__caption {
    color: #475569;
    font-size: 12px;
    font-style: italic;
    margin: 18px 0 0;
}

/* Mock dashboard */
.if-leadflow__mock {
    position: relative;
}
.if-leadflow__mock-glow {
    position: absolute; inset: -24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.18));
    filter: blur(40px);
    pointer-events: none;
}
.if-leadflow__mock-frame {
    position: relative;
    background: rgba(17, 22, 31, 0.8);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 18px;
    padding: 14px;
}
.if-leadflow__mock-titlebar {
    display: flex; align-items: center; gap: 6px;
    padding: 6px 10px 12px;
}
.if-leadflow__dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: rgba(212, 175, 55, 0.55);
}
.if-leadflow__dot--gray { background: rgba(100, 116, 139, 0.6); }
.if-leadflow__app {
    margin-left: 8px;
    font-size: 10px; letter-spacing: 0.18em;
    color: #64748b;
    text-transform: uppercase;
}
.if-leadflow__live {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 10px; letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f4d47c;
}
.if-leadflow__live-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: #f4d47c;
    animation: ifPulse 4s ease-in-out infinite;
}
.if-leadflow__panel {
    background: #0a0e14;
    border-radius: 12px;
    overflow: hidden;
    padding: 14px;
}
.if-blur {
    filter: blur(8px) saturate(1.1);
    pointer-events: none;
    user-select: none;
}
.if-leadflow__kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}
.if-leadflow__kpi {
    background: #11161f;
    border-radius: 8px;
    padding: 14px;
}
.if-leadflow__kpi-label {
    display: block;
    font-size: 10px; color: #94a3b8;
    margin-bottom: 4px;
}
.if-leadflow__kpi-num {
    display: block;
    font-size: 22px; font-weight: 700;
    background: linear-gradient(110deg, #fff5d6 0%, #f4d47c 22%, #d4af37 48%, #b8941f 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.if-leadflow__cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.if-leadflow__col {
    background: #11161f;
    border-radius: 8px;
    padding: 12px;
    min-height: 130px;
}
.if-leadflow__col-h {
    font-size: 10px;
    color: #f4d47c;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 8px;
}
.if-leadflow__row {
    background: #1a212c;
    border-radius: 6px;
    height: 28px;
    margin-bottom: 6px;
}

.if-leadflow__lock {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    flex-direction: column; gap: 12px;
    pointer-events: none;
}
.if-leadflow__lock-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(6, 9, 15, 0.85);
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
    color: #f4d47c;
    font-size: 26px;
}
.if-leadflow__lock-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #f4d47c;
}

/* -----------------------------------------------------------------------------
   YOLCULUK (5 adımlı timeline)
   ----------------------------------------------------------------------------- */
.if-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.if-steps::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 12px; bottom: 12px;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.5), rgba(212, 175, 55, 0.5), transparent);
}
@media (max-width: 720px) { .if-steps::before { display: none; } }

.if-step {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 12px 0;
}
.if-step__no {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #0a0e14;
    border: 1px solid rgba(212, 175, 55, 0.4);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
}
.if-step__no span {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 20px; font-weight: 700;
    background: linear-gradient(110deg, #fff5d6 0%, #f4d47c 22%, #d4af37 48%, #b8941f 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.if-step__no .bi {
    font-size: 22px;
    color: #f4d47c;
}
.if-step--final .if-step__no {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
}
.if-step__body {
    flex: 1;
    background: rgba(17, 22, 31, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 14px;
    padding: 22px 26px;
}
.if-step--final .if-step__body { border-color: rgba(212, 175, 55, 0.3); }
.if-step__body h3 {
    margin: 0 0 6px;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
}
.if-step__body p {
    margin: 0;
    color: #94a3b8;
    line-height: 1.65;
    font-size: 14.5px;
}

/* -----------------------------------------------------------------------------
   TANIKLIKLAR
   ----------------------------------------------------------------------------- */
.if-section--testi {
    background:
        linear-gradient(180deg, #06090f, transparent 25%, transparent 75%, #06090f),
        url('/assets/img/is-firsati/taniklik-bg.jpg') center/cover no-repeat;
}
.if-testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 920px) { .if-testi-grid { grid-template-columns: 1fr; } }

.if-testi {
    position: relative;
    background: rgba(17, 22, 31, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 18px;
    padding: 36px 28px 28px;
    margin: 16px 0 0;
}
.if-testi__mark {
    position: absolute;
    top: -16px; left: 22px;
    font-size: 32px;
    color: rgba(212, 175, 55, 0.4);
}
.if-testi blockquote {
    margin: 0 0 22px;
    color: #cbd5e1;
    line-height: 1.65;
    font-style: italic;
    font-size: 15px;
}
.if-testi figcaption {
    display: flex; align-items: center; gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}
.if-testi__avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f4d47c 0%, #d4af37 100%);
    color: #06090f;
    font-weight: 700;
    font-size: 16px;
}
.if-testi__meta { display: flex; flex-direction: column; }
.if-testi__name { font-size: 14px; font-weight: 600; color: #fff; }
.if-testi__role { font-size: 12px; color: #64748b; }

/* -----------------------------------------------------------------------------
   SSS - <details> tabanlı accordion
   ----------------------------------------------------------------------------- */
.if-faq { display: flex; flex-direction: column; gap: 12px; }
.if-faq__item {
    background: rgba(17, 22, 31, 0.65);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 14px;
    overflow: hidden;
}
.if-faq__item[open] { border-color: rgba(212, 175, 55, 0.25); }
.if-faq__q {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px;
    color: #fff;
    font-weight: 500;
    font-size: 15.5px;
}
.if-faq__q::-webkit-details-marker { display: none; }
.if-faq__q .bi {
    color: #e5c46a;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.if-faq__item[open] .if-faq__q .bi { transform: rotate(180deg); }
.if-faq__a {
    padding: 0 22px 20px;
    color: #94a3b8;
    line-height: 1.65;
    font-size: 14.5px;
}
.if-faq__a p { margin: 0; }

/* -----------------------------------------------------------------------------
   FORM
   ----------------------------------------------------------------------------- */
.if-section--form { padding-top: 64px; }
.if-form-card {
    position: relative;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(212, 175, 55, 0.04)),
        rgba(10, 14, 20, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 24px;
    padding: 56px 48px;
    overflow: hidden;
}
@media (max-width: 720px) { .if-form-card { padding: 40px 24px; border-radius: 18px; } }

.if-form-card__glow {
    position: absolute;
    width: 240px; height: 240px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    filter: blur(80px);
    pointer-events: none;
}
.if-form-card__glow--1 { top: -80px; left: -80px; }
.if-form-card__glow--2 { bottom: -80px; right: -80px; }

.if-form-card__head {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}
.if-form-card__hr {
    width: 130px; height: 1px;
    margin: 0 auto 24px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
}
.if-form-card__lead {
    color: #cbd5e1;
    margin: 18px auto 0;
    max-width: 520px;
    line-height: 1.6;
    font-size: 14.5px;
}

.if-form { position: relative; }
.if-form__row { margin-bottom: 18px; }
.if-form__grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) { .if-form__grid-2 { grid-template-columns: 1fr; gap: 0; } }

.if-form__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 600;
}
.if-form__opt { color: #475569; font-weight: 400; text-transform: none; letter-spacing: 0; }
.if-form__input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    background: #11161f;
    color: #fff;
    border: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-family: inherit;
}
.if-form__input::placeholder { color: #64748b; }
.if-form__input:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    background: #1a212c;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}
.if-form__input.is-invalid {
    border-color: rgba(248, 113, 113, 0.6);
    background: rgba(248, 113, 113, 0.06);
}
.if-form__textarea { resize: vertical; min-height: 84px; }
.if-form__select { appearance: none; -webkit-appearance: none; padding-right: 44px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16' fill='%23e5c46a'><path d='M3.204 5L8 10.481 12.796 5H3.204z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
}
.if-form__honeypot {
    position: absolute;
    left: -9999px; top: -9999px;
    width: 1px; height: 1px;
    opacity: 0; pointer-events: none;
}
.if-form__err {
    display: block;
    color: #fca5a5;
    font-size: 12.5px;
    margin-top: 6px;
}
.if-form__err--center { text-align: center; }
.if-form__check {
    display: flex; gap: 10px;
    align-items: flex-start;
    padding: 10px 0 16px;
    color: #cbd5e1;
    font-size: 13.5px;
    line-height: 1.5;
    cursor: pointer;
}
.if-form__check input[type="checkbox"] {
    width: 18px; height: 18px;
    accent-color: #d4af37;
    margin-top: 2px;
    flex-shrink: 0;
}
.if-form__check.is-invalid { color: #fca5a5; }
.if-form__check a { color: #f4d47c; text-decoration: underline; }
.if-form__hint {
    text-align: center;
    color: #475569;
    font-size: 12px;
    margin: 14px 0 0;
}

.if-alert {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
}
.if-alert--error {
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #fca5a5;
}
.if-alert .bi { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* -----------------------------------------------------------------------------
   DISCLAIMER (mevzuat uyarısı)
   ----------------------------------------------------------------------------- */
.if-disclaimer {
    padding: 32px 0 64px;
    position: relative;
    z-index: 1;
}
.if-disclaimer p {
    color: #475569;
    font-size: 12.5px;
    line-height: 1.7;
    text-align: center;
    margin: 0;
}
.if-disclaimer strong { color: #94a3b8; }

/* -----------------------------------------------------------------------------
   Mobile sticky CTA
   ----------------------------------------------------------------------------- */
.if-mob-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 50;
    padding: 12px 16px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 9, 15, 0.92) 45%);
    transform: translateY(110%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.35s ease;
}
.if-mob-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
}
@media (max-width: 920px) { .if-mob-cta { display: block; } }
@media (min-width: 921px)  { .if-mob-cta { display: none !important; } }

/* Bottom bar varken (frontend.css mobile-bottom-bar) çakışmasın - is-visible
   class yalnızca scroll 500+ olunca aktif olacak (JS). */
