/* =========================================================
   HOME — yeni dizayn üçün xüsusi komponentlər
   ========================================================= */

/* ============= HERO (yeni full-screen) ============= */
.hero-full {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 60px;
}
.hero-full .container-narrow { max-width: 1180px; }

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .4;
    z-index: -1;
    pointer-events: none;
    animation: blob-float 18s ease-in-out infinite;
}
.hero-blob-1 {
    width: 500px; height: 500px;
    top: 5%; left: -10%;
    background: var(--color-accent);
}
.hero-blob-2 {
    width: 600px; height: 600px;
    bottom: -10%; right: -10%;
    background: var(--color-accent-2);
    animation-delay: -9s;
}
@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(50px, -30px) scale(1.1); }
    66%      { transform: translate(-30px, 40px) scale(0.95); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .55rem 1.1rem;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.4);
    box-shadow: 0 8px 30px -8px rgba(0,0,0,.15);
    color: var(--text-primary);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .01em;
}
:root[data-theme="dark"] .hero-badge {
    background: rgba(45,50,80,.6);
    border-color: rgba(255,255,255,.1);
    color: var(--text-primary);
}
.hero-badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-accent);
    box-shadow: 0 0 12px var(--color-accent);
    animation: pulse-dot 1.5s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .5; transform: scale(1.3); }
}

.hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin-bottom: 1.5rem;
}
.hero-title-pre,
.hero-title-post {
    display: block;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    color: var(--text-primary);
    background: none;
    -webkit-text-fill-color: var(--text-primary);
}
.hero-title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: .25rem 0;
    line-height: 1.05;
}

.hero-lead {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.6;
    max-width: 760px;
    margin: 1.5rem auto 0;
    color: var(--text-secondary);
}
.hero-lead strong { color: var(--text-primary); font-weight: 700; }

/* Hero stats */
.hero-stats {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 24px;
    box-shadow: 0 20px 50px -20px rgba(0,0,0,.2);
    max-width: 900px;
    margin-left: auto; margin-right: auto;
}
:root[data-theme="dark"] .hero-stats {
    background: rgba(45,50,80,.6);
    border-color: rgba(255,255,255,.1);
}
.hero-stat { text-align: center; min-width: 100px; }
.hero-stat-num {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.hero-stat-num small { font-size: 1.2rem; }
.hero-stat-label {
    font-size: .8rem;
    opacity: .75;
    margin-top: .35rem;
    display: flex; align-items: center; justify-content: center; gap: .35rem;
}
.hero-stat-divider {
    width: 1px; height: 40px;
    background: var(--border-color);
}

.hero-trust {
    color: var(--text-secondary);
    opacity: .9;
}

/* Hero scroll arrow */
.hero-scroll-arrow {
    position: absolute;
    bottom: 24px; left: 50%;
    transform: translateX(-50%);
    width: 44px; height: 44px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 1px solid rgba(255,255,255,.3);
    animation: bounce-down 2s ease-in-out infinite;
    z-index: 10;
}
:root[data-theme="dark"] .hero-scroll-arrow {
    background: rgba(45,50,80,.6);
    border-color: rgba(255,255,255,.1);
}
.hero-scroll-arrow:hover { transform: translateX(-50%) scale(1.1); }
@keyframes bounce-down {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ============= NEW BUTTONS ============= */
.btn-xl {
    padding: 1rem 2rem !important;
    font-size: 1rem;
    border-radius: 14px !important;
}
.btn-glow {
    box-shadow: 0 0 0 0 rgba(255,102,0,0.7);
    animation: glow-pulse 2.5s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 10px 30px -10px rgba(255,102,0,0.5); }
    50%      { box-shadow: 0 12px 50px -10px rgba(255,102,0,0.85), 0 0 0 6px rgba(255,102,0,0.12); }
}

.btn-glass {
    display: inline-flex;
    align-items: center; gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 12px;
    background: rgba(255,255,255,.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255,255,255,.5);
    color: var(--text-primary);
    font-weight: 600;
    box-shadow: 0 8px 25px -8px rgba(0,0,0,.15);
    transition: transform .2s ease, background .2s ease;
}
.btn-glass:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,.8);
    color: var(--color-accent);
}
:root[data-theme="dark"] .btn-glass {
    background: rgba(45,50,80,.5);
    border-color: rgba(255,255,255,.15);
    color: var(--text-primary);
}
:root[data-theme="dark"] .btn-glass:hover {
    background: rgba(66,71,105,.7);
    color: var(--color-accent);
}

/* ============= TRUST LOGOS ============= */
.trust-logo {
    display: inline-flex;
    align-items: center; gap: .5rem;
    font-weight: 600;
    font-size: .9rem;
    color: var(--text-primary);
    transition: color .2s ease;
}
.trust-logo:hover { color: var(--color-accent); }
.trust-logo i {
    font-size: 1.2rem;
    color: var(--color-accent);
}

/* ============= SECTION HEAD ============= */
.section-head .section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: .75rem;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============= CATEGORY CARD (yeni) ============= */
.category-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
}
.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -25px rgba(255,102,0,.45);
    border-color: var(--color-accent);
}
.category-card-cover {
    position: relative;
    height: 180px;
    overflow: hidden;
}
.category-card-cover img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.category-card:hover .category-card-cover img {
    transform: scale(1.1);
}
.category-card-cover-overlay {
    position: absolute; inset: 0;
    opacity: .55;
    transition: opacity .3s ease;
}
.category-card:hover .category-card-cover-overlay { opacity: .35; }
.category-card-icon {
    position: absolute;
    bottom: -24px; left: 24px;
    width: 56px !important; height: 56px !important;
    font-size: 1.4rem !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 25px -8px rgba(0,0,0,.4);
    border: 3px solid var(--bg-elevated);
}
.category-card-badge {
    position: absolute;
    top: 12px; right: 12px;
    padding: .25rem .6rem;
    background: rgba(0,0,0,.6);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.category-card .p-6 { padding-top: 2rem !important; }

/* ============= STEP CARD ============= */
.step-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    transition: transform .35s ease, box-shadow .35s ease;
}
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -20px rgba(96,76,195,.35);
}
.step-number {
    position: absolute;
    top: 12px; left: 12px;
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--gradient-accent);
    color: var(--text-inverse);
    display: grid; place-items: center;
    font-weight: 900;
    font-size: 1.2rem;
    z-index: 2;
    box-shadow: 0 8px 20px -5px rgba(255,102,0,.5);
}
.step-image { height: 160px; overflow: hidden; }
.step-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.step-card:hover .step-image img { transform: scale(1.05); }
.step-content { padding: 1.5rem; }
.step-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(255,102,0,.12);
    color: var(--color-accent);
    display: grid; place-items: center;
    font-size: 1.2rem;
    margin-bottom: .75rem;
}
.step-title { font-weight: 700; margin-bottom: .5rem; font-size: 1.15rem; }
.step-text { font-size: .9rem; opacity: .75; line-height: 1.5; }

/* ============= FEATURE MOSAIC ============= */
.features-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 0 20px 40px -15px rgba(255,102,0,.3);
}
.feature-card-large {
    grid-column: span 3;
    padding: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.feature-card-large .feature-card-image {
    overflow: hidden;
    min-height: 320px;
}
.feature-card-large .feature-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.feature-card-large:hover .feature-card-image img { transform: scale(1.05); }
.feature-card-large .feature-card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .features-mosaic { grid-template-columns: 1fr; }
    .feature-card-large { grid-template-columns: 1fr; }
    .feature-card-large .feature-card-image { min-height: 220px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .features-mosaic { grid-template-columns: repeat(2, 1fr); }
    .feature-card-large { grid-column: span 2; }
}

/* ============= TESTIMONIAL ============= */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (max-width: 768px) { .testimonial-grid { grid-template-columns: 1fr; } }
@media (min-width: 1024px) { .testimonial-grid { grid-template-columns: repeat(4, 1fr); } }

.testimonial-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px; right: 16px;
    font-size: 5rem;
    line-height: 1;
    font-family: Georgia, serif;
    color: var(--color-accent);
    opacity: .1;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(96,76,195,.3);
}
.testimonial-stars { color: var(--color-warning); margin-bottom: .75rem; font-size: .9rem; }
.testimonial-text {
    font-size: .95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-style: italic;
}
.testimonial-author {
    display: flex; align-items: center; gap: .75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}
.testimonial-author img {
    width: 44px; height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}

/* ============= STATS BANNER ============= */
.stats-banner {
    background: var(--gradient-accent);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.stats-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 40 40'%3E%3Cpath fill='%23fff' fill-opacity='0.1' d='M20 20c0-5.5-4.5-10-10-10S0 14.5 0 20s4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5 4.5-10 10-10v20c-5.5 0-10-4.5-10-10z'/%3E%3C/svg%3E");
    opacity: .25;
}
.stats-banner > * { position: relative; z-index: 1; }
.stats-banner-item {
    text-align: center;
    padding: 1rem;
}
.stats-banner-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    display: grid; place-items: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}
.stats-banner-num {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    color: #fff;
    margin-bottom: .35rem;
}
.stats-banner-num small { font-size: 1.5rem; opacity: .8; }
.stats-banner-label {
    font-size: .9rem;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ============= FAQ ============= */
.faq-list { display: flex; flex-direction: column; gap: .75rem; }
.faq-item {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:hover { border-color: var(--color-accent); }
.faq-item[open] {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px -15px rgba(255,102,0,.3);
}
.faq-question {
    list-style: none;
    cursor: pointer;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem;
    transition: color .2s ease;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--color-accent); }
.faq-icon {
    transition: transform .3s ease;
    color: var(--color-accent);
    font-size: .85rem;
    flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: .95rem;
}

/* ============= CTA CARD ============= */
.cta-section .cta-card {
    background: var(--gradient-accent);
    border-radius: 32px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    box-shadow: 0 40px 80px -25px rgba(255,102,0,.55);
    position: relative;
}
.cta-section .cta-card::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cpath fill='none' stroke='%23fff' stroke-opacity='0.1' stroke-width='1' d='M30 0 L60 30 L30 60 L0 30 Z'/%3E%3C/svg%3E");
    opacity: .4;
}
.cta-section .cta-image {
    overflow: hidden;
    position: relative;
}
.cta-section .cta-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 360px;
}
.cta-section .cta-image::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, var(--color-accent));
    opacity: .35;
}
.cta-section .cta-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .cta-section .cta-card { grid-template-columns: 1fr; }
    .cta-section .cta-image { min-height: 220px; }
    .cta-section .cta-image img { min-height: 220px; }
    .cta-section .cta-content { padding: 2rem; }
}

/* ============= BLOG CARD ============= */
.blog-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,.2);
}
.blog-card-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}
.blog-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.08); }
.blog-card-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--bg-elevated);
    color: var(--color-accent);
    padding: .35rem .75rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.blog-card-body { padding: 1.5rem; }

/* ============= BG DECOR ============= */
.bg-decor {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .15;
    z-index: 0;
    pointer-events: none;
}
.bg-decor-1 {
    width: 500px; height: 500px;
    top: 10%; right: -10%;
    background: var(--color-accent-2);
}

/* ============= UTILITY ============= */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =========================================================
   PREMIUM 2026 — yeniləmələr
   ========================================================= */

/* Premium kateqoriya card */
.cat-card-premium {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.cat-card-premium:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 40px 80px -25px rgba(255,102,0,.55);
    border-color: var(--color-accent);
}
.cat-card-premium .premium-cover { height: 200px; overflow: hidden; position: relative; }
.cat-card-premium .premium-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.cat-card-premium:hover .premium-cover img { transform: scale(1.12); }
.cat-card-premium .premium-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.85), transparent 60%); }
.cat-card-premium .premium-icon {
    position: absolute; top: 16px; left: 16px;
    width: 52px; height: 52px;
    border-radius: 16px;
    display: grid; place-items: center;
    background: rgba(255,255,255,.95);
    box-shadow: 0 12px 30px -8px rgba(0,0,0,.4);
    color: var(--color-accent); z-index: 2;
}
.cat-card-premium .premium-icon .material-symbols-rounded { font-size: 1.6rem; }
.cat-card-premium .premium-price-badge {
    position: absolute; top: 16px; right: 16px; z-index: 3;
    padding: .5rem .9rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1a1a1a; font-weight: 800; font-size: .9rem;
    border-radius: 12px;
    display: flex; align-items: center; gap: .35rem;
    box-shadow: 0 10px 25px -5px rgba(255,165,0,.55);
}
.cat-card-premium .premium-price-badge.free { background: linear-gradient(135deg, var(--color-success), #5cb025); color: #fff; }
.cat-card-premium .premium-name {
    position: absolute; bottom: 16px; left: 20px; right: 20px;
    color: #fff; font-weight: 800; font-size: 1.25rem;
    line-height: 1.2; z-index: 2;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.cat-card-premium .premium-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.cat-card-premium .premium-meta { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1rem; font-size: .8rem; }
.premium-meta-pill {
    display: inline-flex; align-items: center; gap: .35rem;
    padding: .35rem .75rem;
    background: rgba(255,102,0,.1);
    color: var(--color-accent);
    border-radius: 999px; font-weight: 600;
}
.premium-meta-pill.purple { background: rgba(96,76,195,.1); color: var(--color-accent-2); }
.premium-meta-pill.green  { background: rgba(143,209,79,.18); color: #5b9c1f; }
.premium-meta-pill .material-symbols-rounded { font-size: 1rem; }
.cat-card-premium .premium-desc { font-size: .92rem; color: var(--text-secondary); line-height: 1.55; margin-bottom: 1.25rem; flex: 1; }

/* Premium step */
.steps-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    counter-reset: step-counter;
}
.step-premium {
    position: relative;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    overflow: hidden;
}
.step-premium::before {
    counter-increment: step-counter;
    content: '0' counter(step-counter);
    position: absolute; top: -10px; right: -5px;
    font-size: 5.5rem; font-weight: 900; line-height: 1;
    color: rgba(255,102,0,.07); z-index: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.step-premium:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: 0 30px 60px -25px rgba(255,102,0,.4);
}
.step-premium-icon {
    position: relative; z-index: 1;
    width: 64px; height: 64px;
    border-radius: 18px;
    background: var(--gradient-accent);
    color: #fff;
    display: grid; place-items: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 12px 25px -8px rgba(255,102,0,.55);
}
.step-premium-icon .material-symbols-rounded { font-size: 2rem; }
.step-premium-title { position: relative; z-index: 1; font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; }
.step-premium-text  { position: relative; z-index: 1; font-size: .92rem; color: var(--text-secondary); line-height: 1.55; }

/* Premium feature card */
.feature-premium-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.feature-premium {
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    position: relative; overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.feature-premium::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 140px; height: 140px;
    background: radial-gradient(circle, rgba(255,102,0,.18), transparent 70%);
    border-radius: 50%;
    transform: translate(40%, -40%);
    transition: transform .5s ease;
}
.feature-premium:hover { transform: translateY(-6px); border-color: var(--color-accent); box-shadow: 0 25px 50px -20px rgba(255,102,0,.4); }
.feature-premium:hover::before { transform: translate(20%, -20%) scale(1.5); }
.feature-premium-icon {
    width: 56px; height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,102,0,.15), rgba(96,76,195,.15));
    color: var(--color-accent);
    display: grid; place-items: center;
    margin-bottom: 1.25rem;
    position: relative; z-index: 1;
}
.feature-premium-icon .material-symbols-rounded { font-size: 1.8rem; }
.feature-premium-title { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; position: relative; z-index: 1; }
.feature-premium-text  { font-size: .92rem; color: var(--text-secondary); line-height: 1.55; position: relative; z-index: 1; }

/* Testimonial slider */
.testi-slider { position: relative; overflow: hidden; padding: 1rem 0; }
.testi-track  { display: flex; gap: 1.5rem; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.testi-slide  { flex: 0 0 100%; max-width: 100%; }
@media (min-width: 768px)  { .testi-slide { flex: 0 0 calc((100% - 1.5rem) / 2); max-width: calc((100% - 1.5rem) / 2); } }
@media (min-width: 1024px) { .testi-slide { flex: 0 0 calc((100% - 3rem) / 3); max-width: calc((100% - 3rem) / 3); } }
.testi-card {
    height: 100%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2rem;
    position: relative; overflow: hidden;
}
.testi-card::before {
    content: '"';
    position: absolute; top: 8px; right: 16px;
    font-size: 6rem; line-height: 1;
    font-family: Georgia, serif;
    color: var(--color-accent); opacity: .12;
}
.testi-stars { color: var(--color-warning); margin-bottom: 1rem; }
.testi-text  { font-size: 1rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: .75rem; padding-top: 1rem; border-top: 1px solid var(--border-color); }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--color-accent); }
.testi-controls { display: flex; justify-content: center; align-items: center; gap: .5rem; margin-top: 1.5rem; }
.testi-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--bg-elevated); border: 1px solid var(--border-color);
    color: var(--text-primary);
    display: grid; place-items: center; cursor: pointer;
    transition: background .2s ease, transform .2s ease, color .2s ease;
}
.testi-btn:hover { background: var(--color-accent); color: #fff; transform: scale(1.1); }
.testi-dots { display: flex; gap: .5rem; margin: 0 1rem; }
.testi-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--border-color); cursor: pointer; transition: all .2s ease; }
.testi-dot.active { background: var(--color-accent); transform: scale(1.3); }

/* Forex/Quiz 2-sütunlu */
.quiz-layout { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .quiz-layout { grid-template-columns: 1fr 320px; } }
.quiz-circles {
    display: grid; gap: .5rem;
    grid-template-columns: repeat(5, 1fr);
}
.quiz-circle {
    width: 100%; aspect-ratio: 1;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid var(--border-color);
    display: grid; place-items: center;
    font-weight: 700; font-size: .9rem;
    cursor: pointer;
    transition: all .25s ease;
    color: var(--text-primary);
}
.quiz-circle:hover { border-color: var(--color-accent); transform: scale(1.05); }
.quiz-circle.answered { background: var(--color-accent-2); color: #fff; border-color: var(--color-accent-2); }
.quiz-circle.current  { background: var(--color-accent); color: #fff; border-color: var(--color-accent); transform: scale(1.1); box-shadow: 0 8px 20px -5px rgba(255,102,0,.55); }

.quiz-side-panel {
    position: sticky; top: 90px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    height: fit-content;
}
