/* =============================================
   HACKER CAN — Ana Stil Dosyası
   Renk Paleti: Logo'dan türetilmiştir
   ============================================= */

:root {
    --gold:        #F5B800;
    --gold-dark:   #D49A00;
    --gold-light:  #FFF0A0;
    --brown:       #4A2C0A;
    --brown-mid:   #7B4F1C;
    --red:         #D32F2F;
    --red-dark:    #B71C1C;
    --green:       #3D8B37;
    --green-dark:  #2E6B29;
    --bg-light:    #FFFBF0;
    --bg-cream:    #FFF5D6;
    --text-dark:   #2C1A0E;
    --text-mid:    #5C3A1E;
    --text-light:  #8B6040;
    --white:       #FFFFFF;
    --shadow:      0 4px 24px rgba(74, 44, 10, 0.12);
    --shadow-lg:   0 8px 40px rgba(74, 44, 10, 0.18);
    --radius:      12px;
    --radius-lg:   20px;
    --transition:  0.25s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-dark);
    background: var(--bg-light);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Container ---- */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    border: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--brown);
}
.btn-primary:hover { background: linear-gradient(135deg, #FFD740, var(--gold)); }

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-secondary:hover { background: var(--white); color: var(--brown); }

.btn-red {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
}

.btn-green {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
}

/* ---- Section Helpers ---- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-cream); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    color: var(--brown);
    margin-bottom: 14px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 620px;
    margin: 0 auto;
}

.tag {
    display: inline-block;
    background: var(--gold-light);
    color: var(--brown);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--brown);
    box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.logo-link { flex-shrink: 0; }
.logo { height: 48px; width: auto; }

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav ul a {
    color: rgba(255,255,255,0.85);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}
.main-nav ul a:hover,
.main-nav ul a.active {
    color: var(--gold);
    background: rgba(245, 184, 0, 0.12);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-cta { padding: 10px 22px; font-size: 0.9rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HOME — HERO
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 50%, #2C6A28 100%);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23F5B800' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-content { max-width: 540px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 184, 0, 0.2);
    border: 1px solid rgba(245, 184, 0, 0.4);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--gold); }

.hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-code-box {
    background: #1A0E05;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 2px solid rgba(245, 184, 0, 0.3);
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
}

.hero-code-box .code-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(245, 184, 0, 0.2);
}
.hero-code-box .code-header span {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
}

.code-line { display: flex; margin-bottom: 6px; }
.code-num { color: rgba(255,255,255,0.25); width: 24px; flex-shrink: 0; user-select: none; }
.kw  { color: #FF7043; }
.fn  { color: #66BB6A; }
.str { color: #FFF176; }
.num { color: var(--gold); }
.cmt { color: rgba(255,255,255,0.35); font-style: italic; }
.indent { padding-left: 24px; }
.code-text { color: rgba(255,255,255,0.88); }

/* ============================================
   METRİKLER
   ============================================ */
.metrics {
    background: linear-gradient(135deg, var(--red-dark), var(--red));
    color: var(--white);
    padding: 60px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.metric-item { padding: 16px; }

.metric-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-weight: 600;
}

/* ============================================
   ÖZELLİKLER KARTI
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.icon-gold  { background: var(--gold-light); }
.icon-red   { background: #FFEBEE; }
.icon-green { background: #E8F5E9; }
.icon-brown { background: #FBE9D0; }

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 10px;
}
.feature-card p { color: var(--text-mid); font-size: 0.95rem; }

/* ============================================
   NASIL ÇALIŞIR
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--green));
}

.step-item { text-align: center; position: relative; }

.step-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--brown);
    font-size: 1.6rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 16px rgba(245, 184, 0, 0.4);
    position: relative;
    z-index: 1;
}

.step-item h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 8px;
}
.step-item p { font-size: 0.9rem; color: var(--text-mid); }

/* ============================================
   CTA BANDI
   ============================================ */
.cta-band {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 900;
    margin-bottom: 14px;
}
.cta-band p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.cta-band .btn-primary { font-size: 1.1rem; padding: 16px 40px; }

/* ============================================
   İÇ SAYFA — HERO (küçük)
   ============================================ */
.page-hero {
    background: linear-gradient(135deg, var(--brown), var(--brown-mid));
    color: var(--white);
    padding: 64px 0;
    text-align: center;
}
.page-hero .tag { background: rgba(245,184,0,0.2); color: var(--gold); }
.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 14px;
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   NEDİR SAYFASI
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: var(--brown);
    margin-bottom: 16px;
}
.about-text p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.75; }

.meb-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold-light);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 14px 20px;
    margin-top: 24px;
}
.meb-badge .badge-icon { font-size: 2rem; }
.meb-badge p { font-size: 0.9rem; font-weight: 700; color: var(--brown); margin: 0; }
.meb-badge span { font-weight: 400; font-size: 0.82rem; }

.about-visual {
    background: linear-gradient(145deg, var(--bg-cream), var(--gold-light));
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}
.about-visual p { font-size: 1.5rem; font-weight: 900; color: var(--brown); line-height: 1.4; }
.about-visual span { color: var(--red); }

/* ============================================
   ÖZELLİKLER SAYFASI
   ============================================ */
.features-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-detail-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 24px;
}
.feature-detail-card .fd-icon {
    font-size: 2.4rem;
    flex-shrink: 0;
}
.feature-detail-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 10px;
}
.feature-detail-card p { color: var(--text-mid); font-size: 0.95rem; }

.neden-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}
.neden-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--bg-cream);
    border-radius: var(--radius);
    padding: 16px;
}
.neden-item .ni-icon { font-size: 1.4rem; flex-shrink: 0; }
.neden-item p { font-size: 0.92rem; color: var(--text-mid); font-weight: 600; }

/* ============================================
   HEDEF KİTLE SAYFASI
   ============================================ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.audience-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}
.audience-card:hover { transform: translateY(-4px); }

.audience-card-header {
    padding: 32px 28px 24px;
    text-align: center;
    color: var(--white);
}
.audience-card-header.gold-bg  { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); color: var(--brown); }
.audience-card-header.red-bg   { background: linear-gradient(135deg, var(--red-dark), var(--red)); }
.audience-card-header.green-bg { background: linear-gradient(135deg, var(--green-dark), var(--green)); }

.audience-card-header .age {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 6px;
}
.audience-card-header h3 { font-size: 1.1rem; font-weight: 800; }

.audience-card-body { padding: 24px 28px; }
.audience-card-body p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 16px; }
.audience-card-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-mid);
    margin-bottom: 8px;
}
.audience-card-body ul li::before {
    content: '✓';
    color: var(--green);
    font-weight: 900;
    flex-shrink: 0;
}

/* ============================================
   EĞİTMENLER SAYFASI
   ============================================ */
.teacher-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.teacher-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    border-bottom: 4px solid var(--green);
}
.teacher-card .tc-icon { font-size: 2.5rem; margin-bottom: 16px; }
.teacher-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--brown); margin-bottom: 10px; }
.teacher-card p { font-size: 0.92rem; color: var(--text-mid); }

/* ============================================
   İLETİŞİM SAYFASI
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--brown);
    margin-bottom: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-item .ci-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.contact-item h4 { font-weight: 800; color: var(--brown); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 0.95rem; color: var(--text-mid); }
.contact-item a:hover { color: var(--red); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form h3 { font-size: 1.4rem; font-weight: 900; color: var(--brown); margin-bottom: 24px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.9rem; color: var(--brown); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E8D5C0;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: border-color var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }

/* ============================================
   404 SAYFASI
   ============================================ */
.not-found {
    text-align: center;
    padding: 120px 24px;
}
.not-found .nf-num {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.not-found h2 { font-size: 1.8rem; font-weight: 800; color: var(--brown); margin-bottom: 14px; }
.not-found p { color: var(--text-mid); margin-bottom: 32px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--brown);
    color: rgba(255,255,255,0.85);
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-logo { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.65; color: rgba(255,255,255,0.7); max-width: 260px; }

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--brown); }

.footer-links h4 {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.footer-links ul li a:hover { color: var(--gold); }

.footer-contact h4 {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; line-height: 1.5; }
.footer-contact a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid::before { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .audience-grid { grid-template-columns: 1fr 1fr; }
    .teacher-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }

    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero { padding: 70px 0 60px; }

    .about-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .features-grid,
    .features-detail-grid,
    .neden-list,
    .audience-grid,
    .teacher-features { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--brown);
        padding: 20px 24px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav.open { display: flex; }
    .main-nav ul { flex-direction: column; width: 100%; }
    .main-nav ul a { display: block; padding: 12px 0; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
    .nav-cta { margin-top: 16px; align-self: flex-start; }

    .nav-toggle { display: flex; }
    .site-header { position: relative; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAKETler SAYFASI
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    position: relative;
    border-top: 4px solid var(--gold);
    transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.color-gold  { border-top-color: var(--gold); }
.pricing-card.color-red   { border-top-color: var(--red); }
.pricing-card.color-green { border-top-color: var(--green); }

.pricing-featured {
    border: 2px solid var(--red);
    border-top: 4px solid var(--red);
    transform: translateY(-8px);
}
.pricing-featured:hover { transform: translateY(-12px); }

.pricing-enterprise {
    border-top-color: var(--brown);
    background: linear-gradient(145deg, var(--bg-cream), var(--white));
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.pricing-header { text-align: center; margin-bottom: 24px; }

.pricing-subtitle {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 6px;
}
.pricing-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--brown);
    margin-bottom: 12px;
}
.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 6px;
}
.price-amount {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--brown);
    line-height: 1;
}
.price-currency { font-size: 1.1rem; font-weight: 700; color: var(--text-mid); }
.price-period   { font-size: 0.85rem; color: var(--text-light); }

.pricing-unit {
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 600;
}

.pricing-features {
    margin: 0 0 28px;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-mid);
    margin-bottom: 10px;
    line-height: 1.45;
}
.pricing-features li::before {
    content: '✓';
    color: var(--green);
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-btn {
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--brown);
    padding: 13px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(245,184,0,0.4); }
.pricing-card.color-red .pricing-btn { background: linear-gradient(135deg, var(--red), var(--red-dark)); color: var(--white); }
.pricing-card.color-green .pricing-btn { background: linear-gradient(135deg, var(--green), var(--green-dark)); color: var(--white); }
.btn-enterprise { background: linear-gradient(135deg, var(--brown-mid), var(--brown)); color: var(--white) !important; }

.pricing-note {
    text-align: center;
    margin-top: 36px;
    padding: 16px 24px;
    background: var(--bg-cream);
    border-radius: var(--radius);
    font-size: 0.92rem;
    color: var(--text-mid);
}
.pricing-note a { color: var(--red); font-weight: 700; }

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}
.faq-item h4 { font-size: 1rem; font-weight: 800; color: var(--brown); margin-bottom: 10px; }
.faq-item p  { font-size: 0.92rem; color: var(--text-mid); line-height: 1.65; }

@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } .pricing-featured { transform: none; } }
@media (max-width: 600px)  { .pricing-grid { grid-template-columns: 1fr; } .faq-grid { grid-template-columns: 1fr; } }

/* ============================================
   CHECKOUT — ORTAK
   ============================================ */
.page-hero-sm { padding: 40px 0; }
.page-hero-sm h1 { font-size: clamp(1.4rem, 3vw, 2rem); }

.stepper-wrap {
    background: var(--white);
    border-bottom: 1px solid #E8D5C0;
    padding: 18px 0;
}
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #E0D0C0;
    color: var(--text-light);
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.step span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
}
.step-active .step-circle { background: var(--gold); color: var(--brown); }
.step-active span { color: var(--brown); }
.step-done .step-circle { background: var(--green); color: var(--white); }
.step-done span { color: var(--green); }
.step-success .step-circle { background: var(--green); color: var(--white); }
.step-error .step-circle { background: var(--red); color: var(--white); }

.step-line {
    flex: 1;
    max-width: 80px;
    min-width: 24px;
    height: 2px;
    background: #E0D0C0;
    margin: 0 4px;
    margin-bottom: 22px;
}
.step-line-done { background: var(--green); }

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.checkout-main {}

.billing-type-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 28px;
}
.billing-tab {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border: 2px solid #E0D0C0;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-mid);
    transition: border-color var(--transition), background var(--transition);
}
.billing-tab input[type="radio"] { display: none; }
.billing-tab:hover { border-color: var(--gold); }
.billing-tab.active { border-color: var(--gold); background: var(--gold-light); color: var(--brown); }
.tab-icon { font-size: 1.2rem; }

.billing-section {
    background: var(--white);
    border: 1px solid #E8D5C0;
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
}

.section-sub-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #F0E0D0;
}

.form-row { margin-bottom: 0; }
.form-row.two-col   { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }

.billing-section .form-group { margin-bottom: 16px; }
.billing-section .form-group:last-child { margin-bottom: 0; }
.billing-section .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 6px;
}
.billing-section .form-group input,
.billing-section .form-group textarea,
.billing-section .form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #DDD0C0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-light);
    outline: none;
    transition: border-color var(--transition);
}
.billing-section .form-group input:focus,
.billing-section .form-group textarea:focus { border-color: var(--gold); }
.billing-section .form-group textarea { resize: vertical; }

.btn-back {
    color: var(--text-mid);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color var(--transition);
}
.btn-back:hover { color: var(--brown); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }

.form-error-box {
    background: #FFEBEE;
    border: 1px solid #FFCDD2;
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.92rem;
    color: var(--red-dark);
}
.form-error-box ul { margin: 8px 0 0 16px; }
.form-error-box ul li { list-style: disc; margin-bottom: 4px; }

/* Sipariş özeti (aside) */
.checkout-aside { position: sticky; top: 90px; }

.order-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}
.order-summary h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F0E0D0;
}

.order-pkg {
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 16px;
    background: var(--gold-light);
    border-left: 4px solid var(--gold);
}
.order-pkg.color-red   { background: #FFEBEE; border-left-color: var(--red); }
.order-pkg.color-green { background: #E8F5E9; border-left-color: var(--green); }

.order-pkg-name { font-weight: 900; color: var(--brown); font-size: 1rem; }
.order-pkg-sub  { font-size: 0.82rem; color: var(--text-mid); margin-top: 2px; }

.order-features { margin: 0 0 18px; }
.order-features li {
    font-size: 0.82rem;
    color: var(--text-mid);
    padding: 4px 0;
    border-bottom: 1px solid #F5EDE0;
    display: flex;
    gap: 6px;
}
.order-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.order-totals { margin-bottom: 16px; }
.order-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-mid);
    padding: 6px 0;
    border-bottom: 1px solid #F5EDE0;
}
.order-line.order-total {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--brown);
    border-bottom: none;
    padding-top: 10px;
}

.order-security {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
}

.billing-info-preview {
    background: var(--bg-cream);
    border-radius: var(--radius);
    padding: 12px 14px;
    margin-bottom: 16px;
}
.bip-label { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-light); margin-bottom: 6px; }
.billing-info-preview p { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 2px; }

/* ÖDEME — Kart önizleme */
.card-preview-wrap { perspective: 1000px; margin-bottom: 28px; }

.card-preview {
    width: 100%;
    max-width: 380px;
    height: 210px;
    background: linear-gradient(135deg, var(--brown) 0%, #7B4F1C 50%, #2C6A28 100%);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 12px 32px rgba(74,44,10,0.35);
    position: relative;
    overflow: hidden;
}
.card-preview::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(245,184,0,0.12);
}

.card-chip {
    width: 42px; height: 32px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chip-inner {
    width: 28px; height: 20px;
    border: 1.5px solid rgba(74,44,10,0.4);
    border-radius: 3px;
}

.card-number-display {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 3px;
    text-align: center;
}

.card-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; }
.card-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.card-holder-display { font-size: 0.85rem; color: var(--white); font-weight: 700; letter-spacing: 1px; }
.card-expiry-display { font-size: 0.9rem; color: var(--white); font-weight: 700; }
.card-logo { font-size: 1.1rem; font-weight: 900; color: var(--gold); letter-spacing: -1px; }

.card-input-wrap { position: relative; }
.card-input-wrap input { padding-right: 80px; }
.card-icon {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    font-size: 0.82rem;
    color: var(--text-light);
    font-weight: 700;
    pointer-events: none;
}

.cvv-hint { cursor: help; font-size: 0.9rem; }

.payment-terms {
    margin-top: 8px;
}
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-mid);
    cursor: pointer;
}
.checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--green); }
.checkbox-label a { color: var(--red); font-weight: 700; }

.payment-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 20px;
}
.payment-badges span {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 700;
}

/* SONUÇ sayfaları */
.result-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    box-shadow: var(--shadow-lg);
}

.result-icon { font-size: 4rem; margin-bottom: 16px; line-height: 1; }

.result-card h1 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 900; margin-bottom: 12px; }
.result-card > p { color: var(--text-mid); margin-bottom: 28px; font-size: 1rem; }

.result-success h1 { color: var(--green); }
.result-error h1 { color: var(--red); }

.result-order-box {
    background: var(--gold-light);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 16px 24px;
    display: inline-block;
    margin-bottom: 24px;
}
.rob-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); margin-bottom: 4px; }
.rob-value { font-size: 1.4rem; font-weight: 900; color: var(--brown); letter-spacing: 2px; }

.result-summary {
    background: var(--bg-cream);
    border-radius: var(--radius);
    padding: 16px 20px;
    margin-bottom: 24px;
    text-align: left;
}
.rs-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid #E8D5C0;
    gap: 12px;
}
.rs-item:last-child { border-bottom: none; }
.rs-item span { color: var(--text-mid); flex-shrink: 0; }
.rs-item strong { color: var(--brown); text-align: right; }

.result-steps {
    background: var(--bg-cream);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 28px;
    text-align: left;
}
.result-steps h3 { font-size: 0.95rem; font-weight: 800; color: var(--brown); margin-bottom: 12px; }
.result-steps ol { margin-left: 20px; }
.result-steps ol li { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 8px; line-height: 1.55; }

.error-reasons {
    background: #FFEBEE;
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 28px;
    text-align: left;
}
.error-reasons h3 { font-size: 0.95rem; font-weight: 800; color: var(--red-dark); margin-bottom: 12px; }
.error-reasons ul { margin-left: 20px; }
.error-reasons ul li { font-size: 0.9rem; color: var(--red-dark); margin-bottom: 6px; list-style: disc; }

.result-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.result-support {
    font-size: 0.85rem;
    color: var(--text-light);
}
.result-support a { color: var(--brown); font-weight: 700; }

@media (max-width: 768px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-aside { position: static; }
    .form-row.two-col, .form-row.three-col { grid-template-columns: 1fr; }
    .stepper { gap: 4px; }
    .step-line { max-width: 24px; min-width: 12px; }
    .step span { font-size: 0.65rem; }
    .result-card { padding: 36px 24px; }
    .billing-type-tabs { flex-direction: column; }
}

/* ============================================
   DİL SEÇİCİ
   ============================================ */
.lang-switcher {
    position: relative;
}

.lang-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.lang-btn:hover { background: rgba(245,184,0,0.18); border-color: var(--gold); }

.lang-caret { font-size: 0.7rem; opacity: 0.7; }

.lang-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    min-width: 120px;
    z-index: 200;
}
.lang-menu.open { display: block; }

.lang-option {
    display: block;
    padding: 10px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--brown);
    transition: background var(--transition);
}
.lang-option:hover { background: var(--gold-light); }

/* Mobilde dil seçici */
@media (max-width: 768px) {
    .lang-switcher { margin-top: 16px; }
    .lang-menu { right: auto; left: 0; }
}

/* ============================================
   YASAL SAYFALAR
   ============================================ */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--brown);
    margin: 40px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold-light);
}
.legal-content h2:first-of-type { margin-top: 0; }

.legal-content p { color: var(--text-mid); margin-bottom: 14px; line-height: 1.75; }

.legal-content ul {
    margin: 0 0 16px 20px;
}
.legal-content ul li {
    list-style: disc;
    color: var(--text-mid);
    margin-bottom: 8px;
    line-height: 1.65;
}

.legal-content a { color: var(--red); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }

.legal-notice {
    background: var(--gold-light);
    border-left: 4px solid var(--gold-dark);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 18px 22px;
    margin-bottom: 36px;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-box {
    background: var(--bg-cream);
    border: 1px solid #E8D5C0;
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 12px 0 24px;
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* Çerez tablosu */
.cookie-table {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #E8D5C0;
    margin: 16px 0 28px;
}
.cookie-row {
    display: grid;
    grid-template-columns: 1.4fr 3fr 1fr;
    gap: 0;
}
.cookie-header {
    background: var(--brown);
    color: var(--gold);
    font-weight: 800;
    font-size: 0.85rem;
}
.cookie-row > div {
    padding: 12px 16px;
    border-right: 1px solid #E8D5C0;
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}
.cookie-header > div { color: var(--gold); border-right-color: rgba(255,255,255,0.15); }
.cookie-row > div:last-child { border-right: none; }
.cookie-row:not(.cookie-header) { border-top: 1px solid #E8D5C0; }
.cookie-row:not(.cookie-header):nth-child(even) { background: var(--bg-cream); }

@media (max-width: 600px) {
    .cookie-row { grid-template-columns: 1fr; }
    .cookie-header > div:not(:first-child),
    .cookie-row > div { border-right: none; border-top: 1px solid #E8D5C0; }
}
