/* ---------- 7. Hero ---------- */
.hero {
    position: relative;
    padding: 96px 0 64px;
    background:
        radial-gradient(1100px 500px at 100% -10%, rgba(238, 177, 65, .14), transparent 60%),
        radial-gradient(900px 500px at -10% 30%, rgba(27, 58, 107, .08), transparent 60%),
        linear-gradient(180deg, #fff 0%, #F8F9FC 100%);
    overflow: hidden;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    background: linear-gradient(180deg, #fff 0%, #FBFCFE 100%);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-pill);
    font-size: 13px;
    color: var(--c-text-2);
    box-shadow: 0 1px 2px rgba(10, 22, 40, 0.04), 0 8px 24px rgba(10, 22, 40, 0.05);
    margin-bottom: 24px;
    position: relative;
}
.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10B981;
    margin-left: 4px;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
    animation: heroDot 1.8s ease-out infinite;
}
@keyframes heroDot {
    0%   { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
    70%  { box-shadow: 0 0 0 8px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}
.hero__badge-sep {
    width: 1px;
    height: 14px;
    background: var(--c-line);
}

.hero__badge b {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--c-gold-soft), rgba(238, 177, 65, 0.18));
    color: var(--c-gold-2);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 22px;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: normal;
    color: var(--c-gold-2);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #EEB141 0%, #D89A2A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 10px;
    background: linear-gradient(90deg, rgba(238, 177, 65, .25), rgba(238, 177, 65, .08));
    z-index: -1;
    border-radius: 4px;
    transform: skewX(-8deg);
}

.hero__lead {
    font-size: 18px;
    line-height: 1.65;
    color: var(--c-text-2);
    margin-bottom: 32px;
    max-width: 560px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}
.hero__cta-main {
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.18), 0 2px 4px rgba(10, 22, 40, 0.08);
    position: relative;
    overflow: hidden;
}
.hero__cta-main::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%; height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: left .8s ease;
}
.hero__cta-main:hover::before { left: 125%; }
.hero__cta-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(10, 22, 40, 0.22), 0 4px 8px rgba(10, 22, 40, 0.1);
}

/* Sosyal kanıt / trust — kompakt pill */
.hero__trust {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    padding: 6px 14px 6px 10px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(10,22,40,0.04);
    margin-bottom: 22px;
    max-width: 100%;
}
.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}
.hero__stars {
    display: inline-flex;
    gap: 0;
    color: #F59E0B;
    font-size: 13px;
    line-height: 1;
}
.hero__rating > strong {
    font-size: 13px;
    font-weight: 800;
    color: var(--c-text);
    letter-spacing: -0.01em;
}
.hero__rating-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--c-line);
}
.hero__rating-text {
    font-size: 12.5px;
    color: var(--c-text-soft);
    white-space: nowrap;
}
.hero__avatars {
    display: inline-flex;
    align-items: center;
    padding-left: 6px;
    margin-left: 2px;
    border-left: 1px solid var(--c-line);
}
.hero__avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--c, var(--c-gold));
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 1px 2px rgba(10,22,40,0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 700;
    margin-left: -8px;
    line-height: 1;
}
.hero__avatar:first-child { margin-left: 0; }
.hero__avatar--more {
    background: var(--c-text);
    font-size: 9px;
    letter-spacing: 0.02em;
    padding: 0 2px;
    min-width: 24px;
    width: auto;
}

.hero__meta {
    list-style: none;
    margin: 0;
    padding: 22px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    border-top: 1px solid var(--c-line);
}

.hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-2);
    transition: all .18s var(--ease);
}
.hero__meta-item:hover {
    border-color: rgba(238, 177, 65, 0.5);
    color: var(--c-text);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 22, 40, 0.06);
}

.hero__meta-item .ti {
    color: var(--c-gold);
    font-size: 16px;
}

/* Hero card — Sorgu kutusu */
.hero-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(238, 177, 65, .45), rgba(27, 58, 107, .15) 40%, transparent 70%);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hero-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: var(--c-ink);
    color: var(--c-gold);
    display: grid;
    place-items: center;
    font-size: 22px;
}

.hero-card__head h3 {
    font-size: 18px;
    margin: 0;
}

.hero-card__head p {
    font-size: 13px;
    margin: 0;
    color: var(--c-text-3);
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text);
}

.input,
.select,
.textarea {
    height: 50px;
    padding: 0 16px;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--c-text);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    width: 100%;
}

.textarea {
    height: auto;
    min-height: 120px;
    padding: 14px 16px;
    resize: vertical;
}

.input:focus,
.select:focus,
.textarea:focus {
    outline: none;
    border-color: var(--c-ink);
    box-shadow: 0 0 0 4px rgba(10, 22, 40, .07);
}

.input-with-icon {
    position: relative;
}

.input-with-icon .ti {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--c-text-3);
    font-size: 18px;
}

.input-with-icon .input {
    padding-left: 42px;
}

.hero-card__note {
    margin-top: 14px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 12.5px;
    color: var(--c-text-3);
    line-height: 1.5;
}

.hero-card__note .ti {
    color: var(--c-gold-2);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

@media (max-width: 960px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero {
        padding-top: 60px;
    }
}

/* ---------- 8. Logo Strip (Dark) ---------- */
.strip {
    position: relative;
    padding: 56px 0;
    background:
        radial-gradient(900px 320px at 50% -20%, rgba(238, 177, 65, .10), transparent 60%),
        linear-gradient(180deg, #0A1628 0%, #06101F 100%);
    color: #A6B2C7;
    overflow: hidden;
}

.strip::before,
.strip::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(238, 177, 65, .35), transparent);
    pointer-events: none;
}

.strip::before {
    top: 0;
}

.strip::after {
    bottom: 0;
}

.strip__label {
    text-align: center;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: #98A4BB;
    margin-bottom: 32px;
    font-weight: 600;
}

.strip__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    align-items: center;
}

.strip__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #C9D2E3;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.01em;
    padding: 14px 16px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(255, 255, 255, .06);
    transition: all .25s var(--ease);
}

.strip__item:hover {
    color: #fff;
    background: rgba(238, 177, 65, .06);
    border-color: rgba(238, 177, 65, .25);
    transform: translateY(-2px);
}

.strip__item .ti {
    font-size: 22px;
    color: var(--c-gold);
}

@media (max-width: 900px) {
    .strip__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .strip__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- 9. Feature Grid ---------- */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.feature:hover {
    border-color: transparent;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    background: var(--c-bg-2);
    color: var(--c-ink);
    font-size: 26px;
    margin-bottom: 22px;
    transition: all .3s var(--ease);
}

.feature:hover .feature__icon {
    background: var(--c-ink);
    color: var(--c-gold);
}

.feature h3 {
    font-size: 19px;
    margin-bottom: 10px;
}

.feature p {
    font-size: 14.5px;
    color: var(--c-text-2);
}

.feature__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-ink);
}

.feature__link:hover {
    color: var(--c-gold-2);
}

.feature__link .ti {
    transition: transform .2s var(--ease);
}

.feature__link:hover .ti {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .features {
        grid-template-columns: 1fr;
    }
}

/* ---------- 10. Process / Steps ---------- */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.step {
    padding: 28px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-right: 0;
    position: relative;
}

.step:first-child {
    border-top-left-radius: var(--radius-lg);
    border-bottom-left-radius: var(--radius-lg);
}

.step:last-child {
    border-right: 1px solid var(--c-line);
    border-top-right-radius: var(--radius-lg);
    border-bottom-right-radius: var(--radius-lg);
}

.step__num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--c-ink);
    color: var(--c-gold);
    display: grid;
    place-items: center;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.step h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
}

.step::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    border-top: 1px solid var(--c-line);
    border-right: 1px solid var(--c-line);
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
}

.step:last-child::after {
    display: none;
}

@media (max-width: 900px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .step {
        border: 1px solid var(--c-line);
        border-radius: var(--radius);
        margin-bottom: 12px;
    }

    .step::after {
        display: none;
    }
}

/* ---------- 11. Pricing ---------- */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
    padding-top: 16px;
}

.plan {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all .3s var(--ease);
}

.plan:hover {
    border-color: var(--c-ink);
    box-shadow: var(--shadow-md);
}

.plan--featured {
    background: var(--c-ink);
    color: #D9E0EC;
    border-color: var(--c-ink);
    transform: scale(1.02);
}

.plan--featured h3,
.plan--featured .plan__price {
    color: #fff;
}

.plan--featured .plan__feature {
    color: #C7D0DF;
}

.plan__tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-gold);
    color: var(--c-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
}

.plan h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.plan__desc {
    font-size: 13.5px;
    margin-bottom: 22px;
}

.plan--featured .plan__desc {
    color: #A6B2C7;
}

.plan__price {
    font-size: 40px;
    font-weight: 700;
    color: var(--c-ink);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}

.plan__price small {
    font-size: 14px;
    font-weight: 500;
    color: var(--c-text-3);
}

.plan--featured .plan__price small {
    color: #A6B2C7;
}

.plan__unit {
    font-size: 13px;
    color: var(--c-text-3);
    margin-bottom: 24px;
}

.plan ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex: 1;
}

.plan__feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--c-text-2);
}

.plan__feature .ti {
    color: var(--c-success);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 1px;
}

.plan--featured .plan__feature .ti {
    color: var(--c-gold);
}

/* --- Plan: "Teklif Al" quote box (replaces price area) --- */
.plan__quote {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    margin-bottom: 24px;
    background: #F7F5EE;
    border: 1px dashed var(--c-gold);
    border-radius: var(--radius-md, 12px);
    text-align: left;
}

.plan--featured .plan__quote {
    background: rgba(212, 175, 55, .10);
    border-color: rgba(212, 175, 55, .55);
}

.plan__quote-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--c-gold);
}

.plan__quote-eyebrow .ti {
    font-size: 16px;
}

.plan__quote-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--c-ink);
    line-height: 1.4;
}

.plan--featured .plan__quote-text {
    color: #fff;
}

/* --- Plan: action buttons stack --- */
.plan__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* --- WhatsApp outline button variant (modern, navy) --- */
.btn-wa-outline {
    background: #ffffff;
    color: #0A1628;
    border: 1.5px solid #0A1628;
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: background .22s var(--ease), color .22s var(--ease),
                border-color .22s var(--ease), box-shadow .22s var(--ease),
                transform .22s var(--ease);
}
.btn-wa-outline i {
    color: #25D366;
    transition: color .22s var(--ease);
}

.btn-wa-outline:hover,
.btn-wa-outline:focus {
    background: #0A1628;
    color: #ffffff;
    border-color: #0A1628;
    box-shadow: 0 10px 24px -12px rgba(10, 22, 40, 0.55);
    transform: translateY(-1px);
}
.btn-wa-outline:hover i,
.btn-wa-outline:focus i {
    color: #25D366;
}

/* Featured (koyu) plan içinde — şeffaf zemin, açık çerçeve */
.plan--featured .btn-wa-outline {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255,255,255,0.35);
}
.plan--featured .btn-wa-outline i { color: #4ade80; }

.plan--featured .btn-wa-outline:hover,
.plan--featured .btn-wa-outline:focus {
    background: #ffffff;
    color: #0A1628;
    border-color: #ffffff;
    box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.45);
}
.plan--featured .btn-wa-outline:hover i,
.plan--featured .btn-wa-outline:focus i { color: #25D366; }

@media (max-width: 900px) {
    .pricing {
        grid-template-columns: 1fr;
    }

    .plan--featured {
        transform: none;
    }
}

/* ---------- 12. Stats ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
}

.stat {
    padding: 36px 28px;
    border-right: 1px solid rgba(255, 255, 255, .08);
    text-align: left;
}

.stat:last-child {
    border-right: 0;
}

.stat__num {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 8px;
}

.stat__num span {
    color: var(--c-gold);
}

.stat__label {
    font-size: 14px;
    color: #A6B2C7;
}

@media (max-width: 800px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .stat:nth-child(2) {
        border-right: 0;
    }
}

/* ---------- 13. Sectors ---------- */
.sectors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.sector {
    padding: 22px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: all .25s var(--ease);
}

.sector:hover {
    border-color: var(--c-ink);
    background: var(--c-ink);
    color: #fff;
    transform: translateY(-3px);
}

.sector:hover h4,
.sector:hover .ti {
    color: var(--c-gold);
}

.sector .ti {
    font-size: 26px;
    color: var(--c-ink);
}

.sector h4 {
    font-size: 15px;
    color: var(--c-ink);
    margin: 0;
}

.sector p {
    font-size: 12.5px;
    color: var(--c-text-3);
    margin: 0;
}

.sector:hover p {
    color: #A6B2C7;
}

@media (max-width: 900px) {
    .sectors {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- 14. Testimonials ---------- */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    padding: 32px;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.testimonial__stars {
    color: var(--c-gold);
    font-size: 18px;
    display: inline-flex;
    gap: 2px;
}

.testimonial__quote {
    font-size: 15.5px;
    color: var(--c-text);
    line-height: 1.65;
    flex: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--c-line-2);
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--c-bg-3);
    display: grid;
    place-items: center;
    color: var(--c-ink);
    font-weight: 700;
    font-size: 16px;
}

.testimonial__name {
    font-weight: 600;
    color: var(--c-ink);
    font-size: 14.5px;
}

.testimonial__role {
    font-size: 12.5px;
    color: var(--c-text-3);
}

@media (max-width: 900px) {
    .testimonials {
        grid-template-columns: 1fr;
    }
}

/* ---------- 15. FAQ ---------- */
.faq {
    max-width: 820px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--c-line);
}

.faq__q {
    width: 100%;
    text-align: left;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--c-ink);
}

.faq__q .ti {
    font-size: 22px;
    color: var(--c-text-3);
    transition: transform .25s var(--ease);
    flex-shrink: 0;
}

.faq__item.is-open .faq__q .ti {
    transform: rotate(45deg);
    color: var(--c-gold-2);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
}

.faq__a-inner {
    padding: 0 0 22px;
    color: var(--c-text-2);
    font-size: 15px;
    line-height: 1.7;
}

.faq__item.is-open .faq__a {
    max-height: 400px;
}

/* ---------- 16. Blog ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.post {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s var(--ease);
    display: flex;
    flex-direction: column;
}

.post:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.post__media {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-accent) 100%);
    position: relative;
    overflow: hidden;
}

.post__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(238, 177, 65, .25), transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, .06), transparent 50%);
}

.post__media--2 {
    background: linear-gradient(135deg, #1A2B45 0%, #2C3E5C 100%);
}

.post__media--3 {
    background: linear-gradient(135deg, #20304B 0%, #3A4A66 100%);
}

.post__cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, .95);
    color: var(--c-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    z-index: 2;
}

.post__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.post__meta {
    display: flex;
    gap: 14px;
    font-size: 12.5px;
    color: var(--c-text-3);
    margin-bottom: 12px;
}

.post__meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.post h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.35;
}

.post h3 a:hover {
    color: var(--c-gold-2);
}

.post p {
    font-size: 14px;
    color: var(--c-text-2);
    margin-bottom: 18px;
    flex: 1;
}

.post__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-ink);
}

.post__more .ti {
    transition: transform .2s var(--ease);
}

.post__more:hover {
    color: var(--c-gold-2);
}

.post__more:hover .ti {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------- 17. CTA Band ---------- */
.cta-band {
    background: var(--c-ink);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 56px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(238, 177, 65, .25), transparent 70%);
}

.cta-band h2 {
    color: #fff;
    margin-bottom: 12px;
}

.cta-band p {
    color: #A6B2C7;
    margin-bottom: 0;
}

.cta-band__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

@media (max-width: 800px) {
    .cta-band {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .cta-band__actions {
        justify-content: flex-start;
    }
}

/* ========== TEAM / Marka Vekil & Uzmanlarımız ========== */
.team-section {
    position: relative;
    background:
        radial-gradient(900px 360px at 100% 0%, rgba(212,175,55,0.18), transparent 60%),
        radial-gradient(700px 320px at 0% 100%, rgba(212,175,55,0.08), transparent 60%),
        linear-gradient(180deg, #060f1f 0%, #0A1628 55%, #0d1c34 100%);
    color: #f3eedd;
    overflow: hidden;
}
.team-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}
.team-section > .container { position: relative; z-index: 1; }
.team-section .section-head .eyebrow {
    color: #d4af37;
    background: rgba(212,175,55,0.12);
    border-color: rgba(212,175,55,0.30);
}
.team-section .section-head h2 { color: #ffffff; }
.team-section .section-head p { color: rgba(243,238,221,0.78); }
.team-section .eyebrow i { margin-right: 6px; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 12px;
}

.team-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 22px 22px;
    background: #ffffff;
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 18px;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    overflow: hidden;
}
.team-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 92px;
    background: linear-gradient(180deg, rgba(212,175,55,0.16), rgba(212,175,55,0));
    pointer-events: none;
    z-index: 0;
}
.team-card > * { position: relative; z-index: 1; }
.team-card:hover {
    transform: translateY(-4px);
    border-color: #d4af37;
    box-shadow: 0 22px 50px -20px rgba(0,0,0,0.55), 0 6px 14px rgba(212,175,55,0.18);
}

.team-card__avatar-wrap {
    position: relative;
    margin-bottom: 14px;
}
.team-card__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: var(--ac, #1A2B45);
    color: #fff;
    font-weight: 800;
    font-size: 38px;
    letter-spacing: 1px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}
.team-card__avatar--img {
    background: #f4ecd4;
    object-fit: cover;
    padding: 0;
}
.team-card__badge {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #1A2B45;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    border: 1px solid rgba(212,175,55,0.40);
}
.team-card__badge i { font-size: 12px; color: #d4af37; }

.team-card__body {
    flex: 1;
    width: 100%;
    margin-top: 6px;
}
.team-card__name {
    font-size: 18px;
    font-weight: 800;
    color: #1A2B45;
    margin: 0 0 4px;
    line-height: 1.25;
}
.team-card__title {
    font-size: 13.5px;
    color: #6b6457;
    margin: 0 0 14px;
    font-weight: 500;
}
.team-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.team-card__meta li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12.5px;
    color: #4a4a4a;
}
.team-card__meta li i {
    font-size: 14px;
    color: #d4af37;
}

.team-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #1A2B45;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fbf6e9;
    border: 1px solid #ecdfb6;
    transition: background .2s ease, color .2s ease, gap .2s ease;
}
.team-card:hover .team-card__cta {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
    gap: 10px;
}
.team-card__cta i { font-size: 14px; }

@media (max-width: 720px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
    .team-card { padding: 24px 16px 18px; }
    .team-card__avatar { width: 96px; height: 96px; font-size: 32px; }
    .team-card__name { font-size: 16.5px; }
}

.team-card__avatar-wrap {
    position: relative;
    margin-bottom: 14px;
}
.team-card__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: var(--ac, #1A2B45);
    color: #fff;
    font-weight: 800;
    font-size: 38px;
    letter-spacing: 1px;
    border: 4px solid #ffffff;
    box-shadow: 0 6px 18px rgba(26,43,69,0.18);
}
.team-card__avatar--img {
    background: #f4ecd4;
    object-fit: cover;
    padding: 0;
}
.team-card__badge {
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #1A2B45;
    color: #fff;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.team-card__badge i { font-size: 12px; color: #d4af37; }

.team-card__body {
    flex: 1;
    width: 100%;
    margin-top: 6px;
}
.team-card__name {
    font-size: 18px;
    font-weight: 800;
    color: #1A2B45;
    margin: 0 0 4px;
    line-height: 1.25;
}
.team-card__title {
    font-size: 13.5px;
    color: #6b6457;
    margin: 0 0 14px;
    font-weight: 500;
}
.team-card__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.team-card__meta li {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12.5px;
    color: #4a4a4a;
}
.team-card__meta li i {
    font-size: 14px;
    color: #d4af37;
}

.team-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #1A2B45;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fbf6e9;
    border: 1px solid #ecdfb6;
    transition: background .2s ease, color .2s ease, gap .2s ease;
}
.team-card:hover .team-card__cta {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
    gap: 10px;
}
.team-card__cta i { font-size: 14px; }

@media (max-width: 720px) {
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }
    .team-card { padding: 24px 16px 18px; }
    .team-card__avatar { width: 96px; height: 96px; font-size: 32px; }
    .team-card__name { font-size: 16.5px; }
}


/* ========== KURUMSAL — Timeline ========== */
.corp-timeline {
    background:
        radial-gradient(800px 320px at 100% 0%, rgba(212,175,55,0.05), transparent 60%),
        #fdfaf0;
    position: relative;
}
.ctl-list {
    list-style: none;
    margin: 28px auto 0;
    padding: 0;
    position: relative;
    max-width: 920px;
}
.ctl-list::before {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 110px;
    width: 2px;
    background: linear-gradient(180deg, rgba(212,175,55,0.5), rgba(26,43,69,0.20));
    border-radius: 2px;
}
.ctl-item {
    position: relative;
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: flex-start;
    gap: 24px;
    padding: 14px 0;
}
.ctl-item::before {
    content: "";
    position: absolute;
    left: 102px;
    top: 26px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #d4af37;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.15);
    z-index: 1;
}
.ctl-item--now::before {
    background: #d4af37;
    box-shadow: 0 0 0 6px rgba(212,175,55,0.25);
}
.ctl-year {
    text-align: right;
    padding-right: 30px;
    font-size: 20px;
    font-weight: 800;
    color: #1A2B45;
    letter-spacing: -0.3px;
}
.ctl-card {
    background: #ffffff;
    border: 1px solid #ebe4d4;
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 8px 22px -16px rgba(26,43,69,0.18);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.ctl-card:hover {
    transform: translateY(-2px);
    border-color: #d4af37;
    box-shadow: 0 14px 30px -16px rgba(26,43,69,0.28);
}
.ctl-card h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #1A2B45;
}
.ctl-card p {
    margin: 0;
    color: #4a4a4a;
    font-size: 14.5px;
    line-height: 1.65;
}
.ctl-item--now .ctl-card {
    background: linear-gradient(180deg, #fffaee, #ffffff);
    border-color: #d4af37;
}

@media (max-width: 720px) {
    .ctl-list::before { left: 14px; }
    .ctl-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-left: 44px;
    }
    .ctl-item::before { left: 6px; top: 22px; }
    .ctl-year {
        text-align: left;
        padding-right: 0;
        font-size: 17px;
        color: #8b6914;
    }
    .ctl-card { padding: 14px 16px; }
}

/* ========== KURUMSAL — Credentials / Sertifika ========== */
.corp-creds { background: #ffffff; }
.corp-creds__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 12px;
}
.corp-cred {
    background: #ffffff;
    border: 1px solid #ebe4d4;
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.corp-cred:hover {
    transform: translateY(-3px);
    border-color: #d4af37;
    box-shadow: 0 14px 30px -16px rgba(26,43,69,0.18);
}
.corp-cred__icon {
    width: 54px; height: 54px;
    margin: 0 auto 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #fbf3dc, #f4e6b0);
    color: #8b6914;
    font-size: 26px;
    border: 1px solid #ecdfb6;
}
.corp-cred h3 {
    margin: 0 0 4px;
    font-size: 15.5px;
    font-weight: 800;
    color: #1A2B45;
}
.corp-cred p {
    margin: 0;
    font-size: 13px;
    color: #6b6457;
    line-height: 1.55;
}

/* CTA band sayfada section wrap olarak */
.cta-band-wrap {
    padding: 60px 0;
    background: #fdfaf0;
}
@media (max-width: 720px) {
    .cta-band-wrap { padding: 40px 0; }
}
