/* Stitch design system — eğitim başvuru landing şablonları (Technical Intelligence) */
:root {
    --st-bg: #0b1326;
    --st-surface-deep: #0f172a;
    --st-surface-card: #1e293b;
    --st-surface-low: #131b2e;
    --st-surface-lowest: #060e20;
    --st-surface-variant: #2d3449;
    --st-on-surface: #dae2fd;
    --st-text-muted: #94a3b8;
    --st-brand-orange: #f97316;
    --st-outline-variant: #584237;
    --st-container-max: 80rem;
    --st-margin-desktop: 2.5rem;
    --st-margin-mobile: 1rem;
}

.eb-page.st-theme,
.eb-page .st-landing {
    color: var(--st-on-surface);
    background: var(--st-bg);
    background-image: none;
}

.st-landing {
    overflow-x: hidden;
}

.st-container {
    max-width: var(--st-container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--st-margin-mobile);
    padding-right: var(--st-margin-mobile);
}

@media (min-width: 768px) {
    .st-container {
        padding-left: var(--st-margin-desktop);
        padding-right: var(--st-margin-desktop);
    }
}

.st-glass-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.st-glass-card:hover {
    border-color: rgba(249, 115, 22, 0.35);
}

.st-hero-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.12) 0%, transparent 70%);
}

.st-text-glow {
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.st-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--st-brand-orange);
}

.st-badge-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--st-brand-orange);
    animation: st-pulse 2s ease-in-out infinite;
}

@keyframes st-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.st-hero-title {
    font-size: clamp(2.25rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.st-hero-title .st-accent {
    color: var(--st-brand-orange);
}

.st-hero-lead {
    font-size: 1.125rem;
    line-height: 1.65;
    color: var(--st-text-muted);
    max-width: 36rem;
    margin-bottom: 3rem;
}

.st-hero-lead strong {
    color: #fff;
}

.st-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    background: var(--st-brand-orange);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.25);
}

.st-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.35);
    color: #fff;
}

.st-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.st-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.st-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.st-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .st-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.st-stat-num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.st-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--st-text-muted);
    margin-top: 0.25rem;
}

.st-hero-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .st-hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.st-hero-section {
    position: relative;
    padding: 6rem 0 8rem;
}

.st-hero-section .st-hero-gradient-bg {
    position: absolute;
    top: -25%;
    left: 50%;
    transform: translateX(-50%);
    width: 140%;
    height: 120%;
    pointer-events: none;
}

.st-hero-visual {
    position: relative;
}

.st-hero-visual .st-glass-card {
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.st-hero-visual img {
    width: 100%;
    height: clamp(280px, 40vw, 450px);
    object-fit: contain;
    object-position: center;
    border-radius: 0.75rem;
    opacity: 0.95;
    background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.6) 0%, rgba(2, 6, 23, 0.95) 100%);
}

.st-float-card {
    position: absolute;
    padding: 1.5rem;
    border-radius: 1rem;
    z-index: 2;
}

.st-float-card--bl {
    bottom: -1.5rem;
    left: -1.5rem;
    border-color: rgba(249, 115, 22, 0.2);
}

.st-float-card--tr {
    top: -1.5rem;
    right: -1.5rem;
    border-color: rgba(249, 115, 22, 0.35);
}

.st-float-card .st-float-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--st-brand-orange);
    line-height: 1.1;
}

.st-float-card .st-float-value--white {
    color: #fff;
}

.st-float-card .st-float-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--st-text-muted);
    margin-top: 0.25rem;
}

.st-section {
    padding: 6rem 0;
}

.st-section--lowest {
    background: var(--st-surface-lowest);
}

.st-section--low {
    background: var(--st-surface-low);
    position: relative;
}

.st-section-title {
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.st-section-sub {
    font-size: 1.125rem;
    color: var(--st-text-muted);
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.st-section-head {
    text-align: center;
    margin-bottom: 5rem;
}

.st-section-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.35em;
    color: var(--st-brand-orange);
    margin-bottom: 1rem;
}

.st-steps {
    display: grid;
    gap: 3rem;
}

@media (min-width: 768px) {
    .st-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .st-steps--4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.st-step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: var(--st-surface-variant);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--st-brand-orange);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.st-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.st-step p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--st-text-muted);
}

.st-benefits {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .st-benefits--3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.st-benefit-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, rgba(15, 23, 42, 0.9) 100%);
    border: 1px solid rgba(249, 115, 22, 0.1);
    transition: border-color 0.3s ease;
}

.st-benefit-card:hover {
    border-color: rgba(249, 115, 22, 0.45);
}

.st-benefit-card .st-step-icon {
    background: rgba(249, 115, 22, 0.1);
    transition: background 0.3s ease, color 0.3s ease;
}

.st-benefit-card:hover .st-step-icon {
    background: var(--st-brand-orange);
    color: #fff;
}

.st-bonus-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .st-bonus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.st-bonus-card {
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .st-bonus-card {
        flex-direction: row;
        min-height: 18rem;
    }
}

.st-bonus-card .st-bonus-media {
    position: relative;
    min-height: 14rem;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #1a1410 0%, #0a0a0a 55%, #050505 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .st-bonus-card .st-bonus-media {
        width: 50%;
        min-height: 18rem;
    }
}

.st-bonus-card .st-bonus-media img {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 14rem;
    max-height: 22rem;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    padding: 0.35rem;
}

@media (min-width: 768px) {
    .st-bonus-card .st-bonus-media img {
        position: absolute;
        inset: 0;
        min-height: 0;
        max-height: none;
        padding: 0.5rem;
    }
}

.st-bonus-card:hover .st-bonus-media img {
    transform: scale(1.02);
}

.st-bonus-card .st-bonus-media::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.55) 0%, transparent 42%);
}

@media (min-width: 768px) {
    .st-bonus-card .st-bonus-media::after {
        background: linear-gradient(to right, rgba(2, 6, 23, 0.5) 0%, transparent 40%);
    }
}

.st-bonus-card .st-bonus-body {
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.st-bonus-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
    width: fit-content;
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.4);
    color: var(--st-brand-orange);
}

.st-bonus-body h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.st-bonus-body p {
    color: var(--st-text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.st-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.st-check-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--st-on-surface);
    margin-bottom: 0.5rem;
}

.st-check-list li i {
    color: var(--st-brand-orange);
}

.st-quote {
    background: rgba(249, 115, 22, 0.1);
    border-left: 4px solid var(--st-brand-orange);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
}

.st-quote p {
    font-style: italic;
    color: #fff;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.st-quote cite {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--st-brand-orange);
    font-style: normal;
}

.st-mastery-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .st-mastery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.st-mastery-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background: var(--st-surface-deep);
    border: 1px solid rgba(88, 66, 55, 0.35);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.st-mastery-card:hover {
    border-color: rgba(249, 115, 22, 0.45);
    box-shadow: 0 0 40px -12px rgba(249, 115, 22, 0.25);
}

.st-mastery-card--highlight {
    background: rgba(249, 115, 22, 0.05);
    border-color: rgba(249, 115, 22, 0.3);
}

.st-day-tag {
    display: inline-flex;
    padding: 0.35rem 1rem;
    border-radius: 0.5rem;
    background: rgba(249, 115, 22, 0.1);
    color: var(--st-brand-orange);
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.st-mastery-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.st-mastery-card > p {
    font-size: 0.875rem;
    color: var(--st-text-muted);
    line-height: 1.65;
    margin-bottom: 2rem;
}

.st-mastery-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--st-on-surface);
}

.st-mastery-meta i {
    color: var(--st-brand-orange);
}

.st-price-bar {
    margin-top: 5rem;
    padding: 2.5rem;
    border-radius: 1rem;
    border-color: rgba(249, 115, 22, 0.2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.st-price-bar h5 {
    color: #fff;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.st-price-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--st-brand-orange);
}

.st-price-note {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--st-text-muted);
}

.st-cta-section {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.st-cta-glow {
    position: absolute;
    top: -10rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50rem;
    height: 50rem;
    background: rgba(249, 115, 22, 0.08);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.st-cta-section .st-section-title {
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2rem, 5vw, 3.75rem);
}

.st-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
}

.st-cta-note {
    margin-top: 3rem;
    font-size: 0.875rem;
    color: var(--st-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.st-cta-note i {
    color: var(--st-brand-orange);
}

.st-form-section {
    padding: 4rem 0 6rem;
    background: var(--st-surface-lowest);
}

.st-form-section .st-section-head {
    margin-bottom: 2.5rem;
}

.st-form-wrap {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.st-form-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .st-form-layout--sidebar {
        grid-template-columns: 1fr 1.4fr;
        max-width: var(--st-container-max);
        align-items: start;
    }
}

.st-form-sidebar {
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--st-surface-variant);
}

.st-form-sidebar h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.st-form-sidebar > p {
    font-size: 0.9rem;
    color: var(--st-text-muted);
    margin-bottom: 1.5rem;
}

.st-sidebar-perk {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(34, 42, 61, 0.6);
    border: 1px solid var(--st-surface-variant);
    margin-bottom: 0.75rem;
}

.st-sidebar-perk i {
    color: var(--st-brand-orange);
    margin-top: 0.15rem;
}

.st-sidebar-perk h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--st-on-surface);
}

.st-sidebar-perk p {
    font-size: 0.75rem;
    color: var(--st-text-muted);
    margin-top: 0.25rem;
}

.st-footer {
    padding: 4rem 0;
    background: var(--st-surface-lowest);
    border-top: 1px solid rgba(88, 66, 55, 0.15);
}

.st-footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .st-footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.st-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.st-footer-brand i {
    color: var(--st-brand-orange);
}

.st-footer p {
    color: var(--st-text-muted);
    line-height: 1.65;
    max-width: 24rem;
}

.st-footer h4 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 1.5rem;
}

.st-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.st-footer ul li {
    margin-bottom: 0.75rem;
}

.st-footer ul a {
    color: var(--st-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.st-footer ul a:hover {
    color: var(--st-brand-orange);
}

.st-footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(88, 66, 55, 0.1);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--st-text-muted);
}

.st-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.st-trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--st-on-surface);
}

.st-trust-item i {
    color: var(--st-brand-orange);
}

.st-progress-row {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(88, 66, 55, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.st-progress-row span {
    font-weight: 700;
    color: #fff;
}

.st-progress-track {
    width: 5rem;
    height: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    overflow: hidden;
}

.st-progress-fill {
    height: 100%;
    background: var(--st-brand-orange);
    box-shadow: 0 0 10px var(--st-brand-orange);
}

.st-phase-num {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.st-phase-badge {
    display: inline-flex;
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    background: var(--st-brand-orange);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25);
}

.st-phase-badge--final {
    background: #fff;
    color: var(--st-brand-orange);
}

.st-section-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(249, 115, 22, 0.3), transparent);
}

.st-theme .eb-form-card,
.st-landing .eb-form-card {
    background: var(--st-surface-card);
    border: 1px solid var(--st-surface-variant);
    border-radius: 1rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.st-theme .eb-input:focus,
.st-landing .eb-input:focus {
    border-color: var(--st-brand-orange);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.35);
}

.st-theme .eb-label,
.st-landing .eb-label {
    color: var(--st-on-surface);
}

.st-theme .eb-input,
.st-landing .eb-input {
    background: var(--st-surface-variant);
    border-color: var(--st-surface-variant);
}

.st-theme .eb-btn-submit,
.st-landing .eb-btn-submit {
    background: var(--st-brand-orange);
    animation: none;
}

.st-theme .eb-btn-submit:hover,
.st-landing .eb-btn-submit:hover {
    filter: brightness(1.08);
}
