/* marketing.css — tanıtım sayfaları için ek bileşenler.
   app.css'ten SONRA yüklenir; burada tanımlı sınıflar sahte sosyal kanıt
   bileşenlerinin (hero-proof, trust-logos, quote-grid) yerini alır. */

/* app.css'te coral/violet/blue/dark var; yeşil varyant burada tamamlanıyor. */
.card-icon.green {
    background: #e8f7ef;
    color: #178e60;
}

/* ---------- Lansman rozetleri (hero altı) ---------- */
.launch-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.launch-facts span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    font-size: 13.5px;
    font-weight: 600;
    color: #384356;
    backdrop-filter: blur(6px);
}

.launch-facts .ui-icon {
    width: 15px;
    height: 15px;
    color: var(--orange);
    flex: none;
}

/* ---------- Şeffaflık şeridi (sahte logo bandının yerine) ---------- */
.assurance-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--cream);
    padding: 30px 0;
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.assurance-grid > div {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.assurance-grid .ui-icon {
    width: 20px;
    height: 20px;
    color: var(--orange);
    flex: none;
    margin-top: 2px;
}

.assurance-grid strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 14.5px;
    color: var(--ink);
    margin-bottom: 3px;
}

.assurance-grid small {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: var(--muted);
}

/* ---------- "Yeni ürün" dürüstlük bloğu ---------- */
.honest-section {
    background: var(--paper);
}

.honest-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.honest-copy h2 {
    font-family: Manrope, sans-serif;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin: 14px 0 18px;
    color: var(--navy);
}

.honest-copy h2 em {
    font-style: normal;
    color: var(--orange);
}

.honest-copy > p {
    font-size: 17px;
    line-height: 1.65;
    color: #56617a;
    max-width: 540px;
}

.honest-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 30px;
}

.honest-points > div {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.honest-points i {
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 9px;
    background: rgba(255, 107, 53, .12);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-style: normal;
    font-size: 13px;
    font-weight: 700;
    margin-top: 2px;
}

.honest-points strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 15.5px;
    color: var(--ink);
    margin-bottom: 3px;
}

.honest-points p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
}

/* Durum kartı — "şu an neredeyiz" */
.status-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.status-card > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--orange);
}

.status-card > span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
}

.status-card h3 {
    font-family: Manrope, sans-serif;
    font-size: 21px;
    margin: 14px 0 6px;
    color: var(--navy);
}

.status-card > p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 22px;
}

.status-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
}

.status-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
    color: #3a4457;
    font-weight: 500;
}

.status-list b {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
}

.status-list b.ready {
    background: rgba(22, 163, 106, .12);
    color: var(--green);
}

.status-list b.soon {
    background: rgba(118, 87, 214, .12);
    color: var(--violet);
}

/* ---------- Modül ızgarası (özellik vurgusu) ---------- */
.module-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.module-grid article {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 24px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.module-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, .35);
    box-shadow: 0 18px 44px rgba(15, 27, 45, .09);
}

.module-grid .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.module-grid .card-icon .ui-icon {
    width: 20px;
    height: 20px;
}

.module-grid h3 {
    font-family: Manrope, sans-serif;
    font-size: 17px;
    color: var(--navy);
    margin: 0 0 8px;
}

.module-grid p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

/* ---------- Tek paket fiyatlandırma (/pricing) ---------- */
.single-plan {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 980px;
    margin: 0 auto;
    background: var(--white);
    border: 2px solid var(--orange);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(255, 107, 53, .13);
}

.single-plan-head {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.single-plan-head .plan-label {
    font-size: 11px;
    letter-spacing: .12em;
}

.single-plan-head h2 {
    font-family: Manrope, sans-serif;
    font-size: 34px;
    color: var(--navy);
    margin: 12px 0 10px;
}

.single-plan-head > p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
}

.single-plan-head .price {
    margin: 26px 0 22px;
}

.single-plan-head .price strong {
    font-size: 27px;
    line-height: 1.25;
}

.single-plan-head .btn-norix {
    justify-content: center;
    text-align: center;
}

.single-plan-alt {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    align-self: center;
}

.single-plan-alt:hover {
    color: var(--orange);
    border-bottom-color: currentColor;
}

.single-plan-body {
    padding: 44px 40px;
    background: var(--cream);
    border-left: 1px solid var(--line);
}

.single-plan-body > strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 13px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 18px;
}

.single-plan-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-plan-body li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 14.5px;
    line-height: 1.5;
    color: #3a4457;
}

.single-plan-body li .ui-icon {
    width: 16px;
    height: 16px;
    flex: none;
    color: var(--green);
    margin-top: 3px;
}

.pricing-explain {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: 980px;
    margin: 40px auto 0;
}

.pricing-explain > div {
    padding-top: 20px;
    border-top: 2px solid var(--line);
}

.pricing-explain strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 15.5px;
    color: var(--navy);
    margin-bottom: 8px;
}

.pricing-explain p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
    margin: 0;
}

/* ---------- Sektör kartları (/solutions) ---------- */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sector-grid article {
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px 26px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sector-grid .card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
}

.sector-grid .card-icon .ui-icon {
    width: 21px;
    height: 21px;
}

.sector-grid h3 {
    font-family: Manrope, sans-serif;
    font-size: 18px;
    color: var(--navy);
    margin: 4px 0 0;
}

.sector-grid p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

.sector-grid ul {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sector-grid li {
    position: relative;
    padding-left: 22px;
    font-size: 14px;
    color: #3a4457;
    line-height: 1.5;
}

.sector-grid li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 12px;
    height: 7px;
    border-left: 2px solid var(--orange);
    border-bottom: 2px solid var(--orange);
    transform: rotate(-45deg);
}

/* ---------- Kaynak kartları (/resources) ---------- */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.resource-grid a {
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 26px 24px;
    background: var(--white);
    display: block;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.resource-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 53, .4);
    box-shadow: 0 16px 40px rgba(15, 27, 45, .08);
}

.resource-grid .card-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin-bottom: 15px;
}

.resource-grid .card-icon .ui-icon {
    width: 19px;
    height: 19px;
}

.resource-grid strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 16.5px;
    color: var(--navy);
    margin-bottom: 7px;
}

.resource-grid p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 12px;
}

.resource-grid em {
    font-style: normal;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--orange);
}

/* ---------- SSS ---------- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    border-top: 1px solid var(--line);
}

.faq-list details {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    padding: 22px 40px 22px 0;
    position: relative;
    font-family: Manrope, sans-serif;
    font-size: 16.5px;
    font-weight: 600;
    color: var(--navy);
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 22px;
    font-weight: 500;
    color: var(--orange);
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list details > p {
    margin: -4px 0 22px;
    padding-right: 40px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}

/* ---------- Adım şeridi ---------- */
.step-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    counter-reset: norix-step;
}

.step-row > div {
    counter-increment: norix-step;
    padding-top: 22px;
    border-top: 2px solid var(--line);
    position: relative;
}

.step-row > div::before {
    content: "0" counter(norix-step);
    font-family: Manrope, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    color: var(--orange);
    display: block;
    margin-bottom: 10px;
}

.step-row strong {
    display: block;
    font-family: Manrope, sans-serif;
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 7px;
}

.step-row p {
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
}

/* ---------- Duyarlılık ---------- */
@media (max-width: 980px) {
    .assurance-grid,
    .module-grid,
    .sector-grid,
    .resource-grid,
    .step-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .honest-grid,
    .single-plan {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .single-plan {
        gap: 0;
    }

    .single-plan-body {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .pricing-explain {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 620px) {
    .assurance-grid,
    .module-grid,
    .sector-grid,
    .resource-grid,
    .step-row {
        grid-template-columns: 1fr;
    }

    .launch-facts span {
        font-size: 12.5px;
    }
}
