/* ==========================================================================
   SONEO Creative Works — Stylesheet
   ========================================================================== */

/* ---------- Reset & Tokens ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Sofia Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: #303030;
    background: #ffffff;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; margin: 0; }
h1,h2,h3,h4,h5,h6 { margin: 0; font-weight: 700; }
p { margin: 0; }

:root {
    --color-title: #303030;
    --color-title-dark: #1F1E1E;
    --color-secondary-text: #45556C;
    --color-primary: #FA3000;
    --color-primary-2: #E13701;
    --color-primary-3: #FE7500;
    --color-teal: #00B2A9;
    --color-soneo-white: #F1EDE4;
    --color-text-gray: #2a2929;
    --color-footer-text: #C0C5D5;
    --color-blog-meta: #7d735c;
    --gradient-primary: linear-gradient(40deg, #FE7500 1.7%, #E13701 50.8%, #FA3000 100%);
    --gradient-primary-soft: linear-gradient(22deg, #FE7500 1.7%, #E13701 50.8%, #FA3000 100%);
    --gradient-footer: linear-gradient(180deg, #29292a 0%, #010618 100%);
    --gradient-stats: linear-gradient(180deg, #effcff 0%, #ffffff 50%, #fdfdfd 100%);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.05);
    --container-width: 1248px;
}

/* ---------- Layout ---------- */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}
@media (min-width: 1024px) {
    .container { padding: 0 32px; }
}

/* ---------- Typography helpers ---------- */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.text-gradient--italic {
    font-family: 'Sofia Sans Extra Condensed', 'Sofia Sans', sans-serif;
    font-style: italic;
    font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
}
/* button reset — only resets buttons WITHOUT .btn--primary class */
button.btn:not(.btn--primary):not(.btn--red) { background: none; }
button.btn { border: 0; }
button.footer-action { background: #fff; border: 0; }
button.top-bar__link { background: none; color: #fff; padding: 0; border: 0; }
.btn:hover { transform: translateY(-1px); opacity: .96; }
.btn--primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
.btn--outline {
    background: #fff;
    color: var(--color-title);
    border: 1px solid var(--color-title);
    box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.btn--xl {
    height: 56px;
    padding: 0 28px;
    font-size: 20px;
    font-weight: 600;
    min-width: 200px;
}
.btn--header { height: 48px; min-width: 190px; font-size: 16px; font-weight: 700; }
.btn--red { background: #FA3000; box-shadow: 0 1px 2px rgba(0,0,0,0.18); }
.btn--with-arrow .btn__arrow { width: 24px; height: 24px; }
.btn--with-arrow .btn__arrow--right { transform: rotate(180deg); }

/* ---------- Top utility bar ---------- */
.top-bar {
    background: linear-gradient(90deg, #000 0%, #111 100%);
    color: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 58px;
    gap: 24px;
    flex-wrap: wrap;
}
.top-bar__tagline {
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.18px;
}
.top-bar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
.top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 18px;
    color: #fff;
    transition: opacity .15s;
    font-family: inherit;
}
.top-bar__link:hover { opacity: .85; }
button.top-bar__link { cursor: pointer; }
.icon-24 { width: 24px; height: 24px; }
.top-bar__divider {
    width: 1px;
    height: 24px;
    background: rgba(255,255,255,0.25);
    display: inline-block;
}

/* ---------- Main header ---------- */
.site-header {
    background: #fff;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 94px;
    gap: 24px;
}
.site-header__logo img { height: 66px; width: auto; }
.main-nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
}
.main-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 20px;
    font-weight: 400;
    color: var(--color-title-dark);
    line-height: 38px;
    transition: color .15s ease;
}
.main-nav__link:hover { color: var(--color-primary); }
.main-nav__arrow { width: 24px; height: 24px; transform: rotate(180deg); }
.mobile-toggle {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 0;
    padding: 8px;
}
.mobile-toggle span {
    display: block;
    height: 2px;
    background: #303030;
    border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(181deg, #f9faf9 2%, #fdfdfd 130%);
    padding: 20px 0 60px;
    min-height: 677px;
}
.hero__bg-ellipse {
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 1240px;
    height: 684px;
    pointer-events: none;
    z-index: 0;
}
.hero__bg-ellipse img { width: 100%; height: 100%; }
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 40px;
    min-height: 580px;
}
.hero__content { width: 613px; max-width: 100%; }
.hero__heading-block { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.hero__eyebrow {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 500;
    font-size: 42px;
    line-height: 1.1;
    color: var(--color-title);
    text-transform: uppercase;
    margin-bottom: 4px;
}
.hero__divider-line { width: 546px; height: 4px; max-width: 100%; margin: 4px 0; display: block; }
.hero__title { line-height: 1; }
.hero__title-gradient {
    display: inline-block;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 80px;
    line-height: 1.1;
    background: var(--gradient-primary-soft);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    white-space: nowrap;
}
.hero__lead {
    font-weight: 500;
    font-size: 28px;
    line-height: 36px;
    color: var(--color-secondary-text);
    margin-bottom: 40px;
}
.hero__actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero__visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.hero__image {
    max-width: 100%;
    width: 700px;
    height: auto;
    object-fit: contain;
}

/* ---------- Section titles ---------- */
.section-title {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 800;
    font-size: 52px;
    line-height: 1.1;
    color: var(--color-title);
}
.section-title--center { text-align: center; }

/* ---------- Pills ---------- */
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.pill--primary { background: var(--gradient-primary); }
.pill--teal { background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%), #00B2A9; color: var(--color-soneo-white); font-size: 24px; }
.pill--dark  { background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 100%), #000; color: var(--color-soneo-white); font-size: 24px; padding: 14px 28px; }

/* ---------- Inter-section gaps (matches Figma frame positioning) ---------- */
.clients { margin-top: 60px; }
.services, .why-soneo, .projects, .process, .testimonials, .partners, .cta-banner, .blog, .site-footer { margin-top: 100px; }

/* ---------- Clients section ---------- */
.clients {
    padding: 30px 0;
    background: #fff;
    min-height: 340px;
    display: flex;
    align-items: center;
}
.clients .container { width: 100%; }
.clients__title { font-size: 40px; margin-bottom: 24px; }
.clients__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0;
    height: 100px;
}
.clients__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    flex: 0 0 auto;
    filter: grayscale(0);
    transition: opacity .2s ease;
}
.clients__item img {
    max-height: 70px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

/* ---------- Services ---------- */
.services {
    padding: 30px 0 30px;
    background: #fff;
    min-height: 780px;
    display: flex;
    align-items: center;
}
.services__inner { display: flex; flex-direction: column; gap: 32px; align-items: center; width: 100%; }
.services__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.services .section-title { font-size: 44px; }
.services .section-title .text-gradient {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}
.services__grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    position: relative;
}
.services__grid::before,
.services__grid::after {
    content: '';
    position: absolute;
    background: rgba(0,0,0,0.08);
}
/* Horizontal divider between rows */
.services__grid::before {
    left: 1.5%;
    right: 1.5%;
    top: calc(50% - 8px);
    height: 1px;
}
.service-card {
    padding: 20px 28px;
    border-radius: 16px;
    position: relative;
    background: #fff;
    height: 240px;
}
.service-card:not(:nth-child(4n))::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 16px;
    bottom: 16px;
    width: 1px;
    background: rgba(0,0,0,0.08);
}
.service-card__icon { width: 32px; height: 32px; margin-bottom: 16px; }
.service-card__icon img { width: 100%; height: 100%; }
.service-card__title {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 26px;
    line-height: 32px;
    color: var(--color-title);
    margin-bottom: 22px;
    max-width: 230px;
}
.service-card__desc {
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 26px;
    color: var(--color-secondary-text);
    max-width: 230px;
}

/* ---------- Why SONEO + Stats ---------- */
.why-soneo {
    background: var(--gradient-stats);
    padding: 50px 0;
    min-height: 370px;
    display: flex;
    align-items: center;
}
.why-soneo__inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: nowrap;
    justify-content: space-between;
}
.why-soneo__copy { flex: 1 1 auto; max-width: 560px; min-width: 0; }
.why-soneo__title {
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
    text-transform: uppercase;
    color: var(--color-title);
}
.why-soneo__lead {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: var(--color-title);
    max-width: 540px;
    margin-bottom: 10px;
}
.stats {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 140px;
}
.stats__number {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 76px;
    line-height: 1;
    color: var(--color-teal);
    margin-bottom: 8px;
}
.stats__label {
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
    text-transform: capitalize;
    color: #000;
}
.stats__divider {
    width: 1px;
    height: 100px;
    background: rgba(0,0,0,0.12);
    flex-shrink: 0;
}

/* ---------- Projects ---------- */
.projects {
    padding: 40px 0;
    background: #fff;
    min-height: 626px;
    display: flex;
    align-items: center;
}
.projects__inner { display: flex; flex-direction: column; gap: 28px; width: 100%; }
.projects__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.projects .section-title { font-family: 'Sofia Sans Condensed', sans-serif; font-weight: 600; }
.projects__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 33px;
}
.project-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.project-card__image {
    aspect-ratio: 432 / 380;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 3px rgba(0,0,0,0.1);
    position: relative;
}
.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-card__title {
    font-weight: 700;
    font-size: 32px;
    line-height: 36px;
    color: var(--color-title);
}
.project-card__category {
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: var(--color-secondary-text);
}

/* ---------- Process ---------- */
.process {
    padding: 20px 0;
    background: #fff;
    min-height: 418px;
    display: flex;
    align-items: center;
}
.process__inner { display: flex; flex-direction: column; gap: 24px; align-items: center; width: 100%; }
.process__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
/* process title overridden above */
.process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
}
.process-card {
    background: #fff;
    border-radius: 16px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    box-shadow: 0 1px 2px rgba(233,72,1,0.05), 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.05);
    height: 180px;
    justify-content: center;
}
.process .section-title { font-weight: 800; font-size: 40px; line-height: 48px; }
.process-card__symbol {
    font-size: 72px;
    line-height: 1;
    display: inline-block;
}
.process-card__title {
    font-weight: 700;
    font-size: 24px;
    line-height: 28px;
    color: #000;
}
.process-card__desc {
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    color: var(--color-secondary-text);
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 20px 0;
    background: #fff;
    min-height: 356px;
    display: flex;
    align-items: center;
}
.testimonials__inner { display: flex; flex-direction: column; gap: 16px; align-items: center; width: 100%; }
.testimonials .section-title { font-weight: 800; font-size: 42px; line-height: 48px; max-width: 747px; }
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: calc(100% + 60px);
    margin-left: -30px;
    margin-right: -30px;
}
.testimonial-card {
    background: #fff;
    border: 1px solid #fff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 230px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05), 0 1px 6px rgba(0,0,0,0.1);
}
.testimonial-card__stars {
    display: inline-flex;
    gap: 2px;
    color: #FFB800;
    font-size: 18px;
    line-height: 1;
}
.testimonial-card__stars span { display: inline-block; }
.testimonial-card__date {
    font-weight: 500;
    font-size: 13px;
    color: #646464;
}
.testimonial-card__text {
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-title);
    flex: 1;
}
.testimonial-card__name {
    font-weight: 700;
    font-size: 15px;
    line-height: 18px;
    color: var(--color-title-dark);
}
.testimonial-card__role {
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
    color: var(--color-secondary-text);
    margin-top: 2px;
}

/* ---------- Partners ---------- */
.partners {
    padding: 20px 0;
    background: #fff;
    min-height: 251px;
    display: flex;
    align-items: center;
}
.partners__inner { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }
.partners .section-title { font-weight: 800; font-size: 40px; margin-top: 0; }
.partners__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 18px;
    width: 100%;
    margin-top: 6px;
}
.partner-card {
    background: linear-gradient(180deg, #fcfcfc 0%, #f1f1f1 100%);
    border: 1px solid rgba(232,232,232,0.53);
    border-radius: 8px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}
.partner-card__logo {
    max-height: 40px;
    max-width: 90%;
    width: auto;
    object-fit: contain;
}
/* TikTok ve LinkedIn PNG'lerinde etraf boşluğu fazla, ölçeklendir */
.partner-card__logo[src*="tiktok"] {
    transform: scale(1.8);
}
.partner-card__logo[src*="linkedin"] {
    transform: scale(3);
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    background: linear-gradient(180deg, rgba(246,242,229,0.2) 0%, #fdfdfd 107%);
    padding: 70px 0;
    overflow: hidden;
    text-align: center;
    min-height: 488px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 320px;
    background: linear-gradient(135deg, rgba(255,241,223,0.35), rgba(255,255,255,0));
    filter: blur(120px);
    pointer-events: none;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.cta-banner::before { left: -100px; }
.cta-banner::after  { right: -100px; background: linear-gradient(225deg, rgba(255,241,223,0.35), rgba(255,255,255,0)); }
.cta-banner__decoration {
    position: absolute;
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    width: 356px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}
.cta-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}
.cta-banner__eyebrow {
    font-weight: 700;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: 0.5px;
    color: #000;
}
.cta-banner__title {
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    font-style: italic;
    font-weight: 600;
    font-size: 133px;
    line-height: 1;
    color: var(--color-primary);
    margin: -10px 0;
}
.cta-banner__lead {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 18px;
}
.cta-banner .btn--with-arrow .btn__arrow {
    transform: rotate(180deg);
}

/* ---------- Blog ---------- */
.blog {
    padding: 50px 0;
    background: #fff;
    min-height: 785px;
    display: flex;
    align-items: center;
}
.blog__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; width: 100%; }
.blog__header { width: 100%; text-align: center; }
.blog .section-title { font-weight: 800; font-size: 52px; margin-bottom: 20px; }
.blog__subtitle {
    font-weight: 500;
    font-size: 28px;
    line-height: 32px;
    color: var(--color-secondary-text);
}
.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
}
.blog-card {
    background: #f4f2ed url('../images/blog/blog-bg.svg') center/cover no-repeat;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
    height: 420px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.blog-card__link {
    display: block;
    padding: 16px 17px;
    height: 100%;
    position: relative;
}
.blog-card__image {
    width: 100%;
    aspect-ratio: 363 / 220;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card__meta {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    color: var(--color-blog-meta);
    margin-bottom: 12px;
}
.blog-card__title {
    font-weight: 700;
    font-size: 22px;
    line-height: 26px;
    color: var(--color-title);
    max-width: 340px;
}
.blog-card__arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 32px;
    height: 36px;
}
.blog-card__arrow img { width: 100%; height: 100%; }
.blog__cta { background: var(--gradient-primary); border: 2px solid var(--color-primary); height: 72px; padding: 0 36px; font-size: 26px; }

/* ---------- Footer ---------- */
.site-footer {
    position: relative;
    background: var(--gradient-footer);
    color: #fff;
    padding: 60px 0 40px;
    overflow: hidden;
    min-height: 751px;
}
.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 0%, rgba(255,255,255,0.04), transparent 70%);
    pointer-events: none;
}
.site-footer__inner { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 40px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.3fr 1.8fr;
    gap: 40px;
    align-items: flex-start;
}
.footer-brand__logo img { width: 227px; height: auto; margin-bottom: 24px; }
.footer-brand__tagline {
    font-style: italic;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: var(--color-soneo-white);
    margin-bottom: 36px;
}
.footer-social { display: flex; gap: 11px; }
.footer-social__link {
    width: 54px;
    height: 54px;
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%), linear-gradient(186deg, #12131a 30%, #111520 90%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .15s ease, background .15s ease;
}
.footer-social__link:hover { transform: translateY(-2px); }
.footer-social__link img { width: 32px; height: 32px; }
.footer-col__title {
    font-weight: 700;
    font-size: 28px;
    line-height: 33px;
    color: #fff;
    margin-bottom: 14px;
}
.footer-col__list { display: flex; flex-direction: column; gap: 12px; }
.footer-col__list a, .footer-col__list span.footer-value {
    font-weight: 500;
    font-size: 20px;
    color: var(--color-footer-text);
    transition: color .15s ease;
}
.footer-col__list a:hover { color: #fff; }
.footer-label { font-weight: 400; font-size: 18px; color: var(--color-footer-text); }
.footer-actions {
    display: flex;
    gap: 9px;
    justify-content: flex-end;
}
.footer-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: #000;
    border-radius: 8px;
    padding: 9px 14px;
    font-weight: 500;
    font-size: 14px;
    transition: transform .15s ease;
}
.footer-action img { width: 23px; height: 23px; }
.footer-action { font-family: inherit; cursor: pointer; }
.footer-action--whatsapp { box-shadow: 0 1px 6px rgba(27,196,71,0.6); }
.footer-action--orange  { box-shadow: 0 1px 6px rgba(250,48,0,0.6); }
.footer-action--teal    { box-shadow: 0 1px 6px rgba(0,178,169,0.6); }
.footer-action:hover { transform: translateY(-1px); }
.footer-rule { border: 0; border-top: 1px solid rgba(255,255,255,0.12); margin: 0; }
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-copy {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    color: #fff;
}
.footer-copy__faded { color: rgba(255,255,255,0.6); }
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff;
    color: #0c0c0c;
    border-radius: 10px;
    padding: 11px 12px;
    width: 130px;
    height: 44px;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    user-select: none;
}
.lang-switcher__icon { width: 18px; height: 18px; }
.lang-switcher__caret { width: 18px; height: 18px; transform: rotate(90deg); }

/* ==========================================================================
   Inner pages — shared components
   ========================================================================== */
.page-hero {
    padding: 60px 0 50px;
    background: linear-gradient(180deg, #f7f7f7 0%, #fff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.page-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 60px;
    background: rgba(250, 48, 0, 0.08);
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
}
.page-hero__title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--color-title);
    max-width: 920px;
    margin: 0;
}
.page-hero__subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-secondary-text);
    max-width: 760px;
}
.page-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-secondary-text);
    flex-wrap: wrap;
}
.breadcrumb__link { color: var(--color-secondary-text); transition: color .15s ease; }
.breadcrumb__link:hover { color: var(--color-primary); }
.breadcrumb__sep { color: #c0c0c0; }
.breadcrumb__current { color: var(--color-title); font-weight: 600; }

/* Generic info card used across inner pages */
.info-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: transform .15s ease, box-shadow .15s ease;
}
.info-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.info-card__icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(250, 48, 0, 0.08); margin-bottom: 4px; }
.info-card__icon img { width: 22px; height: 22px; }
.info-card__title { font-size: 18px; font-weight: 700; color: var(--color-title); }
.info-card__desc  { font-size: 14px; color: var(--color-secondary-text); line-height: 1.45; }

.step-card { background: #fff; border-radius: 14px; padding: 22px 20px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); text-align: center; align-items: center; }
.step-card__num { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; margin-bottom: 6px; }
.step-card__title { font-size: 18px; font-weight: 700; color: var(--color-title); }
.step-card__desc  { font-size: 14px; color: var(--color-secondary-text); line-height: 1.45; }

.service-block { padding: 60px 0; }
.service-block--alt { background: #f7f9fa; }
.service-block__title { margin-bottom: 32px; }
.service-block__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-block__grid--3 { grid-template-columns: repeat(3, 1fr); }

.cta-strip { background: var(--gradient-stats); padding: 50px 0; }
.cta-strip__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; background: linear-gradient(135deg, #2bcfc1 0%, #00b2a9 100%); color: #fff; padding: 36px 44px; border-radius: 22px; }
.cta-strip__title { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.cta-strip__lead  { font-size: 16px; color: rgba(255,255,255,0.85); }
.cta-strip .btn--primary { background: #fff; color: var(--color-primary); }

/* Services list page */
.services-list { padding: 60px 0; background: #fff; }
.services-list__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-list-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 14px; padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; text-decoration: none; color: inherit; }
.service-list-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.06); border-color: rgba(250,48,0,0.2); }
.service-list-card__icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: rgba(250, 48, 0, 0.08); }
.service-list-card__icon img { width: 22px; height: 22px; }
.service-list-card__title { font-size: 18px; font-weight: 700; color: var(--color-title); }
.service-list-card__desc { font-size: 14px; color: var(--color-secondary-text); line-height: 1.4; }

/* Hakkımızda */
.about-strip { padding: 60px 0; background: #fff; }
.about-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.about-strip__item { display: flex; align-items: center; gap: 10px; background: #f7f9fa; padding: 14px 16px; border-radius: 12px; font-weight: 600; color: var(--color-title); font-size: 15px; }
.about-strip__icon { width: 24px; height: 24px; }
.about-pillars { padding: 30px 0 60px; background: #fff; }
.about-pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.about-pillar { background: #f7f9fa; border-radius: 14px; padding: 26px; }
.about-pillar h3 { font-size: 20px; margin-bottom: 8px; color: var(--color-title); }
.about-pillar p { color: var(--color-secondary-text); font-size: 15px; line-height: 1.5; }
.about-clients { padding: 60px 0; background: #fff; }
.about-clients__lead { text-align: center; font-size: 18px; color: var(--color-secondary-text); margin: 12px 0 30px; }
.about-clients__ctas { display: flex; gap: 14px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }
.about-clients__row { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.about-clients__images { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-clients__images img { width: 100%; height: 220px; object-fit: cover; border-radius: 14px; }
.about-clients__images img:nth-child(1) { grid-column: span 2; height: 260px; }

/* Ücretsiz Analiz */
.analysis { padding: 50px 0 60px; background: #fff; }
.analysis__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.analysis__stats { display: flex; gap: 24px; margin-bottom: 28px; flex-wrap: wrap; }
.stat-mini { display: flex; flex-direction: column; }
.stat-mini__num { color: var(--color-primary); font-size: 28px; font-weight: 800; }
.stat-mini__label { color: var(--color-secondary-text); font-size: 14px; }
.analysis__title { font-size: 36px; font-weight: 800; color: var(--color-title); margin-bottom: 14px; }
.analysis__copy { color: var(--color-secondary-text); font-size: 16px; line-height: 1.5; margin-bottom: 24px; }
.analysis__features { display: grid; gap: 18px; }
.feature-item strong { display: block; font-size: 16px; font-weight: 700; color: var(--color-title); margin-bottom: 4px; }
.feature-item p { color: var(--color-secondary-text); font-size: 14px; line-height: 1.45; }
.analysis__form-wrap { position: sticky; top: 110px; }
.analysis-form { background: #fff; border-radius: 18px; padding: 26px; box-shadow: 0 6px 24px rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.04); }
.analysis-form__title { font-size: 22px; font-weight: 800; color: var(--color-title); margin-bottom: 18px; line-height: 1.2; }

/* FAQ */
.faq { padding: 60px 0; background: #fff; }
.faq__list { max-width: 880px; margin: 36px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #f7f9fa; border-radius: 12px; padding: 0; transition: background .15s ease; }
.faq__item[open] { background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.faq__q { padding: 18px 22px; cursor: pointer; font-weight: 700; color: var(--color-title); font-size: 16px; display: flex; justify-content: space-between; align-items: center; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__caret { color: var(--color-primary); font-size: 22px; transition: transform .2s ease; }
.faq__item[open] .faq__caret { transform: rotate(45deg); }
.faq__a { padding: 0 22px 18px; color: var(--color-secondary-text); font-size: 15px; line-height: 1.55; }

/* İletişim sayfası */
.contact-page { padding: 60px 0; background: #fff; }
.contact-page__inner { display: grid; grid-template-columns: 360px 1fr; gap: 36px; align-items: start; }
.contact-info { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 18px; padding: 28px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.contact-info__title { font-size: 22px; font-weight: 800; color: var(--color-title); margin-bottom: 6px; }
.contact-info__lead { font-size: 14px; color: var(--color-secondary-text); margin-bottom: 22px; }
.contact-info__list { display: flex; flex-direction: column; gap: 18px; }
.contact-info__list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-info__icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.contact-info__icon img { width: 22px; height: 22px; }
.contact-info__list strong { display: block; font-size: 14px; color: var(--color-secondary-text); margin-bottom: 2px; }
.contact-info__list a, .contact-info__list span { color: var(--color-title); font-weight: 600; font-size: 15px; line-height: 1.4; }
.contact-info__list a:hover { color: var(--color-primary); }
.contact-form-wrap { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 18px; padding: 28px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.contact-form-wrap__title { font-size: 22px; font-weight: 800; color: var(--color-title); margin-bottom: 18px; }
.contact-form__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.chip { display: inline-flex; align-items: center; gap: 6px; background: #f7f9fa; padding: 8px 14px; border-radius: 20px; cursor: pointer; transition: background .15s ease, color .15s ease; font-size: 13px; }
.chip input { display: none; }
.chip input:checked + span { color: #fff; }
.chip:has(input:checked) { background: var(--color-primary); color: #fff; }

.map-section { padding: 30px 0 60px; background: #fff; }
.map-section__title { margin-bottom: 24px; }
.map-section__embed { border-radius: 18px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.map-section__embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Blog list page */
.blog-list-page { padding: 50px 0 60px; background: #fff; }
.blog-search { display: flex; max-width: 520px; margin: 0 auto 36px; background: #fff; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; padding: 6px; box-shadow: 0 2px 6px rgba(0,0,0,0.03); }
.blog-search input { flex: 1; padding: 10px 14px; border: 0; outline: 0; font-size: 15px; background: transparent; font-family: inherit; }
.blog-search button { width: 44px; height: 44px; border: 0; border-radius: 8px; background: var(--gradient-primary); display: flex; align-items: center; justify-content: center; cursor: pointer; }
.blog-search button img { width: 18px; height: 18px; filter: brightness(0) invert(1); }
.blog__grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Haberler */
.news-list { padding: 50px 0 60px; background: #fff; }
.news-list__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); transition: transform .15s ease, box-shadow .15s ease; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.news-card__link { display: block; color: inherit; text-decoration: none; }
.news-card__image { height: 200px; background-size: cover; background-position: center; }
.news-card__body { padding: 20px 22px; position: relative; }
.news-card__meta { font-size: 12px; color: var(--color-blog-meta); font-weight: 500; margin-bottom: 8px; }
.news-card__title { font-size: 17px; font-weight: 700; color: var(--color-title); line-height: 1.3; padding-right: 32px; }
.news-card__arrow { position: absolute; right: 22px; bottom: 22px; color: var(--color-primary); font-size: 20px; font-weight: 700; }

/* Post detail with sidebar */
.post-layout { padding: 50px 0 60px; background: #fff; }
.post-layout__inner { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: start; }
.post__cover { border-radius: 18px; overflow: hidden; margin-bottom: 30px; }
.post__cover img { width: 100%; height: 420px; object-fit: cover; display: block; }
.post__body { font-size: 16px; line-height: 1.7; color: var(--color-text-gray); }
.post__body h2 { font-size: 24px; font-weight: 800; color: var(--color-title); margin: 28px 0 14px; }
.post__body p { margin-bottom: 16px; }
.post__body ul { margin: 0 0 18px 22px; }
.post__body li { margin-bottom: 6px; }
.post__body blockquote { border-left: 4px solid var(--color-primary); padding: 14px 18px; background: #f7f9fa; border-radius: 0 10px 10px 0; font-style: italic; color: var(--color-title); margin: 24px 0; }
.post-aside { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 110px; }
.post-aside__block { background: #f7f9fa; border-radius: 16px; padding: 22px; }
.post-aside__title { font-size: 18px; font-weight: 800; color: var(--color-title); margin-bottom: 14px; }
.post-aside__toc, .post-aside__cats { display: flex; flex-direction: column; gap: 8px; }
.post-aside__toc a, .post-aside__cats a { color: var(--color-secondary-text); font-size: 14px; transition: color .15s ease; }
.post-aside__toc a:hover, .post-aside__cats a:hover { color: var(--color-primary); }
.post-aside__related { display: flex; flex-direction: column; gap: 14px; }
.post-aside__related-item { display: flex; gap: 12px; color: inherit; text-decoration: none; }
.post-aside__related-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; flex-shrink: 0; }
.post-aside__related-item span { display: block; font-size: 12px; color: var(--color-blog-meta); }
.post-aside__related-item strong { font-size: 14px; color: var(--color-title); font-weight: 700; display: block; line-height: 1.3; }

/* Referanslar */
.references-page { padding: 60px 0; background: #fff; }
.references-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.references-grid__item { display: flex; align-items: center; justify-content: center; height: 130px; padding: 18px; background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 14px; transition: transform .15s ease, box-shadow .15s ease; }
.references-grid__item:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0,0,0,0.06); }
.references-grid__item img { max-width: 80%; max-height: 70px; object-fit: contain; }

.about-clients--alt { padding: 60px 24px; background: linear-gradient(180deg, #fff 0%, #fef8f3 100%); border-radius: 24px; }

/* ============================================================
   Referanslar — 5x4 logo grid + collage CTA
   ============================================================ */
.references-list { padding: 30px 0 60px; background: #fff; }
.references-list__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.references-list__card {
    background: linear-gradient(180deg, #fff 0%, #f1f1f1 100%);
    border: 1px solid rgba(232,232,232,0.6);
    border-radius: 12px;
    height: 178px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    transition: transform .15s ease, box-shadow .15s ease;
}
.references-list__card:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.06); }
.references-list__card img { max-width: 70%; max-height: 80%; object-fit: contain; }

.brands-cta { padding: 60px 0; background: #fff; }
.brands-cta__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 50px; border-radius: 22px; background: linear-gradient(135deg, #fffaf5 0%, #f7f9fa 100%); position: relative; overflow: hidden; }
.brands-cta__media { position: relative; height: 340px; }
.brands-cta__img { position: absolute; width: 230px; height: 230px; border-radius: 16px; object-fit: cover; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.brands-cta__img--1 { left: 0;   top: 50px; transform: rotate(-8deg); z-index: 1; }
.brands-cta__img--2 { left: 130px; top: 0;  transform: rotate(4deg);  z-index: 2; }
.brands-cta__img--3 { left: 260px; top: 60px; transform: rotate(10deg); z-index: 3; }
.brands-cta__floating { width: 100%; }
.brands-cta__copy { display: flex; flex-direction: column; gap: 14px; }
.brands-cta__title { font-size: 36px; font-weight: 800; color: var(--color-title); line-height: 1.15; }
.brands-cta__lead { color: var(--color-secondary-text); font-size: 16px; line-height: 1.5; }
.brands-cta__ctas { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }

/* ============================================================
   İletişim sayfası — circular contact cards + form chips
   ============================================================ */
.contact-page { padding: 50px 0 60px; background: #fff; }
.contact-page__inner { display: grid; grid-template-columns: 514px 1fr; gap: 36px; align-items: start; }
.contact-info { background: #fff; border-radius: 18px; padding: 28px; }
.contact-info__title { font-size: 28px; font-weight: 800; color: var(--color-title); margin-bottom: 6px; }
.contact-info__lead { color: var(--color-secondary-text); font-size: 14px; margin-bottom: 22px; }
.contact-info__list { display: flex; flex-direction: column; gap: 16px; }
.contact-info__row { display: flex; align-items: center; gap: 18px; padding: 22px; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; box-shadow: 0 1px 4px rgba(0,0,0,0.03); }
.contact-info__icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info__icon--orange { background: rgba(250,48,0,0.1); }
.contact-info__icon--teal { background: rgba(0,178,169,0.12); }
.contact-info__icon img { width: 26px; height: 26px; }
.contact-info__label { display: block; font-size: 12px; font-weight: 700; color: var(--color-secondary-text); letter-spacing: 1px; margin-bottom: 4px; }
.contact-info__value { font-size: 16px; font-weight: 600; color: var(--color-title); }
.contact-info__value:hover { color: var(--color-primary); }

.contact-form-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 22px; padding: 32px; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.contact-form-card__title { font-size: 28px; font-weight: 800; color: var(--color-title); margin-bottom: 18px; }
.contact-form__legal { font-size: 13px; color: var(--color-secondary-text); text-align: center; margin-top: 8px; }
.contact-form__chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 4px; }
.chip { display: flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid rgba(0,0,0,0.1); border-radius: 28px; background: #fff; cursor: pointer; transition: all .15s ease; font-size: 13px; }
.chip:has(input:checked) { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.chip:hover { border-color: var(--color-primary); }
.chip input { display: none; }

/* ============================================================
   Blog & Yazı detay (2-col + sidebar)
   ============================================================ */
.post-page { padding: 30px 0 60px; background: #fff; }
.post-page__inner { display: grid; grid-template-columns: 1fr 343px; gap: 60px; align-items: start; }
.post-article__category { display: inline-block; background: rgba(250,48,0,0.1); color: var(--color-primary); padding: 6px 14px; border-radius: 20px; font-weight: 700; font-size: 12px; margin-bottom: 14px; }
.post-article__title { font-size: 36px; font-weight: 800; color: var(--color-title); line-height: 1.2; margin-bottom: 18px; }
.post-article__lead { font-size: 17px; line-height: 1.6; color: var(--color-secondary-text); margin-bottom: 14px; }
.post-article__date { font-size: 13px; color: var(--color-secondary-text); margin-bottom: 22px; }
.post-article__cover { border-radius: 16px; overflow: hidden; margin-bottom: 26px; }
.post-article__cover img { width: 100%; height: 440px; object-fit: cover; display: block; }
.post-article h2 { font-size: 24px; font-weight: 800; color: var(--color-title); margin: 26px 0 14px; }
.post-article p { font-size: 16px; line-height: 1.7; color: var(--color-text-gray); margin-bottom: 16px; }
.post-article ul { margin: 0 0 18px 22px; }
.post-article li { margin-bottom: 6px; color: var(--color-text-gray); }
.post-article blockquote { border-left: 4px solid var(--color-primary); padding: 14px 18px; background: #f7f9fa; border-radius: 0 10px 10px 0; font-style: italic; color: var(--color-title); margin: 24px 0; }

.post-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 110px; }
.post-sidebar__block { background: #f9fafb; border: 1px solid rgba(0,0,0,0.04); border-radius: 16px; padding: 22px; }
.post-sidebar__title { font-size: 18px; font-weight: 800; color: var(--color-title); margin-bottom: 14px; }
.post-sidebar__toc { display: flex; flex-direction: column; gap: 10px; padding-left: 18px; }
.post-sidebar__toc li { color: var(--color-secondary-text); font-size: 13px; }
.post-sidebar__toc a { color: inherit; }
.post-sidebar__toc a:hover { color: var(--color-primary); }
.post-sidebar__cats { display: flex; flex-direction: column; gap: 4px; }
.post-sidebar__cats a { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.05); font-size: 14px; color: var(--color-title); }
.post-sidebar__cats a:hover { color: var(--color-primary); }
.post-sidebar__cats a:last-child { border-bottom: 0; }
.post-sidebar__chev { color: var(--color-primary); font-weight: 700; }
.post-sidebar__related { display: flex; flex-direction: column; gap: 12px; }
.post-sidebar__related-item { display: flex; gap: 12px; align-items: flex-start; }
.post-sidebar__related-item img { width: 92px; height: 68px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.post-sidebar__related-date { font-size: 11px; color: var(--color-blog-meta); }
.post-sidebar__related-item strong { font-size: 13px; line-height: 1.3; color: var(--color-title); font-weight: 700; display: block; margin-top: 4px; }

/* Blog list page v2 */
.blog-page { padding: 30px 0 60px; background: #fff; }
.blog-page__toolbar { display: flex; justify-content: flex-end; margin-bottom: 28px; }
.blog-page__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-page-card { background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 18px; overflow: hidden; transition: transform .15s ease, box-shadow .15s ease; }
.blog-page-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.blog-page-card__link { display: block; color: inherit; }
.blog-page-card__image { aspect-ratio: 359/238; overflow: hidden; }
.blog-page-card__image img { width: 100%; height: 100%; object-fit: cover; }
.blog-page-card__meta-row { display: flex; justify-content: space-between; padding: 14px 18px 6px; align-items: center; }
.blog-page-card__category { background: rgba(250,48,0,0.1); color: var(--color-primary); font-weight: 700; padding: 4px 10px; border-radius: 14px; font-size: 11px; }
.blog-page-card__date { color: var(--color-secondary-text); font-size: 12px; }
.blog-page-card__title { padding: 0 18px; font-size: 18px; font-weight: 800; color: var(--color-title); line-height: 1.3; margin-bottom: 8px; }
.blog-page-card__excerpt { padding: 0 18px; font-size: 13px; color: var(--color-secondary-text); line-height: 1.5; margin-bottom: 14px; }
.blog-page-card__read { padding: 0 18px 16px; display: inline-flex; color: var(--color-primary); font-weight: 700; font-size: 13px; gap: 4px; }

/* Haberler page */
.news-page { padding: 30px 0 60px; background: #fff; }
.news-page__toolbar { display: flex; justify-content: flex-end; margin-bottom: 28px; }
.news-page__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-page-card { background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,0.05); transition: transform .15s ease, box-shadow .15s ease; }
.news-page-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.news-page-card__link { display: block; color: inherit; }
.news-page-card__image { height: 240px; background-size: cover; background-position: center; }
.news-page-card__body { padding: 20px 22px; position: relative; }
.news-page-card__meta { font-size: 12px; color: var(--color-blog-meta); margin-bottom: 8px; font-weight: 500; }
.news-page-card__title { font-size: 17px; font-weight: 700; color: var(--color-title); line-height: 1.3; padding-right: 32px; }
.news-page-card__arrow { position: absolute; right: 22px; bottom: 22px; color: var(--color-primary); font-size: 22px; font-weight: 700; }

/* Haber detay */
.haber-detay { padding: 30px 0 50px; background: #fff; max-width: 1000px; margin: 0 auto; }
.haber-detay__pill { display: inline-block; background: var(--gradient-primary); color: #fff; padding: 6px 16px; border-radius: 20px; font-weight: 700; font-size: 13px; margin-bottom: 18px; }
.haber-detay__cover { width: 100%; height: 360px; background-size: cover; background-position: center; border-radius: 18px; margin-bottom: 24px; }
.haber-detay__title { font-size: 36px; font-weight: 800; color: var(--color-title); line-height: 1.2; margin-bottom: 12px; }
.haber-detay__meta { font-size: 14px; color: var(--color-secondary-text); margin-bottom: 28px; }
.haber-detay__body p { font-size: 16px; line-height: 1.7; color: var(--color-text-gray); margin-bottom: 18px; }
.related-news { padding: 30px 0 60px; background: #fff; }
.related-news__title { margin-bottom: 28px; }
.related-news__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.news-page-card--sm .news-page-card__image { height: 180px; }
.news-page-card--sm .news-page-card__title { font-size: 15px; }

/* ============================================================
   Hakkımızda — dark hero, platforms strip, illustrated cards
   ============================================================ */
.about-hero { padding: 50px 0 60px; background-size: cover; background-position: center; color: #fff; position: relative; }
.about-hero__inner { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; max-width: 720px; }
.breadcrumb--light, .breadcrumb--light a, .breadcrumb--light .breadcrumb__current { color: rgba(255,255,255,0.85); }
.breadcrumb--light .breadcrumb__sep { color: rgba(255,255,255,0.5); }
.page-hero__eyebrow--dark { background: rgba(255,255,255,0.15); color: #fff; backdrop-filter: blur(8px); }
.about-hero__title { font-family: 'Sofia Sans', sans-serif; font-weight: 800; font-size: 64px; color: #fff; line-height: 1.05; text-transform: uppercase; }
.about-hero__body p { color: rgba(255,255,255,0.85); font-size: 15px; line-height: 1.6; margin-bottom: 12px; max-width: 660px; }
.about-hero__platforms { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.platform-card { display: flex; align-items: center; gap: 8px; padding: 10px 16px; background: rgba(255,255,255,0.1); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; color: #fff; font-weight: 700; font-size: 14px; }
.platform-card img { width: 22px; height: 22px; object-fit: contain; }

.feature-cards { padding: 30px 0 60px; background: #fff; }
.feature-cards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card { background: #fff; border: 1px solid rgba(0,0,0,0.05); border-radius: 18px; padding: 24px; min-height: 280px; box-shadow: 0 1px 4px rgba(0,0,0,0.03); }
.feature-card h3 { font-size: 20px; font-weight: 800; color: var(--color-title); margin-bottom: 18px; }
.feature-card__media { position: relative; min-height: 180px; }
.feature-card--chart .feature-card__media img { width: 100%; height: 180px; object-fit: contain; }
.feature-card__chip { position: absolute; background: #fff; padding: 8px 12px; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); font-size: 11px; font-weight: 600; }
.feature-card__chip strong { display: block; font-size: 18px; }
.feature-card__chip em { color: #00b2a9; font-style: normal; font-weight: 700; }
.feature-card__chip--orange { top: 20px; left: 10px; border-left: 3px solid var(--color-primary); }
.feature-card__chip--teal { bottom: 12px; right: 0; border-left: 3px solid #00b2a9; }
.feature-card__media--posts { display: flex; gap: 8px; position: relative; padding-top: 12px; }
.feature-card__post { width: 60%; height: 160px; object-fit: cover; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.feature-card__post--1 { position: absolute; top: 0; left: 0; width: 70%; z-index: 1; }
.feature-card__post--2 { position: absolute; top: 30px; right: 0; width: 55%; height: 120px; z-index: 2; }
.feature-card__post--3 { display: none; }
.bar-chart { display: flex; gap: 8px; align-items: flex-end; justify-content: space-between; height: 160px; padding: 0 6px; }
.bar-chart__col { display: flex; flex-direction: column; align-items: center; gap: 8px; flex: 1; }
.bar-chart__bar { width: 100%; background: var(--gradient-primary); border-radius: 6px 6px 0 0; min-height: 8px; }
.bar-chart__col em { font-style: normal; font-size: 11px; color: var(--color-secondary-text); font-weight: 600; }

.about-services { padding: 60px 0; background: #fff; }
.about-services__title { margin-bottom: 8px; }
.about-services__lead { text-align: center; color: var(--color-secondary-text); font-size: 16px; margin-bottom: 36px; max-width: 700px; margin-left: auto; margin-right: auto; }
.about-services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.about-service-tile { display: flex; align-items: center; gap: 12px; padding: 18px 22px; background: #f7f9fa; border-radius: 12px; font-weight: 700; color: var(--color-title); font-size: 15px; }
.about-service-tile img { width: 26px; height: 26px; }

/* ============================================================
   Ücretsiz Analiz — dual hero + form card + reasons + FAQ
   ============================================================ */
.analyze-hero { padding: 30px 0 50px; background: #fff; }
.analyze-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.analyze-hero__copy { padding-top: 30px; }
.analyze-hero__title { font-size: 48px; font-weight: 800; color: var(--color-title); line-height: 1.15; margin-bottom: 16px; }
.analyze-hero__lead { font-size: 18px; color: var(--color-secondary-text); line-height: 1.5; margin-bottom: 28px; max-width: 480px; }
.analyze-stats { display: flex; gap: 22px; margin-bottom: 24px; }
.analyze-stat { display: flex; flex-direction: column; }
.analyze-stat span { font-size: 32px; font-weight: 800; color: var(--color-primary); line-height: 1; }
.analyze-stat em { font-style: normal; color: var(--color-secondary-text); font-size: 14px; }
.analyze-hero__badge { display: inline-block; background: rgba(0,178,169,0.1); color: #00b2a9; padding: 10px 16px; border-radius: 30px; font-weight: 600; font-size: 14px; }
.analyze-form-card { position: relative; background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 22px; padding: 32px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); }
.analyze-form-card__badge { position: absolute; top: -12px; right: 24px; background: var(--gradient-primary); color: #fff; font-weight: 800; padding: 6px 14px; border-radius: 20px; font-size: 12px; letter-spacing: 1px; }
.analyze-form-card__title { font-size: 22px; font-weight: 800; color: var(--color-title); margin-bottom: 4px; }
.analyze-form-card__lead { font-size: 14px; color: var(--color-secondary-text); margin-bottom: 18px; }

.reason-block { padding: 60px 0; background: #f7f9fa; }
.reason-block__inner { text-align: center; }
.reason-block__title { font-size: 36px; font-weight: 800; color: var(--color-title); margin-bottom: 8px; }
.reason-block__lead { font-size: 16px; color: var(--color-secondary-text); max-width: 700px; margin: 0 auto 36px; line-height: 1.5; }
.reason-block__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.reason-card { background: #fff; border-radius: 16px; padding: 28px; text-align: center; box-shadow: 0 2px 6px rgba(0,0,0,0.04); }
.reason-card__emoji { font-size: 36px; margin-bottom: 14px; }
.reason-card h3 { font-size: 18px; font-weight: 800; color: var(--color-title); margin-bottom: 8px; }
.reason-card p { color: var(--color-secondary-text); font-size: 14px; }

.analyze-includes { padding: 60px 0; background: #fff; }
.analyze-includes__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; margin-top: 36px; }

.brands-strip { padding: 50px 0; background: #fff; text-align: center; }
.brands-strip__row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin: 30px 0 20px; }
.brand-pill { background: #f7f9fa; padding: 12px 22px; border-radius: 30px; font-weight: 600; color: var(--color-title); font-size: 14px; }
.brands-strip__more { color: var(--color-primary); font-weight: 700; }

.cta-final { padding: 60px 0; background: #fff; }
.cta-final__inner { text-align: center; background: linear-gradient(135deg, #fffaf5 0%, #fef4e8 100%); padding: 50px 32px; border-radius: 22px; }
.cta-final__title { font-size: 32px; font-weight: 800; color: var(--color-title); margin-bottom: 8px; }
.cta-final__lead { font-size: 16px; color: var(--color-secondary-text); margin-bottom: 28px; }
.cta-final__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.faq__lead { text-align: center; color: var(--color-secondary-text); font-size: 16px; margin-top: 8px; }

/* ============================================================
   Hizmetler — 10 service cards with bullets + Diğer Hizmetler
   ============================================================ */
.services-main { padding: 50px 0; background: #fff; }
.services-main__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.services-main__grid--three { grid-template-columns: repeat(3, 1fr); }
.service-detail-card { background: #fff; border: 1px solid rgba(0,0,0,0.06); border-radius: 16px; padding: 24px; color: inherit; display: flex; flex-direction: column; gap: 12px; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.service-detail-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); border-color: rgba(250,48,0,0.25); }
.service-detail-card__icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 12px; background: rgba(250,48,0,0.08); }
.service-detail-card__icon img { width: 24px; height: 24px; }
.service-detail-card__title { font-size: 18px; font-weight: 800; color: var(--color-title); }
.service-detail-card__bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.service-detail-card__bullets li { position: relative; padding-left: 14px; font-size: 13px; color: var(--color-secondary-text); line-height: 1.45; }
.service-detail-card__bullets li::before { content: '•'; color: var(--color-primary); position: absolute; left: 0; font-weight: 700; }

.services-other { padding: 0 0 60px; background: #fff; }
.services-other .section-title { margin-bottom: 28px; }

/* Map (already exists but ensure spacing) */
.map-section { padding: 30px 0 60px; background: #fff; }
.map-section__embed { border-radius: 18px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.map-section__embed iframe { width: 100%; height: 420px; border: 0; display: block; }
.map-section__title { margin-bottom: 24px; text-align: center; }

/* ==========================================================================
   Contact Modal
   ========================================================================== */
.no-scroll { overflow: hidden; }
.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.contact-modal--open { display: flex; }
.contact-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 18, 28, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: contactFade .2s ease;
}
.contact-modal__dialog {
    position: relative;
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    padding: 28px 28px 22px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.25);
    max-height: 90vh;
    overflow-y: auto;
    animation: contactPop .25s cubic-bezier(.2,.7,.2,1);
}
.contact-modal__close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: #f3f3f3;
    font-size: 22px;
    line-height: 1;
    color: #303030;
    cursor: pointer;
    transition: background .15s ease;
}
.contact-modal__close:hover { background: #e6e6e6; }
.contact-modal__head { margin-bottom: 18px; padding-right: 32px; }
.contact-modal__title {
    font-family: 'Sofia Sans', sans-serif;
    font-weight: 800;
    font-size: 28px;
    line-height: 1.15;
    color: var(--color-title);
    margin-bottom: 6px;
}
.contact-modal__lead {
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-secondary-text);
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form__field { display: flex; flex-direction: column; gap: 6px; font-size: 13px; font-weight: 600; color: var(--color-title); }
.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 11px 13px;
    font-family: inherit;
    font-size: 15px;
    color: var(--color-title);
    background: #fafafa;
    transition: border-color .15s ease, background .15s ease;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus {
    outline: 0;
    border-color: var(--color-primary);
    background: #fff;
}
.contact-form__field textarea { resize: vertical; min-height: 90px; }
.contact-form__honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
}
.contact-form__submit {
    margin-top: 4px;
    align-self: stretch;
    width: 100%;
    height: 50px;
    font-size: 18px;
}
.contact-form__submit:disabled { opacity: 0.7; cursor: progress; }
.contact-form__status {
    margin: 0;
    font-size: 14px;
    text-align: center;
    min-height: 18px;
}
.contact-form__status--ok  { color: #07835c; }
.contact-form__status--err { color: #b3261e; }

@keyframes contactFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes contactPop {
    from { opacity: 0; transform: translateY(12px) scale(.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 480px) {
    .contact-modal__dialog { padding: 22px 18px 18px; border-radius: 16px; }
    .contact-modal__title { font-size: 22px; }
    .contact-form__row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1280px) {
    .partners__grid { grid-template-columns: repeat(4, 1fr); }
    .references-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1280px) {
    .references-list__grid { grid-template-columns: repeat(3, 1fr); }
    .related-news__grid { grid-template-columns: repeat(2, 1fr); }
    .analyze-includes__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
    .services-main__grid, .services-main__grid--three { grid-template-columns: repeat(2, 1fr); }
    .contact-page__inner { grid-template-columns: 1fr; }
    .post-page__inner { grid-template-columns: 1fr; }
    .post-sidebar { position: static; }
    .analyze-hero__inner { grid-template-columns: 1fr; }
    .brands-cta__inner { grid-template-columns: 1fr; }
    .reason-block__grid { grid-template-columns: 1fr; }
    .analyze-includes__grid { grid-template-columns: repeat(2, 1fr); }
    .references-list__grid { grid-template-columns: repeat(3, 1fr); }
    .feature-cards__grid { grid-template-columns: 1fr; }
    .about-services__grid { grid-template-columns: repeat(2, 1fr); }
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__content { max-width: 100%; margin-inline: auto; }
    .hero__heading-block { align-items: center; }
    .hero__divider-line { display: none; }
    .hero__actions { justify-content: center; }
    .hero__visual { justify-content: center; }
    .hero__image { width: 100%; max-width: 600px; }
    .why-soneo__inner { justify-content: center; text-align: center; flex-direction: column; }
    .why-soneo__copy { text-align: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .services__grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:not(:nth-child(4n))::after { display: none; }
    .service-card:not(:nth-child(2n))::after { content:''; position: absolute; right: -12px; top: 16px; bottom: 16px; width: 1px; background: rgba(0,0,0,0.08); }
    .projects__grid { grid-template-columns: repeat(2, 1fr); }
    .process__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
    .services-list__grid { grid-template-columns: repeat(3, 1fr); }
    .service-block__grid { grid-template-columns: repeat(2, 1fr); }
    .service-block__grid--3 { grid-template-columns: repeat(2, 1fr); }
    .about-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .about-pillars__grid { grid-template-columns: 1fr; }
    .analysis__inner { grid-template-columns: 1fr; }
    .analysis__form-wrap { position: static; }
    .contact-page__inner { grid-template-columns: 1fr; }
    .post-layout__inner { grid-template-columns: 1fr; }
    .post-aside { position: static; }
    .about-clients__row { grid-template-columns: 1fr; }
    .about-clients__images img { height: 180px; }
    .about-clients__images img:nth-child(1) { height: 220px; }
    .references-grid { grid-template-columns: repeat(3, 1fr); }
    .news-list__grid { grid-template-columns: repeat(2, 1fr); }
    .blog__grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
    .references-list__grid { grid-template-columns: repeat(2, 1fr); }
    .references-list__card { height: 140px; }
    .news-page__grid, .blog-page__grid { grid-template-columns: 1fr; }
    .related-news__grid { grid-template-columns: 1fr; }
    .contact-form__chips { grid-template-columns: 1fr 1fr; }
    .brands-cta__media { height: 220px; }
    .brands-cta__img { width: 160px; height: 160px; }
    .brands-cta__img--1 { left: 0; }
    .brands-cta__img--2 { left: 80px; }
    .brands-cta__img--3 { left: 160px; }
    .about-hero__title { font-size: 40px; }
    .feature-card { min-height: auto; }
    .analyze-hero__title { font-size: 32px; }
    .analyze-includes__grid { grid-template-columns: 1fr; }
    .haber-detay__title { font-size: 26px; }
    .haber-detay__cover { height: 240px; }
    .post-article__title { font-size: 26px; }
    .post-article__cover img { height: 260px; }
    .services-main__grid, .services-main__grid--three { grid-template-columns: 1fr; }
    .about-services__grid { grid-template-columns: 1fr; }

    /* Top utility bar mobilde (Figma: tagline solda 2-satır, actions sağda stacked) */
    .top-bar { display: block; }
    .top-bar__inner {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        height: auto;
        gap: 16px;
        padding: 12px 0;
        flex-wrap: nowrap;
    }
    .top-bar__tagline {
        font-size: 14px;
        line-height: 18px;
        max-width: 185px;
        flex: 0 1 auto;
    }
    .top-bar__actions {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        flex: 0 0 auto;
    }
    .top-bar__link { font-size: 13px; gap: 6px; }
    .top-bar__divider { display: none; }
    .icon-24 { width: 14px; height: 14px; }

    .btn--header { display: none; }
    .mobile-toggle { display: inline-flex; }
    .site-header__inner { height: 54px; gap: 12px; padding-left: 25px; padding-right: 25px; }
    .site-header__logo, .site-header__logo picture { display: inline-block; }
    .site-header__logo img { height: 28px; width: 63.7px; display: block; }
    .mobile-toggle { width: 24px; height: 24px; padding: 0; }
    .mobile-toggle span { height: 1.5px; }

    /* Slide-in mobile menu */
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        bottom: 0;
        right: 0;
        left: auto;
        width: min(86vw, 360px);
        background: #fff;
        z-index: 200;
        box-shadow: -8px 0 24px rgba(0,0,0,0.12);
        padding: 80px 26px 24px;
        overflow-y: auto;
    }
    body.menu-open .main-nav,
    .main-nav.main-nav--open { display: block !important; }
    .main-nav__list { flex-direction: column; gap: 4px; align-items: stretch; }
    .main-nav__item { width: 100%; }
    .main-nav__link { font-size: 18px; padding: 12px 4px; border-bottom: 1px solid rgba(0,0,0,0.06); width: 100%; line-height: 1.4; }
    .main-nav__arrow { transform: rotate(90deg); }

    .mobile-toggle { position: relative; z-index: 210; }
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.45);
        z-index: 150;
        pointer-events: none;
    }
    .main-nav__link { pointer-events: auto; cursor: pointer; display: block; }
    .main-nav a { display: block; color: inherit; text-decoration: none; }

    .section-title { font-size: 28px; line-height: 1.2; }

    /* Mobile Hero (Figma 390x559) */
    .hero { padding: 30px 0 30px; min-height: auto; }
    .hero__bg-ellipse { display: none; }
    .hero__content { width: 100%; max-width: 100%; gap: 20px; align-items: center; text-align: center; }
    .hero__inner { min-height: auto; }
    .hero__heading-block { gap: 4px; margin-bottom: 12px; align-items: center; text-align: center; }
    .hero__eyebrow {
        font-family: 'Sofia Sans Condensed', sans-serif;
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;
        text-transform: uppercase;
    }
    .hero__divider-line { display: block; width: 261px; height: 4px; margin: 4px auto; }
    .hero__title-gradient { font-size: 32px; line-height: 1.1; white-space: normal; margin-top: 6px; }
    .hero__lead { font-size: 16px; line-height: 20px; margin-bottom: 24px; text-align: center; }
    .hero__actions { gap: 6px; flex-wrap: nowrap; width: 100%; justify-content: center; }
    .hero__actions .btn--xl { height: 44px; min-width: 0; flex: 1; max-width: 168px; font-size: 14px; padding: 0 12px; border-radius: 8px; }
    .hero__visual { margin-top: 24px; }
    .hero__image { width: 361px; max-width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; border-radius: 8px; }
    .why-soneo { min-height: auto; padding: 30px 0; }
    .why-soneo__inner { flex-direction: column; gap: 24px; text-align: center; }
    .why-soneo__copy { text-align: center; }
    .why-soneo__title { font-size: 32px; }
    .why-soneo__lead { font-size: 14px; line-height: 22px; }
    .stats { flex-direction: column; gap: 28px; width: 100%; }
    .stats__item { min-width: 0; }
    .stats__number { font-size: 40px; }
    .stats__label { font-size: 22px; }
    .stats__divider { width: 80%; height: 1px; margin: 0 auto; }
    .clients { min-height: auto; padding: 30px 0; }
    .clients__title { font-size: 22px; margin-bottom: 20px; text-align: center; }
    .clients__row { justify-content: center; gap: 14px; flex-wrap: wrap; height: auto; }
    .clients__item { height: 50px; }
    .clients__item img { max-height: 36px; max-width: 86px; }
    /* Mobile partners — horizontal scroll, 97x34 chips */
    .partners { min-height: auto; padding: 30px 0; overflow: hidden; }
    .partners__inner { gap: 16px; }
    .partners .section-title { font-size: 24px; line-height: 28px; }
    .partners .pill--dark { font-size: 16px; padding: 6px 18px; }
    .partners__grid {
        display: flex;
        grid-template-columns: none;
        gap: 6px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
        flex-wrap: nowrap;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    .partner-card { flex: 0 0 97px; height: 34px; padding: 4px; border-radius: 4px; }
    .partner-card__logo { max-height: 22px; }
    .partner-card__logo[src*="linkedin"] { transform: scale(2); }
    .partner-card__logo[src*="tiktok"] { transform: scale(1.3); }

    /* Mobile services 2-col grid (161x165) */
    .services { min-height: auto; padding: 30px 0; }
    .services__inner { gap: 30px; }
    .services .section-title { font-size: 24px; line-height: 32px; }
    .services__grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
    .service-card { height: 165px; padding: 8px; }
    .service-card::after,
    .service-card:not(:nth-child(2n))::after { display: none !important; }
    .services__grid::before, .services__grid::after { display: none; }
    .service-card__icon { width: 24px; height: 24px; margin: 0 auto 12px; }
    .service-card__title { font-family: Arial, sans-serif; font-size: 18px; line-height: 23px; max-width: none; text-align: center; margin-bottom: 12px; }
    .service-card__desc  { font-family: Arial, sans-serif; font-size: 14px; line-height: 19px; max-width: none; text-align: center; }
    /* Hizmetlerimiz pill mobile */
    .services .pill--primary { font-size: 14px; padding: 6px 18px; }

    /* Mobile projects (horizontal scroll, 270x263 cards) */
    .projects { min-height: auto; padding: 30px 0; overflow: hidden; }
    .projects .section-title { font-size: 24px; line-height: 28px; }
    .projects__inner { gap: 24px; }
    .projects__header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .projects__header .btn--primary { width: 100%; height: 44px; font-size: 16px; padding: 0 24px; background: #FA3000; border-radius: 8px; }
    .projects__grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 270px;
        grid-template-columns: none;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
        gap: 20px;
        -webkit-overflow-scrolling: touch;
    }
    .project-card { scroll-snap-align: start; gap: 12px; width: 270px; }
    .project-card__image { aspect-ratio: 270/263; border-radius: 6px; }
    .project-card__title { font-size: 24px; line-height: 28px; }
    .project-card__category { font-size: 18px; line-height: 20px; }

    /* Mobile process (vertical stack 180h cards) */
    .process { min-height: auto; padding: 30px 0; }
    .process__inner { gap: 24px; }
    .process__grid { grid-template-columns: 1fr; gap: 16px; }
    .process-card { height: auto; min-height: 180px; padding: 10px; border-radius: 15.389px; box-shadow: 0 1px 2px rgba(233,72,1,0.05), 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.05); }
    .process .section-title { font-size: 24px; line-height: 30px; }
    .process-card__symbol { font-size: 71.7px; line-height: 79.7px; }
    .process-card__title { font-size: 24px; line-height: 28px; }
    .process-card__desc { font-size: 15px; line-height: 19px; }
    /* Süreç pill */
    .process .pill--teal { font-size: 16px; padding: 6px 18px; }

    /* Mobile testimonials (horizontal scroll, 318x218 cards) */
    .testimonials { min-height: auto; padding: 30px 0; overflow: hidden; }
    .testimonials__inner { gap: 24px; }
    .testimonials .section-title { font-size: 28px; line-height: 34px; max-width: none; }
    .testimonials__grid {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: 318px;
        grid-template-columns: none;
        gap: 16px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        padding-bottom: 8px;
        margin: 0;
        -webkit-overflow-scrolling: touch;
    }
    .testimonial-card { width: 318px; height: 218px; min-height: auto; padding: 15px; border-radius: 15.665px; scroll-snap-align: start; }
    .testimonial-card__stars { font-size: 18px; }
    .testimonial-card__text { font-size: 14px; line-height: 18px; -webkit-line-clamp: 4; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }
    .testimonial-card__date { font-size: 12px; }
    .testimonial-card__name { font-size: 14px; }
    .testimonial-card__role { font-size: 11px; }

    /* Mobile CTA banner — SONEO 60px */
    .cta-banner { min-height: auto; padding: 40px 0; }
    .cta-banner__inner { gap: 10px; }
    .cta-banner__eyebrow { font-size: 24px; font-weight: 700; }
    .cta-banner__title { font-size: 60px; line-height: 79px; }
    .cta-banner__lead { font-size: 16px; font-weight: 400; }
    .cta-banner__decoration { width: 240px; opacity: 0.4; }
    .cta-banner .btn--xl { height: 44px; font-size: 16px; min-width: 0; width: 314px; max-width: 100%; border: 2px solid var(--color-primary); border-radius: 8px; }

    /* Mobile blog — horizontal scroll cards 320x430 */
    .blog { min-height: auto; padding: 30px 0; overflow: hidden; }
    .blog__inner { gap: 24px; }
    .blog__header { text-align: left; }
    .blog .section-title { font-size: 24px; line-height: 28px; margin-bottom: 12px; text-align: left; }
    .blog__subtitle { font-size: 16px; line-height: 20px; text-align: left; }
    .blog__grid {
        display: flex;
        grid-template-columns: none;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 4px;
        scroll-snap-type: x mandatory;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    .blog-card { flex: 0 0 320px; height: 430px; scroll-snap-align: start; }
    .blog-card__title { font-size: 20px; line-height: 24px; }
    .blog-card__meta { color: #7D735C; }
    .blog__cta { width: 100%; height: 44px; font-size: 16px; padding: 0 24px; border-radius: 8px; }
    /* Mobile footer (single column, dark gradient with backdrop blur) */
    .site-footer { min-height: auto; padding: 30px 0; backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); box-shadow: inset 0 1px 10px rgba(63,63,63,0.8); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-brand__tagline { margin-bottom: 18px; font-size: 16px; line-height: 22px; }
    .footer-brand__logo img { width: 200px; height: auto; margin-bottom: 20px; }
    .footer-col__title { font-size: 20px; margin-bottom: 10px; }
    .footer-col__list a, .footer-col__list span.footer-value { font-size: 16px; }
    .footer-actions { justify-content: center; flex-wrap: wrap; gap: 8px; }
    .footer-action { flex: 1; min-width: 100px; padding: 6px 10px; }
    .footer-action img { width: 18px; height: 18px; }
    .footer-action span { font-size: 12px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer-social__link { width: 44px; height: 44px; }
    .footer-social__link img { width: 28px; height: 28px; }
    .cta-banner__eyebrow { font-size: 28px; }
    .cta-banner__title { font-size: 80px; }
    .cta-banner__lead { font-size: 20px; }
    .blog .section-title,
    .testimonials .section-title,
    .partners .section-title { font-size: 32px; }
    .blog__subtitle { font-size: 16px; line-height: 22px; }

    .page-hero { padding: 36px 0 30px; }
    .page-hero__title { font-size: 36px; }
    .page-hero__subtitle { font-size: 16px; }

    .services-list__grid { grid-template-columns: repeat(2, 1fr); }
    .about-strip__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .about-strip__item { font-size: 13px; padding: 12px; }
    .references-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .references-grid__item { height: 100px; padding: 10px; }
    .news-list__grid { grid-template-columns: 1fr; }
    .blog__grid--3 { grid-template-columns: 1fr; }
    .post__cover img { height: 240px; }
    .post__body { font-size: 15px; }
    .post__body h2 { font-size: 20px; }
    .map-section__embed iframe { height: 280px; }
    .cta-strip__inner { padding: 26px 22px; text-align: center; flex-direction: column; }
    .cta-strip__title { font-size: 22px; }
    .analysis-form { padding: 20px; }
    .analysis-form__title { font-size: 20px; }
    .analysis__title { font-size: 28px; }
    .contact-form-wrap, .contact-info { padding: 22px; }
}
@media (max-width: 640px) {
    .container { padding: 0 24px; }
    .services__grid { grid-template-columns: 1fr 1fr; }  /* 2-col mobilde Figma ile uyumlu */
    .service-card::after { display: none !important; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats__divider { width: 80%; height: 1px; }
    .stats__number { font-size: 40px; line-height: 44px; }
    .stats__label { font-size: 22px; }
    .cta-banner__title { font-size: 60px; line-height: 79px; }
    .cta-banner__eyebrow { font-size: 24px; }
    .cta-banner__lead { font-size: 16px; }
    .why-soneo__title { font-size: 32px; line-height: 36px; }
    .why-soneo__lead { font-size: 16px; line-height: 22px; }

    .services-list__grid { grid-template-columns: 1fr; }
    .service-block__grid { grid-template-columns: 1fr; }
    .service-block__grid--3 { grid-template-columns: 1fr; }
    .about-strip__grid { grid-template-columns: 1fr; }
    .references-grid { grid-template-columns: repeat(2, 1fr); }
    .references-grid__item { height: 84px; }
    .page-hero__title { font-size: 28px; }
    .section-title { font-size: 26px; }
    .why-soneo__title { font-size: 32px; }
    .stats__number { font-size: 48px; }
    .stats__label { font-size: 18px; }
    .analysis__stats { gap: 16px; }
    .stat-mini__num { font-size: 24px; }
    .footer-action { flex: 1; min-width: 120px; }
    .footer-action span { font-size: 12px; }
    .contact-form__row { grid-template-columns: 1fr !important; }
    .blog-search { margin-bottom: 24px; }
    .page-hero__ctas .btn { width: 100%; }
}
