:root {
    /* Marka turuncusu (logodan) */
    --brand: #f47a1f;
    --brand-2: #ff9438;
    --brand-dark: #d2620e;
    --brand-soft: #fff2e4;
    --brand-ring: rgba(244, 122, 31, .22);

    /* Kurumsal koyu */
    --ink: #16202e;
    --ink-2: #1f2b3c;
    --ink-deep: #0c1420;

    /* Nötrler */
    --muted: #5b6776;
    --line: #ece4d8;
    --line-2: #e6eaf0;
    --cream: #faf6f0;
    --cream-2: #f4ede2;
    --white: #ffffff;
    --gold: #f6b042;

    --shadow: 0 24px 60px rgba(18, 27, 41, .14);
    --shadow-sm: 0 14px 32px rgba(18, 27, 41, .08);
    --radius: 14px;
    --radius-sm: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--ink);
    color: var(--white);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line-2);
    backdrop-filter: blur(16px);
}

.top-strip {
    background: var(--ink-deep);
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
}

.top-strip__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: flex-end;
}

.top-strip__inner span {
    margin-right: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-strip__inner span::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-ring);
}

.top-strip a {
    font-weight: 650;
}

.top-strip a:hover {
    color: var(--brand-2);
}

.navbar__inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.brand {
    flex: 0 0 auto;
    width: 240px;
}

.brand img {
    width: 240px;
    height: auto;
}

.nav-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-menu a {
    position: relative;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 8px;
    color: #28384f;
    font-size: .94rem;
    font-weight: 640;
    white-space: nowrap;
    transition: color .15s ease, background .15s ease;
}

.nav-menu a:hover,
.nav-menu a.is-active {
    color: var(--brand-dark);
    background: var(--brand-soft);
}

.nav-menu__quote {
    display: none;
}

.navbar__cta,
.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0 22px;
    background: var(--brand);
    background-image: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: var(--white);
    font-weight: 730;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 14px 26px rgba(244, 122, 31, .28);
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.navbar__cta:hover,
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(244, 122, 31, .34);
}

.btn--light {
    background: var(--white);
    background-image: none;
    color: var(--brand-dark);
    box-shadow: var(--shadow-sm);
}

.btn--light:hover {
    background: var(--cream);
}

.btn--outline {
    background: transparent;
    background-image: none;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .55);
    box-shadow: none;
}

.btn--outline:hover {
    background: rgba(255, 255, 255, .12);
    border-color: var(--white);
}

.btn--ghost {
    background: transparent;
    background-image: none;
    color: var(--brand-dark);
    border: 1.5px solid var(--brand);
    box-shadow: none;
}

.btn--ghost:hover {
    background: var(--brand-soft);
}

.nav-toggle {
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    margin-left: auto;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 82svh;
    display: grid;
    align-items: center;
    color: var(--white);
    background:
        linear-gradient(104deg, rgba(10, 18, 30, .94) 0%, rgba(13, 24, 40, .82) 40%, rgba(18, 32, 52, .42) 72%, rgba(244, 122, 31, .14) 100%),
        url("../images/hero-kurumsal-kirtasiye.jpg") center / cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
}

.hero__content {
    max-width: 760px;
    padding: 68px 0 84px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: var(--brand-2);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .8rem;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 3px;
    border-radius: 3px;
    background: var(--brand);
}

.section .eyebrow,
.split .eyebrow {
    color: var(--brand-dark);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 8px 16px 8px 12px;
    border-radius: 999px;
    background: rgba(244, 122, 31, .16);
    border: 1px solid rgba(244, 122, 31, .4);
    color: #ffd9b3;
    font-weight: 720;
    font-size: .9rem;
}

.hero-badge::before {
    content: "★";
    color: var(--gold);
    font-size: 1rem;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 820px;
    font-size: clamp(2.3rem, 4.6vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -.01em;
    font-weight: 800;
}

.hero h1 .accent {
    color: var(--brand-2);
}

.hero p {
    margin: 22px 0 0;
    max-width: 640px;
    font-size: 1.14rem;
    color: rgba(255, 255, 255, .9);
}

.hero__actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
}

.hero-trust li {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .92);
    font-weight: 600;
    font-size: .96rem;
}

.hero-trust li::before {
    content: "✓";
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(244, 122, 31, .9);
    color: #fff;
    font-size: .72rem;
    font-weight: 900;
}

.hero__facts {
    margin-top: 38px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 680px;
}

.fact {
    min-height: 96px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(6px);
}

.fact strong {
    display: block;
    font-size: 1.9rem;
    line-height: 1;
    color: var(--white);
    font-weight: 820;
}

.fact strong em {
    font-style: normal;
    color: var(--brand-2);
}

.fact span {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
}

/* ---------- Sections ---------- */
.section {
    padding: 84px 0;
}

.section--soft {
    background: var(--cream);
}

.section--ink {
    background: var(--ink-deep);
    color: var(--white);
    background-image:
        radial-gradient(900px 400px at 85% -10%, rgba(244, 122, 31, .14), transparent 60%);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
}

.section-head h2,
.split h2,
.content-flow h2,
.form-panel h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1.7rem, 2.6vw, 2.2rem);
    line-height: 1.16;
    letter-spacing: -.01em;
    font-weight: 780;
}

.section--ink .section-head h2,
.section--ink .section-head p,
.section--ink .eyebrow {
    color: var(--white);
}

.section--ink .eyebrow {
    color: var(--brand-2);
}

.section-head p {
    margin: 10px 0 0;
    max-width: 620px;
    color: var(--muted);
}

.section--ink .section-head p {
    color: rgba(255, 255, 255, .8);
}

/* ---------- Trust grid ---------- */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.trust-item,
.card,
.service-card,
.brand-card,
.blog-card,
.process-step,
.info-panel,
.form-panel {
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.trust-item {
    min-height: 142px;
    padding: 24px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.trust-item:hover {
    transform: translateY(-3px);
    border-color: var(--brand-ring);
    box-shadow: var(--shadow);
}

.trust-item b {
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 1.04rem;
}

.trust-item b::before {
    content: "";
    display: block;
    width: 34px;
    height: 4px;
    margin-bottom: 12px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
}

.trust-item p,
.card p,
.service-card p,
.blog-card p,
.process-step p,
.info-panel p,
.content-flow p {
    margin: 0;
    color: var(--muted);
}

/* ---------- Product cards ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.card {
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.card__image {
    aspect-ratio: 4 / 3;
    background: var(--cream-2);
    overflow: hidden;
}

.card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.card:hover .card__image img {
    transform: scale(1.05);
}

.card__body {
    padding: 20px;
}

.card h3,
.service-card h3,
.blog-card h3,
.process-step h3,
.info-panel h3 {
    margin: 0 0 9px;
    color: var(--ink);
    font-size: 1.1rem;
    line-height: 1.25;
    font-weight: 740;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    color: var(--brand-dark);
    font-weight: 760;
}

.card__link::after {
    content: "→";
    transition: transform .15s ease;
}

.card__link:hover::after {
    transform: translateX(4px);
}

/* ---------- Split ---------- */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    gap: 48px;
    align-items: center;
}

.split__media {
    position: relative;
}

.split__media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.split__media::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--brand-soft), transparent);
    z-index: -1;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 14px;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--ink);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-size: .8rem;
    font-weight: 900;
}

/* ---------- Service / process / info ---------- */
.service-grid,
.blog-grid,
.process-grid,
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.service-card,
.blog-card,
.process-step,
.info-panel {
    padding: 26px;
    transition: transform .18s ease, box-shadow .18s ease;
}

.service-card:hover,
.process-step:hover,
.info-panel:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.service-card span,
.process-step span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: var(--white);
    font-weight: 850;
    font-size: 1.05rem;
    box-shadow: 0 10px 20px rgba(244, 122, 31, .26);
}

.section--ink .process-step {
    background: rgba(255, 255, 255, .04);
    border-color: rgba(255, 255, 255, .12);
}

.section--ink .process-step h3 {
    color: var(--white);
}

.section--ink .process-step p {
    color: rgba(255, 255, 255, .76);
}

/* ---------- Special services (icons) ---------- */
.special-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.special-card {
    position: relative;
    padding: 30px 26px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line-2);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease;
}

.special-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
}

.special-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.special-card__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.special-card__icon svg {
    width: 30px;
    height: 30px;
}

.special-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 1.18rem;
    font-weight: 760;
}

.special-card p {
    margin: 0;
    color: var(--muted);
}

/* ---------- Compare (bireysel vs kurumsal) ---------- */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.compare-card {
    position: relative;
    padding: 30px 28px;
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.compare-card h3 {
    margin: 14px 0 16px;
    color: var(--ink);
    font-size: 1.3rem;
    font-weight: 760;
}

.compare-card__tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: var(--cream-2);
    color: var(--muted);
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: .02em;
}

.compare-card--featured {
    border: 0;
    background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: #fff;
    box-shadow: 0 24px 50px rgba(210, 98, 14, .3);
}

.compare-card--featured h3 {
    color: #fff;
}

.compare-card--featured .compare-card__tag {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.compare-list {
    list-style: none;
    padding: 0;
    margin: 0 0 4px;
    display: grid;
    gap: 12px;
}

.compare-list li {
    position: relative;
    padding-left: 30px;
    font-weight: 550;
}

.compare-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 21px;
    height: 21px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    color: #fff;
    font-size: .74rem;
    font-weight: 900;
}

.compare-list--muted li {
    color: var(--muted);
    font-weight: 500;
}

.compare-list--muted li::before {
    content: "•";
    background: var(--cream-2);
    color: var(--muted);
    font-size: 1rem;
}

.compare-card--featured .btn {
    margin-top: 22px;
    background: #fff;
    background-image: none;
    color: var(--brand-dark);
}

.compare-card--featured .btn:hover {
    background: var(--cream);
}

/* ---------- Same-day delivery band ---------- */
.delivery-band {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 26px;
    padding: 30px 36px;
    border-radius: var(--radius);
    background: linear-gradient(120deg, var(--ink-deep), var(--ink-2));
    color: var(--white);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.delivery-band::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 122, 31, .3), transparent 70%);
}

.delivery-band__clock {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    font-size: 1.5rem;
    font-weight: 850;
    box-shadow: 0 14px 28px rgba(244, 122, 31, .4);
    z-index: 1;
}

.delivery-band__clock span {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .05em;
    opacity: .9;
}

.delivery-band h2 {
    margin: 0;
    font-size: 1.5rem;
    line-height: 1.2;
    color: var(--white);
    z-index: 1;
}

.delivery-band p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, .82);
    z-index: 1;
}

.delivery-band .btn {
    z-index: 1;
}

/* ---------- Brand marquee ---------- */
.brand-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: brand-scroll 46s linear infinite;
}

.brand-marquee:hover .brand-track {
    animation-play-state: paused;
}

@keyframes brand-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.brand-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    min-height: 56px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    font-weight: 750;
    font-size: 1.02rem;
    letter-spacing: .01em;
    box-shadow: var(--shadow-sm);
}

/* static brand grid (markalar page) */
.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.brand-card {
    min-height: 92px;
    display: grid;
    place-items: center;
    padding: 18px;
    color: var(--ink);
    font-size: 1.04rem;
    font-weight: 760;
    text-align: center;
    transition: transform .15s ease, border-color .15s ease, color .15s ease;
}

.brand-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    color: var(--brand-dark);
}

/* ---------- Category pills ---------- */
.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    color: var(--ink);
    font-weight: 680;
    box-shadow: var(--shadow-sm);
    transition: transform .15s ease, border-color .15s ease;
}

.pill::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--brand);
}

.pill:hover {
    transform: translateY(-2px);
    border-color: var(--brand);
}

.blog-card__meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    color: var(--brand-dark);
    font-size: .86rem;
    font-weight: 740;
}

.blog-card__meta span {
    padding: 3px 10px;
    border-radius: 999px;
    background: var(--brand-soft);
}

.blog-card__meta time {
    color: var(--muted);
}

/* ---------- FAQ ---------- */
.faq-list {
    display: grid;
    gap: 12px;
    max-width: 920px;
}

.faq-item {
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 56px 20px 22px;
    position: relative;
    font-weight: 720;
    color: var(--ink);
    font-size: 1.05rem;
}

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

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-size: 1.3rem;
    font-weight: 700;
    transition: transform .2s ease;
}

.faq-item[open] summary::after {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
}

.faq-item summary:hover {
    color: var(--brand-dark);
}

.faq-item__body {
    padding: 0 22px 20px;
}

.faq-item__body p {
    margin: 0;
    color: var(--muted);
}

.inline-link {
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.inline-link:hover {
    color: var(--brand);
}

/* ---------- CTA band ---------- */
.cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 42px;
    border-radius: var(--radius);
    background: linear-gradient(120deg, var(--ink-deep), var(--ink-2) 70%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cta-band::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 122, 31, .28), transparent 70%);
}

.cta-band > * {
    position: relative;
    z-index: 1;
}

.cta-band h2,
.cta-band p {
    margin: 0;
    color: var(--white);
}

.cta-band p {
    max-width: 660px;
    margin-top: 10px;
    color: rgba(255, 255, 255, .84);
}

/* ---------- Price-ask band (iddialı) ---------- */
.price-ask {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
    padding: 46px 48px;
    border-radius: var(--radius);
    background: linear-gradient(125deg, var(--brand) 0%, var(--brand-dark) 100%);
    color: var(--white);
    box-shadow: 0 26px 60px rgba(210, 98, 14, .34);
    overflow: hidden;
}

.price-ask::before {
    content: "₺";
    position: absolute;
    right: 34px;
    bottom: -52px;
    font-size: 18rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, .1);
    z-index: 0;
}

.price-ask > * {
    position: relative;
    z-index: 1;
}

.price-ask .eyebrow {
    color: rgba(255, 255, 255, .9);
}

.price-ask .eyebrow::before {
    background: var(--white);
}

.price-ask h2 {
    margin: 0;
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.15;
    font-weight: 820;
}

.price-ask p {
    margin: 12px 0 0;
    max-width: 640px;
    color: rgba(255, 255, 255, .92);
    font-size: 1.05rem;
}

/* ---------- Page hero ---------- */
.page-hero {
    position: relative;
    padding: 84px 0 64px;
    color: var(--white);
    background:
        linear-gradient(100deg, rgba(10, 18, 30, .95), rgba(18, 32, 52, .8)),
        url("../images/hero-kurumsal-kirtasiye.jpg") center / cover no-repeat;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 5px;
    background: linear-gradient(90deg, var(--brand), var(--gold));
}

.page-hero p {
    max-width: 760px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .88);
    font-size: 1.1rem;
}

/* ---------- Content flow ---------- */
.content-flow {
    max-width: 900px;
}

.content-flow h2 {
    margin-top: 38px;
    margin-bottom: 10px;
}

.content-flow h2:first-child {
    margin-top: 0;
}

.content-flow h3 {
    margin: 24px 0 8px;
    color: var(--brand-dark);
}

.content-flow ul {
    padding-left: 22px;
    color: var(--muted);
}

.content-flow ul li {
    margin-bottom: 6px;
}

/* ---------- Forms ---------- */
.form-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: start;
}

.form-panel {
    padding: 30px;
}

.info-panel {
    padding: 26px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field {
    display: grid;
    gap: 7px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label {
    color: #2a3c56;
    font-weight: 720;
    font-size: .92rem;
}

.req {
    color: var(--brand-dark);
    font-weight: 800;
}

.field-hint {
    color: var(--muted);
    font-weight: 500;
    font-size: .82rem;
}

.check-label {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
    color: var(--muted);
    font-size: .92rem;
    line-height: 1.5;
}

.check-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-height: 0;
    margin: 2px 0 0;
    accent-color: var(--brand);
    flex: 0 0 auto;
    cursor: pointer;
}

.check-label a {
    color: var(--brand-dark);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.field input[type="file"] {
    padding: 9px 12px;
    background: var(--cream);
    cursor: pointer;
}

.field input[type="file"]::file-selector-button {
    margin-right: 12px;
    padding: 8px 14px;
    border: 0;
    border-radius: 8px;
    background: var(--brand);
    background-image: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

/* Zorunlu alan uyarısı yalnızca "Gönder"e basıldıktan sonra gösterilir */
[data-validate].is-submitted input:not([type="checkbox"]):invalid,
[data-validate].is-submitted textarea:invalid,
[data-validate].is-submitted select:invalid {
    border-color: #e0584d;
    box-shadow: 0 0 0 3px rgba(224, 88, 77, .14);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #d7dce4;
    border-radius: 10px;
    padding: 11px 13px;
    color: var(--ink);
    background: var(--white);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.field textarea {
    min-height: 134px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--brand-ring);
}

.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.alert {
    margin: 0 0 18px;
    padding: 13px 15px;
    border-radius: 10px;
}

.alert--success {
    background: #e7f8ef;
    color: #12633c;
    border: 1px solid #b9ebcf;
}

.alert--error {
    background: #fff1f0;
    color: #9c2b23;
    border: 1px solid #f4c7c3;
}

.contact-card-image {
    margin-top: 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.contact-layout .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-panel .btn {
    margin-top: 20px;
    width: 100%;
}

.map-frame {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* ---------- Contact page ---------- */
.contact-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-tile {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px;
    border: 1px solid var(--line-2);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.contact-tile:hover {
    transform: translateY(-3px);
    border-color: var(--brand-ring);
    box-shadow: var(--shadow);
}

.contact-tile__icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.contact-tile__icon svg {
    width: 24px;
    height: 24px;
}

.contact-tile--wa .contact-tile__icon {
    background: rgba(31, 175, 84, .12);
    color: #1faf54;
}

.contact-tile b {
    display: block;
    color: var(--ink);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-tile p {
    margin: 0;
    color: var(--muted);
    word-break: break-word;
}

.hours-panel {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 16px;
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(120deg, var(--ink-deep), var(--ink-2));
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.hours-panel__icon {
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand-2), var(--brand));
    color: var(--white);
}

.hours-panel__icon svg {
    width: 24px;
    height: 24px;
}

.hours-panel b {
    display: block;
    margin-bottom: 6px;
    color: var(--white);
}

.hours-panel p {
    margin: 0;
    color: rgba(255, 255, 255, .82);
}

.hours-panel__note {
    margin-top: 6px !important;
    color: var(--brand-2) !important;
    font-weight: 650;
}

.form-panel__lead {
    margin: -4px 0 18px;
    color: var(--muted);
}

.map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrap .map-frame {
    display: block;
    min-height: 420px;
    border-radius: 0;
    box-shadow: none;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--ink-deep);
    color: rgba(255, 255, 255, .8);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .8fr 1fr;
    gap: 38px;
}

.footer-brand img {
    width: 250px;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    background: var(--white);
}

.footer-brand p {
    max-width: 340px;
    margin-top: 16px;
}

.site-footer h2 {
    margin: 0 0 16px;
    color: var(--white);
    font-size: 1rem;
    letter-spacing: .02em;
}

.footer-links {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.footer-links a:hover {
    color: var(--brand-2);
    padding-left: 4px;
    transition: padding .15s ease;
}

.site-footer address {
    font-style: normal;
    line-height: 1.9;
}

.footer-social__label {
    margin: 18px 0 8px;
    color: var(--white);
    font-weight: 700;
    font-size: .95rem;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: rgba(255, 255, 255, .85);
    font-weight: 650;
    transition: border-color .15s ease, color .15s ease;
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-social:hover {
    border-color: var(--brand);
    color: var(--brand-2);
}

.site-footer address a:hover {
    color: var(--brand-2);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: .9rem;
    color: rgba(255, 255, 255, .6);
}

.footer-legal {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin: 0;
    padding: 0;
}

.footer-legal a:hover {
    color: var(--brand-2);
}

/* ---------- Modal (KVKK vb.) ---------- */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal[hidden] {
    display: none;
}

.modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 20, 32, .62);
    backdrop-filter: blur(2px);
}

.modal__dialog {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: 86vh;
    overflow: auto;
    padding: 34px 32px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: modal-in .2s ease;
}

@keyframes modal-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--cream-2);
    color: var(--ink);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    transition: background .15s ease, color .15s ease;
}

.modal__close:hover {
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.modal__body {
    max-width: none;
}

.modal__body h2 {
    font-size: 1.12rem;
    margin: 20px 0 8px;
    color: var(--ink);
}

.modal__body h2:first-child,
.modal__body h2#kvkk-modal-title {
    margin-top: 0;
}

.modal__body #kvkk-modal-title {
    font-size: 1.4rem;
    color: var(--brand-dark);
    padding-right: 40px;
}

body.modal-open {
    overflow: hidden;
}

/* ---------- Cookie bar ---------- */
.cookie-bar {
    position: fixed;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 760px;
    margin-inline: auto;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--ink-deep);
    color: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, .12);
}

.cookie-bar[hidden] {
    display: none;
}

.cookie-bar p {
    margin: 0;
    font-size: .9rem;
}

.cookie-bar a {
    color: var(--brand-2);
    text-decoration: underline;
}

.cookie-bar .btn {
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0 20px;
}

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 40;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 14px 34px rgba(37, 211, 102, .45);
    transition: transform .15s ease, box-shadow .15s ease;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 18px 40px rgba(37, 211, 102, .55);
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
    .top-strip__inner {
        justify-content: center;
        flex-wrap: wrap;
        padding: 7px 0;
    }

    .top-strip__inner span {
        width: 100%;
        margin: 0;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .navbar__cta {
        display: none;
    }

    .nav-menu {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% - 1px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu a {
        min-height: 46px;
    }

    .nav-menu a.is-mobile-secondary:not(.is-active) {
        display: none;
    }

    .nav-menu a.nav-menu__quote {
        display: flex;
        justify-content: center;
        min-height: 50px;
        margin-top: 6px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--brand-2), var(--brand));
        color: var(--white);
        box-shadow: 0 12px 24px rgba(244, 122, 31, .24);
    }

    .nav-menu a.nav-menu__quote:hover,
    .nav-menu a.nav-menu__quote:focus-visible {
        color: var(--white);
        background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    }

    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .brand-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .delivery-band {
        grid-template-columns: auto 1fr;
    }

    .delivery-band .btn {
        grid-column: 1 / -1;
        justify-self: start;
    }
}

@media (max-width: 820px) {
    .hero {
        min-height: auto;
        background-position: 64% center;
    }

    .hero__content {
        padding: 58px 0 70px;
    }

    .hero p,
    .page-hero p {
        font-size: 1.02rem;
    }

    .hero__facts,
    .service-grid,
    .blog-grid,
    .process-grid,
    .info-grid,
    .special-grid,
    .compare-grid,
    .form-layout,
    .contact-layout,
    .split {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .section {
        padding: 62px 0;
    }

    .section-head,
    .cta-band,
    .price-ask,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .price-ask {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

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

    .split__media::before {
        display: none;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 30px, 1180px);
    }

    .mobile-hide {
        display: none !important;
    }

    .brand,
    .brand img {
        width: 196px;
    }

    .navbar__inner {
        min-height: 70px;
    }

    .top-strip {
        display: none;
    }

    .nav-menu {
        left: 15px;
        right: 15px;
        padding: 12px;
        border-radius: 12px;
    }

    .nav-menu a {
        justify-content: center;
        min-height: 44px;
        font-size: .95rem;
    }

    .hero {
        background-position: 70% center;
    }

    .hero__content {
        padding: 38px 0 44px;
    }

    .hero-badge {
        margin-bottom: 12px;
        font-size: .74rem;
    }

    .hero h1 {
        max-width: 360px;
        font-size: 2.18rem;
        line-height: 1.06;
    }

    .hero p {
        display: -webkit-box;
        max-width: 340px;
        margin-top: 14px;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 22px;
    }

    .hero-trust {
        display: none;
    }

    .hero__facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 18px;
    }

    .fact {
        min-height: 78px;
        padding: 11px 8px;
    }

    .fact strong {
        font-size: 1.22rem;
    }

    .fact strong em {
        display: block;
        margin-top: 2px;
        font-size: .62rem;
    }

    .fact span {
        margin-top: 5px;
        font-size: .72rem;
        line-height: 1.18;
    }

    .product-grid,
    .trust-grid,
    .brand-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-grid {
        gap: 12px;
    }

    .section {
        padding: 42px 0;
    }

    .section-head {
        margin-bottom: 20px;
    }

    .section-head h2,
    .split h2,
    .content-flow h2,
    .form-panel h2 {
        font-size: 1.55rem;
    }

    .section-head p,
    .trust-item p,
    .card p {
        display: none;
    }

    .trust-item,
    .card__body {
        padding: 14px;
    }

    .trust-item {
        min-height: 82px;
    }

    .card h3 {
        min-height: 42px;
        margin-bottom: 0;
        font-size: .96rem;
    }

    .card__link {
        margin-top: 10px;
        font-size: .86rem;
    }

    .delivery-band {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
        gap: 16px;
        padding: 22px 18px;
    }

    .delivery-band p {
        display: none;
    }

    .delivery-band .btn {
        width: 100%;
    }

    .whatsapp-float {
        display: none;
    }

    .cookie-bar {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 12px;
        border-radius: 10px;
        text-align: left;
    }

    .cookie-bar p {
        font-size: .82rem;
        line-height: 1.35;
    }

    .cookie-bar .btn {
        min-height: 38px;
        padding: 0 14px;
        font-size: .84rem;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .price-ask::before {
        font-size: 12rem;
    }

    .price-ask p {
        display: none;
    }

    .price-ask,
    .cta-band {
        padding: 26px 20px;
        text-align: center;
    }

    .price-ask .btn,
    .cta-band .btn {
        width: 100%;
    }

    .cta-band p {
        display: none;
    }

    .contact-hero {
        padding: 46px 0 38px;
    }

    .contact-hero h1 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .contact-hero p:not(.eyebrow) {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .contact-section {
        padding-top: 34px;
    }

    .contact-layout {
        gap: 18px;
    }

    .contact-tiles {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-tile {
        gap: 12px;
        padding: 14px;
        border-radius: 10px;
    }

    .contact-tile__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .contact-tile__icon svg {
        width: 21px;
        height: 21px;
    }

    .contact-tile b {
        margin-bottom: 1px;
        font-size: .95rem;
    }

    .contact-tile p {
        font-size: .88rem;
        line-height: 1.35;
    }

    .hours-panel {
        gap: 12px;
        margin-top: 10px;
        padding: 16px 14px;
        border-radius: 10px;
    }

    .hours-panel__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .hours-panel p {
        font-size: .88rem;
        line-height: 1.35;
    }

    .form-panel {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .form-panel__lead {
        display: none;
    }

    .field {
        gap: 5px;
    }

    .field input,
    .field textarea,
    .field select {
        min-height: 46px;
        border-radius: 8px;
        padding: 10px 12px;
    }

    .field textarea {
        min-height: 108px;
    }

    .check-label {
        font-size: .84rem;
        line-height: 1.38;
    }

    .map-wrap .map-frame {
        min-height: 300px;
    }
}
