*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --navy-950: #0d1b3e;
    --navy-900: #1a2954;
    --navy-800: #223470;
    --navy-700: #2d4590;
    --red-500: #fd2a36;
    --red-600: #e01f2a;
    --red-400: #ff5a63;
    --red-100: #ffe5e7;
    --red-50: #fff2f3;
    --g900: #111827;
    --g800: #1f2937;
    --g700: #374151;
    --g600: #4b5563;
    --g500: #6b7280;
    --g400: #9ca3af;
    --g300: #d1d5db;
    --g200: #e5e7eb;
    --g100: #f3f4f6;
    --g50: #f9fafb;
    --white: #fff;
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth
}

html.no-scroll {
    overflow: hidden
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--g600);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font);
    font-size: 1em;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .35s var(--ease);
    line-height: 1;
    letter-spacing: .02em
}

.btn i {
    font-size: 20px;
    transition: transform .3s var(--ease)
}

.btn:hover i {
    transform: translateX(4px)
}

.btn--red {
    background: var(--red-500);
    color: var(--white);
    border-color: var(--red-500)
}

.btn--red:hover {
    background: var(--red-600);
    border-color: var(--red-600);
    transform: translateY(-2px)
}

.btn--white {
    background: var(--white);
    color: var(--navy-900);
    border-color: var(--white)
}

.btn--white:hover {
    background: rgba(255, 255, 255, .9);
    transform: translateY(-2px)
}

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

.btn--outline-white:hover {
    border-color: var(--white);
    transform: translateY(-2px)
}

.btn--outline-navy {
    background: transparent;
    color: var(--navy-900);
    border-color: var(--navy-900)
}

.btn--outline-navy:hover {
    background: var(--navy-900);
    color: var(--white);
    transform: translateY(-2px)
}

.btn--sm {
    font-size: .875em;
    padding: 12px 28px
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--g200);
    transition: all .3s var(--ease)
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px
}

.header__logo {
    display: block;
    width: 210px;
    height: auto
}

.header__nav {
    display: flex;
    align-items: center
}

.header__nav__list {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0
}

.header__nav__list > li {
    position: relative
}

.header__nav a {
    font-size: .95em;
    font-weight: 600;
    color: var(--navy-900);
    transition: color .3s var(--ease);
    letter-spacing: .01em
}

.header__nav a:hover,
.header__nav a.active {
    color: var(--red-500)
}

/* Alpine.js — hide before init */
[x-cloak] {
    display: none !important
}

/* Dropdown (saf CSS :hover ile kontrol edilir) */
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: 12px;
    padding: 8px;
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(13, 27, 62, .1);
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s var(--ease), visibility .18s var(--ease)
}

.header__nav__list > li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}

.nav-dropdown li {
    list-style: none
}

.nav-dropdown li a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: .88em;
    font-weight: 600;
    color: var(--navy-900);
    white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease)
}

.nav-dropdown li a:hover {
    background: var(--g50);
    color: var(--red-500)
}

/* Dropdown ok ikonu */
.nav-arrow {
    font-size: 15px;
    margin-left: 3px;
    vertical-align: middle;
    opacity: .55;
    transition: transform .2s var(--ease);
    display: inline-block
}

.header__nav__list > li:hover .nav-arrow {
    transform: rotate(180deg)
}

/* Mobil menü sub-item stilleri */
.mob-item {
    display: flex;
    flex-direction: column
}

.mob-item__hd {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.mob-item__hd .mob-link {
    flex: 1
}

.mob-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: 0 0;
    border: none;
    cursor: pointer;
    color: var(--navy-900);
    font-size: 1.25em;
    border-radius: 8px;
    transition: background .2s var(--ease), color .2s var(--ease);
    flex-shrink: 0
}

.mob-toggle:hover {
    background: var(--g100);
    color: var(--red-500)
}

.mob-toggle i {
    transition: transform .25s var(--ease);
    display: block
}

.mob-toggle--open i {
    transform: rotate(180deg)
}

.mob-sub {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 6px 0 6px 16px;
    border-left: 2px solid var(--g200);
    margin-left: 8px;
    margin-top: 4px;
    overflow: hidden
}

.mob-sub__link {
    font-size: 1em !important;
    font-weight: 500 !important;
    color: var(--g600) !important;
    padding: 8px 0 !important;
    display: block !important
}

.mob-sub__link:hover {
    color: var(--red-500) !important
}

.header__cta {
    font-size: .9em;
    font-weight: 700;
    padding: 12px 28px;
    background: var(--red-500);
    color: var(--white);
    border-radius: 50px;
    transition: all .3s var(--ease);
    letter-spacing: .02em
}

.header__cta:hover {
    background: var(--red-600);
    transform: translateY(-1px)
}

.header__mob {
    display: none;
    background: 0 0;
    border: none;
    cursor: pointer;
    font-size: 26px;
    color: var(--navy-900);
    padding: 4px
}

.mob-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--white);
    padding: 100px 32px 40px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto
}

.mob-menu a {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--navy-900);
    padding: 20px 0;
    border-bottom: 1px solid var(--g100);
    display: block
}

.mob-menu a:hover {
    color: var(--red-500)
}

.mob-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--g100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: var(--navy-900);
    transition: all .3s var(--ease);
    z-index: 10
}

.mob-menu__close:hover {
    background: var(--red-500);
    color: var(--white)
}

.mob-menu__cta {
    margin-top: 32px;
    text-align: center;
    padding: 18px 32px;
    background: var(--red-500);
    color: var(--white) !important;
    border-radius: 50px;
    border-bottom: none !important
}

/* ===== HERO ===== */
.hero {
    padding: 200px 0 120px;
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(224, 31, 42, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero__content {
    position: relative;
    z-index: 4;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8em;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero__badge i {
    font-size: 16px;
    color: var(--red-400);
}

.hero__title {
    font-size: clamp(2.5em, 4.5vw, 4.2em);
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.hero__title span {
    color: var(--red-500);
    position: relative;
    z-index: 1;
}

.hero__title span::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(253, 42, 54, 0.25);
    z-index: -1;
    border-radius: 4px;
}

.hero__desc {
    font-size: 1.15em;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 520px;
    font-weight: 400;
    letter-spacing: 0.03em;
}

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

.hero__visual {
    position: relative;
    z-index: 4;
    perspective: 1000px;
}

.hero__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hero__card {
    background: var(--navy-900);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.hero__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
}

.hero__card:hover {
    background: var(--navy-800);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
}

.hero__card:hover::before {
    transform: scaleX(1);
}

.hero__card:nth-child(even) {
    transform: translateY(32px);
}

.hero__card:nth-child(even):hover {
    transform: translateY(24px);
}

.hero__card-ico {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 26px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.5s var(--ease);
}

.hero__card:hover .hero__card-ico {
    background: var(--red-500);
    border-color: var(--red-500);
    transform: scale(1.1);
}

.hero__card-t {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.hero__card-d {
    font-size: 0.9em;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    font-weight: 400;
}

/* ===== TRUST BAR ===== */
.trust {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--g200);
    overflow: hidden
}

.trust__label {
    text-align: center;
    font-size: .82em;
    font-weight: 700;
    color: var(--g400);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px
}

.trust__track {
    display: flex;
    align-items: center;
    gap: 56px;
    animation: marquee 25s linear infinite;
    width: max-content
}

.trust__item {
    font-size: 1.1em;
    font-weight: 800;
    color: var(--g200);
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase
}

.trust__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red-500);
    flex-shrink: 0;
    opacity: .5
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ===== SECTION UTILS ===== */
.section {
    padding: 100px 0
}

.section--navy {
    background: var(--navy-900);
    color: var(--white)
}

.section--gray {
    background: var(--g50)
}

.s-label {
    font-size: .75em;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.s-label--red {
    color: var(--red-500)
}

.s-label--red::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--red-500);
    border-radius: 2px
}

.s-label--white {
    color: rgba(255, 255, 255, .5)
}

.s-label--white::before {
    content: '';
    width: 28px;
    height: 2px;
    background: rgba(255, 255, 255, .3);
    border-radius: 2px
}

.s-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 16px
}

.s-title--white {
    color: var(--white)
}

.s-desc {
    font-size: 1.05em;
    color: var(--g500);
    max-width: 540px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: .02em
}

.s-desc--white {
    color: rgba(255, 255, 255, .5)
}

.s-header {
    margin-bottom: 56px
}

.s-header--c {
    text-align: center
}

.s-header--c .s-desc {
    margin: 0 auto
}

/* ===== SERVICES TABS ===== */
.svc-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: center
}

.svc-tab {
    font-size: .9em;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid var(--g200);
    color: var(--g500);
    cursor: pointer;
    transition: all .3s var(--ease);
    background: var(--white)
}

.svc-tab:hover {
    border-color: var(--navy-900);
    color: var(--navy-900)
}

.svc-tab.active {
    background: var(--navy-900);
    color: var(--white);
    border-color: var(--navy-900)
}

.svc-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center
}

.svc-panel__content h3 {
    font-size: 1.75em;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -.01em
}

.svc-panel__content p {
    font-size: 1em;
    color: var(--g500);
    line-height: 1.7;
    margin-bottom: 28px;
    letter-spacing: .02em
}

.svc-panel__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px
}

.svc-panel__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .95em;
    color: var(--g700);
    font-weight: 500
}

.svc-panel__features li i {
    font-size: 18px;
    color: var(--red-500)
}

.svc-panel__visual {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.svc-panel__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    pointer-events: none
}

.svc-panel__visual i {
    font-size: 64px;
    color: rgba(255, 255, 255, .12);
    position: relative;
    z-index: 1
}

/* ===== FEATURE STRIP ===== */
.features-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--g200);
    border-bottom: 1px solid var(--g200)
}

.feature-strip-item {
    padding: 40px 36px;
    text-align: center;
    border-right: 1px solid var(--g200);
    transition: background .3s var(--ease)
}

.feature-strip-item:last-child {
    border-right: none
}

.feature-strip-item:hover {
    background: var(--g50)
}

.feature-strip-item i {
    font-size: 32px;
    color: var(--red-500);
    margin-bottom: 14px;
    display: block
}

.feature-strip-item__t {
    font-size: .95em;
    font-weight: 700;
    color: var(--navy-900);
    letter-spacing: .01em
}

/* ===== ABOUT ===== */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.about__text p {
    font-size: 1.05em;
    color: var(--g500);
    margin-bottom: 18px;
    letter-spacing: .02em;
    line-height: 1.7
}

.about__vals {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px
}

.about__val {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--g200);
    transition: all .3s var(--ease)
}

.about__val:hover {
    border-color: var(--navy-900);
    background: var(--g50)
}

.about__val i {
    font-size: 22px;
    color: var(--red-500);
    margin-top: 2px;
    flex-shrink: 0
}

.about__val-t {
    font-size: .95em;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px
}

.about__val-d {
    font-size: .85em;
    color: var(--g500)
}

/* ===== STATS ===== */
.stats-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(224, 31, 42, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red-500);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card__icon {
    font-size: 42px;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    transition: all 0.4s var(--ease);
}

.stat-card:hover .stat-card__icon {
    color: var(--red-500);
    transform: scale(1.1);
}

.stat-card__num-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.stat-card__num {
    font-size: 3.5em;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-card__plus {
    font-size: 2.2em;
    font-weight: 800;
    color: var(--red-500);
    line-height: 1;
}

.stat-card__label {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

/* ===== PORTFOLIO ===== */
.port-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.port {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--g200);
    transition: all .4s var(--ease)
}

.port:hover {
    transform: translateY(-8px);
    border-color: var(--g300)
}

.port__img {
    width: 100%;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.port:nth-child(1) .port__img {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-700))
}

.port:nth-child(2) .port__img {
    background: linear-gradient(135deg, var(--red-500), var(--red-400))
}

.port:nth-child(3) .port__img {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-900))
}

.port__img i {
    font-size: 40px;
    color: rgba(255, 255, 255, .25);
    transition: transform .4s var(--ease)
}

.port:hover .port__img i {
    transform: scale(1.2)
}

.port__body {
    padding: 28px
}

.port__tag {
    font-size: .7em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    color: var(--red-500)
}

.port__t {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 8px;
    line-height: 1.35
}

.port__d {
    font-size: .9em;
    color: var(--g500);
    line-height: 1.6
}

/* ===== TESTIMONIALS ===== */
.tst-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.tst {
    border: 1px solid var(--g200);
    border-radius: 16px;
    padding: 36px 32px;
    background: var(--white);
    transition: all .35s var(--ease);
    position: relative
}

.tst:hover {
    transform: translateY(-6px);
    border-color: var(--g300)
}

.tst__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 20px
}

.tst__stars i {
    font-size: 16px;
    color: #f59e0b
}

.tst__txt {
    font-size: 1em;
    color: var(--g600);
    line-height: 1.8;
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: .02em
}

.tst__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--g100)
}

.tst__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    font-weight: 800;
    background: var(--navy-900);
    color: var(--white)
}

.tst__name {
    font-size: .9em;
    font-weight: 700;
    color: var(--navy-900)
}

.tst__role {
    font-size: .8em;
    color: var(--g400)
}

/* ===== CTA BANNER ===== */
.cta-section {
    padding: 100px 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='3' cy='3' r='1.5' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
    pointer-events: none
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--red-500) 0%, transparent 70%);
    opacity: .08;
    border-radius: 50%;
    pointer-events: none
}

.cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto
}

.cta__t {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -.02em
}

.cta__d {
    font-size: 1.1em;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 40px;
    letter-spacing: .03em;
    line-height: 1.7
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

.cta__badges {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-top: 40px
}

.cta__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85em;
    color: rgba(255, 255, 255, .4);
    font-weight: 500
}

.cta__badge i {
    color: var(--red-400);
    font-size: 18px
}

/* ===== FAQ ===== */
.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
    align-items: start
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.faq__item {
    background: var(--white);
    border: 2px solid var(--g200);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s var(--ease)
}

.faq__item:hover {
    border-color: var(--g300)
}

.faq__q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 22px 28px;
    font-size: 1em;
    font-weight: 700;
    color: var(--navy-900);
    background: 0 0;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 16px
}

.faq__q i {
    font-size: 22px;
    color: var(--g400);
    transition: all .35s var(--ease);
    flex-shrink: 0
}

.faq__a {
    padding: 0 28px 24px;
    font-size: .95em;
    color: var(--g500);
    line-height: 1.75
}

.faq__a p {
    margin-top: 0;
    margin-bottom: 12px
}

.faq__a p:last-child {
    margin-bottom: 0
}

.faq__a ul,
.faq__a ol {
    margin: 0 0 12px 20px
}

.faq__a ul:last-child,
.faq__a ol:last-child {
    margin-bottom: 0
}

/* WordPress Classic/Block editor artık çıktısı normalize — div, figure, wp-block-* */
.faq__a > div,
.faq__a figure,
.faq__a .wp-block-group,
.faq__a .wp-block-paragraph,
.faq__a .wp-block-image {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 0 12px !important;
    box-shadow: none !important;
    max-width: 100% !important
}

.faq__a > div:last-child,
.faq__a figure:last-child {
    margin-bottom: 0 !important
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.blog-c {
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: 16px;
    overflow: hidden;
    transition: all .4s var(--ease);
    position: relative
}

.blog-c:hover {
    transform: translateY(-8px);
    border-color: var(--g300)
}

/* Tüm kartı tıklanabilir yapan stretched link */
.blog-c__link::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1
}

.blog-c__img {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--g200)
}

.blog-c:nth-child(1) .blog-c__img {
    background: linear-gradient(135deg, #f0f4ff, var(--g100))
}

.blog-c:nth-child(2) .blog-c__img {
    background: linear-gradient(135deg, var(--red-50), var(--g100))
}

.blog-c:nth-child(3) .blog-c__img {
    background: linear-gradient(135deg, var(--g100), #f0f4ff)
}

.blog-c__img i {
    font-size: 28px;
    color: var(--g300)
}

.blog-c__body {
    padding: 28px
}

.blog-c__meta {
    display: flex;
    gap: 14px;
    font-size: .78em;
    color: var(--g400);
    margin-bottom: 14px;
    font-weight: 500
}

.blog-c__meta span {
    display: flex;
    align-items: center;
    gap: 5px
}

.blog-c__meta i {
    font-size: 14px
}

.blog-c__t {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
    line-height: 1.4
}

.blog-c__t a {
    transition: color .3s var(--ease)
}

.blog-c__t a:hover {
    color: var(--red-500)
}

.blog-c__d {
    font-size: .88em;
    color: var(--g500);
    line-height: 1.7
}

/* ===== CONTACT ===== */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 18px
}

.contact__ico {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 22px;
    flex-shrink: 0;
    background: var(--navy-900);
    color: var(--white)
}

.contact__label {
    font-size: .9em;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px
}

.contact__val {
    font-size: .95em;
    color: var(--g500)
}

.contact__val a:hover {
    color: var(--red-500)
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 16px
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--g200);
    border-radius: 12px;
    font-size: 20px;
    color: var(--navy-900);
    transition: all .3s var(--ease)
}

.social-link:hover {
    background: var(--navy-900);
    color: var(--white);
    border-color: var(--navy-900);
    transform: translateY(-3px)
}

.contact__form {
    background: var(--g50);
    border: 1px solid var(--g200);
    border-radius: 20px;
    padding: 44px
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px
}

.form-g {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.form-g--full {
    margin-bottom: 14px
}

.form-lbl {
    font-size: .85em;
    font-weight: 700;
    color: var(--navy-900)
}

.form-inp,
.form-ta,
.form-sel {
    font-family: var(--font);
    font-size: .95em;
    padding: 14px 20px;
    border: 2px solid var(--g200);
    border-radius: 12px;
    color: var(--g700);
    background: var(--white);
    outline: 0;
    transition: all .3s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}

.form-inp:focus,
.form-ta:focus,
.form-sel:focus {
    border-color: var(--navy-900)
}

.form-ta {
    min-height: 120px;
    resize: vertical
}

.form-submit {
    width: 100%;
    margin-top: 8px;
    justify-content: center;
    font-size: 1em
}

.form-ok {
    text-align: center;
    padding: 18px 0;
    font-weight: 700;
    font-size: 1em;
    color: var(--navy-900)
}

.form-ok i {
    margin-right: 8px;
    color: var(--red-500)
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, .4);
    padding: 72px 0 0
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.footer__logo {
    display: block;
    width: 210px;
    height: auto;
    margin-bottom: 18px
}

.footer__desc {
    font-size: .88em;
    line-height: 1.7;
    margin-top: 0;
    max-width: 300px
}

.footer__soc {
    display: flex;
    gap: 10px;
    margin-top: 24px
}

.footer__soc-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    font-size: 18px;
    color: rgba(255, 255, 255, .35);
    transition: all .3s var(--ease)
}

.footer__soc-link:hover {
    border-color: var(--red-500);
    color: var(--red-400)
}

.footer__col-t {
    font-size: .82em;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 22px;
    letter-spacing: 1px;
    text-transform: uppercase
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.footer__links a {
    font-size: .88em;
    transition: color .3s var(--ease)
}

.footer__links a:hover {
    color: var(--white)
}

.footer__bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .82em
}

.footer__bottom-links {
    display: flex;
    gap: 24px
}

.footer__bottom-links a:hover {
    color: var(--white)
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 10px
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    font-size: .88em;
    color: rgba(255, 255, 255, .55);
    transition: all .3s var(--ease)
}

.footer__contact-item i {
    font-size: 18px;
    color: var(--red-400);
    flex-shrink: 0
}

.footer__contact-item:hover {
    border-color: var(--red-500);
    color: var(--white);
    background: rgba(255, 255, 255, .08)
}

/* ===== PROCESS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.proc {
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: all .3s var(--ease);
}

.proc:hover {
    border-color: var(--navy-900);
    transform: translateY(-4px);
    background: var(--g50);
}

.proc__num {
    width: 48px;
    height: 48px;
    background: rgba(253, 42, 54, .1);
    color: var(--red-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25em;
    font-weight: 800;
    margin: 0 auto 20px;
    transition: all .3s var(--ease);
}

.proc:hover .proc__num {
    background: var(--red-500);
    color: var(--white);
}

.proc__t {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 12px;
}

.proc__d {
    font-size: .9em;
    color: var(--g500);
    line-height: 1.6;
}

/* ===== TECH STACK ===== */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.tech-item {
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: 12px;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: all .3s var(--ease);
}

.tech-item:hover {
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.tech-item i {
    font-size: 40px;
    color: var(--navy-900);
    transition: all .3s var(--ease);
}

.tech-item span {
    font-size: .85em;
    font-weight: 700;
    color: var(--g600);
    transition: all .3s var(--ease);
}

.tech-item:hover i,
.tech-item:hover span {
    color: var(--white);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all .7s var(--ease)
}

.reveal.v {
    opacity: 1;
    transform: translateY(0)
}

.reveal-l {
    opacity: 0;
    transform: translateX(-30px);
    transition: all .7s var(--ease)
}

.reveal-l.v {
    opacity: 1;
    transform: translateX(0)
}

.reveal-r {
    opacity: 0;
    transform: translateX(30px);
    transition: all .7s var(--ease)
}

.reveal-r.v {
    opacity: 1;
    transform: translateX(0)
}

.stg .reveal:nth-child(1) {
    transition-delay: .05s
}

.stg .reveal:nth-child(2) {
    transition-delay: .12s
}

.stg .reveal:nth-child(3) {
    transition-delay: .19s
}

/* ===== PAGE CONTENT (Politika / Statik Sayfalar) ===== */
.page-content {
    color: var(--g700);
    line-height: 1.85;
    font-size: 1em
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    color: var(--navy-950);
    font-weight: 700;
    line-height: 1.3;
    margin: 2em 0 .6em
}

.page-content h1 { font-size: 1.9em }
.page-content h2 { font-size: 1.45em }
.page-content h3 { font-size: 1.2em }
.page-content h4 { font-size: 1.05em }

.page-content h1:first-child,
.page-content h2:first-child,
.page-content h3:first-child {
    margin-top: 0
}

.page-content p {
    margin: 0 0 1.2em
}

.page-content p:last-child {
    margin-bottom: 0
}

.page-content ul,
.page-content ol {
    padding-left: 1.5em;
    margin: 0 0 1.2em
}

.page-content ul { list-style: disc }
.page-content ol { list-style: decimal }

.page-content li {
    margin-bottom: .4em
}

.page-content a {
    color: var(--red-500);
    text-decoration: underline;
    text-underline-offset: 3px
}

.page-content a:hover {
    color: var(--red-600)
}

.page-content hr,
.page-content .wp-block-separator {
    border: none;
    border-top: 1px solid var(--g200);
    margin: 2.4em 0
}

.page-content strong { color: var(--navy-950) }

.page-content blockquote {
    border-left: 3px solid var(--red-500);
    margin: 1.6em 0;
    padding: .8em 1.2em;
    background: var(--g50);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--g600)
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.6em 0;
    font-size: .92em
}

.page-content th,
.page-content td {
    border: 1px solid var(--g200);
    padding: 10px 14px;
    text-align: left
}

.page-content th {
    background: var(--g50);
    font-weight: 600;
    color: var(--navy-950)
}

/* ===== PAGE HERO (Service Pages) ===== */
.page-hero {
    padding: 160px 0 80px;
    background: var(--navy-950);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(224, 31, 42, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.page-hero__inner {
    position: relative;
    z-index: 3;
}

.page-hero__title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.page-hero__desc {
    font-size: 1.1em;
    color: rgba(255, 255, 255, .55);
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
    letter-spacing: .02em;
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: .85em;
    font-weight: 500;
}

.breadcrumb a {
    color: rgba(255, 255, 255, .4);
    transition: color .3s var(--ease);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, .25);
}

.breadcrumb .current {
    color: var(--red-400);
    font-weight: 600;
}

/* ===== DETAIL SECTION (2-col) ===== */
.detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.detail__text h2 {
    font-size: clamp(1.5em, 3vw, 2.2em);
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -.01em;
}

.detail__text p {
    font-size: 1em;
    color: var(--g500);
    line-height: 1.8;
    margin-bottom: 16px;
    letter-spacing: .02em;
}

.detail__visual {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    border-radius: 20px;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.detail__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.detail__visual i {
    font-size: 80px;
    color: rgba(255, 255, 255, .1);
    position: relative;
    z-index: 1;
}

/* ===== FEATURE CARDS (Service Pages) ===== */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feat-card {
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all .35s var(--ease);
    position: relative;
    overflow: hidden;
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.feat-card:hover {
    transform: translateY(-6px);
    border-color: var(--g300);
}

.feat-card:hover::before {
    transform: scaleX(1);
}

.feat-card__ico {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 20px;
    font-size: 26px;
    background: rgba(253, 42, 54, .08);
    color: var(--red-500);
    transition: all .35s var(--ease);
}

.feat-card:hover .feat-card__ico {
    background: var(--red-500);
    color: var(--white);
    transform: scale(1.08);
}

.feat-card__t {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.feat-card__d {
    font-size: .9em;
    color: var(--g500);
    line-height: 1.65;
}

/* ===== FAQ FULL WIDTH (Service Pages) ===== */
.faq--full .faq__grid {
    display: block;
}

.faq--full .faq__list {
    max-width: 860px;
    margin: 0 auto;
}

.faq--full .faq__item {
    overflow: hidden;
}

.faq--full .faq__a {
    max-width: 100%;
}

/* ===== PAGE HERO ENHANCED ===== */
.page-hero--rich {
    padding: 160px 0 100px;
    text-align: left;
}

.page-hero--rich .page-hero__inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.page-hero--rich .breadcrumb {
    justify-content: flex-start;
}

.page-hero--rich .page-hero__desc {
    margin: 0 0 32px;
}

.page-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.page-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.page-hero__stat {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all .4s var(--ease);
}

.page-hero__stat:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .12);
    transform: translateY(-4px);
}

.page-hero__stat-num {
    font-size: 2em;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.page-hero__stat-num span {
    color: var(--red-400);
}

.page-hero__stat-label {
    font-size: .85em;
    color: rgba(255, 255, 255, .45);
    font-weight: 500;
}

/* ===== HIGHLIGHT STRIP ===== */
.highlight-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--g200);
}

.highlight-strip__item {
    padding: 44px 28px;
    text-align: center;
    border-right: 1px solid var(--g200);
    transition: background .3s var(--ease);
}

.highlight-strip__item:last-child {
    border-right: none;
}

.highlight-strip__item:hover {
    background: var(--g50);
}

.highlight-strip__item i {
    font-size: 28px;
    color: var(--red-500);
    margin-bottom: 12px;
    display: block;
}

.highlight-strip__t {
    font-size: .92em;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.highlight-strip__d {
    font-size: .8em;
    color: var(--g400);
    line-height: 1.5;
}

/* ===== ALTERNATING FEATURES ===== */
.alt-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 48px 0;
}

.alt-feature + .alt-feature {
    border-top: 1px solid var(--g200);
}

.alt-feature--reverse .alt-feature__visual {
    order: -1;
}

.alt-feature__text span.s-label {
    margin-bottom: 12px;
}

.alt-feature__text h3 {
    font-size: clamp(1.4em, 2.5vw, 1.85em);
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -.01em;
}

.alt-feature__text p {
    font-size: .98em;
    color: var(--g500);
    line-height: 1.75;
    margin-bottom: 20px;
    letter-spacing: .02em;
}

.alt-feature__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alt-feature__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .92em;
    color: var(--g700);
    font-weight: 500;
}

.alt-feature__list li i {
    font-size: 18px;
    color: var(--red-500);
    flex-shrink: 0;
}

.alt-feature__visual {
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    border-radius: 20px;
    aspect-ratio: 5/4;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.alt-feature__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.alt-feature__visual i {
    font-size: 72px;
    color: rgba(255, 255, 255, .1);
    position: relative;
    z-index: 1;
}

/* ===== PLATFORM GRID ===== */
.platform-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.platform-item {
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: 14px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .35s var(--ease);
    min-width: 200px;
}

.platform-item:hover {
    border-color: var(--navy-900);
    background: var(--navy-900);
    transform: translateY(-4px);
}

.platform-item i {
    font-size: 32px;
    color: var(--navy-900);
    transition: color .35s var(--ease);
}

.platform-item span {
    font-size: .95em;
    font-weight: 700;
    color: var(--navy-900);
    transition: color .35s var(--ease);
}

.platform-item:hover i,
.platform-item:hover span {
    color: var(--white);
}

/* ===== SERVICE CARDS (Hizmetler Page) ===== */
.svc-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svc-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
    background: var(--white);
    border: 2px solid var(--g200);
    border-radius: 20px;
    padding: 40px 40px;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--red-500);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s var(--ease);
    border-radius: 0 4px 4px 0;
}

.svc-card:hover {
    border-color: var(--g300);
    box-shadow: 0 20px 60px rgba(13, 27, 62, .06);
    transform: translateY(-4px);
}

.svc-card:hover::before {
    transform: scaleY(1);
}

.svc-card__ico {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 32px;
    background: rgba(253, 42, 54, .06);
    color: var(--red-500);
    transition: all .4s var(--ease);
    flex-shrink: 0;
}

.svc-card:hover .svc-card__ico {
    background: var(--red-500);
    color: var(--white);
    transform: scale(1.08);
}

.svc-card__body {
    min-width: 0;
}

.svc-card__t {
    font-size: 1.25em;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.svc-card__d {
    font-size: .92em;
    color: var(--g500);
    line-height: 1.7;
    margin-bottom: 14px;
}

.svc-card__tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.svc-card__tags li {
    font-size: .75em;
    font-weight: 700;
    color: var(--navy-900);
    background: var(--g100);
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: .02em;
    transition: all .3s var(--ease);
}

.svc-card:hover .svc-card__tags li {
    background: var(--red-50);
    color: var(--red-600);
}

.svc-card__arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid var(--g200);
    font-size: 20px;
    color: var(--g400);
    transition: all .4s var(--ease);
    flex-shrink: 0;
}

.svc-card:hover .svc-card__arrow {
    background: var(--red-500);
    border-color: var(--red-500);
    color: var(--white);
    transform: translateX(4px);
}

/* ===== VALUE CARDS (About Page) ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--g200);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    border-color: var(--g300);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(13, 27, 62, .06);
}

.value-card__num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 3em;
    font-weight: 800;
    color: var(--g100);
    line-height: 1;
    letter-spacing: -.02em;
    transition: color .4s var(--ease);
}

.value-card:hover .value-card__num {
    color: var(--red-50);
}

.value-card__ico {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 26px;
    background: rgba(253, 42, 54, .08);
    color: var(--red-500);
    margin-bottom: 24px;
    transition: all .35s var(--ease);
}

.value-card:hover .value-card__ico {
    background: var(--red-500);
    color: var(--white);
    transform: scale(1.08);
}

.value-card__t {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 10px;
}

.value-card__d {
    font-size: .9em;
    color: var(--g500);
    line-height: 1.7;
}

/* ===== VISION & MISSION ===== */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vm-card {
    background: var(--white);
    border: 2px solid var(--g200);
    border-radius: 20px;
    padding: 48px 40px;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--red-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.vm-card:hover {
    border-color: var(--g300);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(13, 27, 62, .06);
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-card__ico {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 30px;
    background: var(--navy-900);
    color: var(--white);
    margin-bottom: 28px;
    transition: all .35s var(--ease);
}

.vm-card:hover .vm-card__ico {
    background: var(--red-500);
    transform: scale(1.08);
}

.vm-card__t {
    font-size: 1.3em;
    font-weight: 800;
    color: var(--navy-900);
    margin-bottom: 14px;
    letter-spacing: -.01em;
}

.vm-card__d {
    font-size: .95em;
    color: var(--g500);
    line-height: 1.8;
}

/* ===== BLOG LIST PAGE ===== */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-list-grid .blog-c:nth-child(n) .blog-c__img {
    background: linear-gradient(135deg, var(--g100), #f0f4ff);
}

.blog-list-grid .blog-c:nth-child(even) .blog-c__img {
    background: linear-gradient(135deg, var(--red-50), var(--g100));
}

/* ===== SINGLE POST ===== */
.post-header {
    max-width: 780px;
    margin: 0 auto;
}

.post-header__cat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--red-500);
    margin-bottom: 16px;
}

.post-header__cat i {
    font-size: 14px;
}

.post-header__title {
    font-size: clamp(1.8em, 3.5vw, 2.6em);
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.25;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

.post-header__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: .88em;
    color: var(--g400);
    font-weight: 500;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--g200);
}

.post-header__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-header__meta i {
    font-size: 16px;
}

.post-cover {
    max-width: 780px;
    margin: 40px auto;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.post-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='1' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.post-cover i {
    font-size: 64px;
    color: rgba(255, 255, 255, .12);
    position: relative;
    z-index: 1;
}

.post-body {
    max-width: 780px;
    margin: 0 auto;
}

.post-body h2 {
    font-size: 1.5em;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.3;
    margin: 40px 0 16px;
    letter-spacing: -.01em;
}

.post-body h3 {
    font-size: 1.2em;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.35;
    margin: 32px 0 12px;
}

.post-body p {
    font-size: 1.05em;
    color: var(--g600);
    line-height: 1.85;
    margin-bottom: 18px;
    letter-spacing: .02em;
}

.post-body ul,
.post-body ol {
    margin: 16px 0 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.post-body li {
    font-size: 1em;
    color: var(--g600);
    line-height: 1.75;
}

.post-body blockquote {
    border-left: 4px solid var(--red-500);
    background: var(--g50);
    padding: 24px 28px;
    margin: 28px 0;
    border-radius: 0 12px 12px 0;
    font-size: 1.05em;
    color: var(--g700);
    line-height: 1.75;
    font-style: italic;
}

.post-body strong {
    color: var(--navy-900);
    font-weight: 700;
}

/* Post Tags & Share */
.post-footer {
    max-width: 780px;
    margin: 48px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--g200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.post-tag {
    font-size: .78em;
    font-weight: 700;
    color: var(--navy-900);
    background: var(--g100);
    padding: 6px 16px;
    border-radius: 50px;
    transition: all .3s var(--ease);
}

.post-tag:hover {
    background: var(--red-50);
    color: var(--red-600);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.post-share__label {
    font-size: .85em;
    font-weight: 700;
    color: var(--g400);
}

.post-share__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid var(--g200);
    font-size: 18px;
    color: var(--g500);
    transition: all .3s var(--ease);
}

.post-share__btn:hover {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--white);
}

/* Author Box */
.author-box {
    max-width: 780px;
    margin: 48px auto 0;
    background: var(--g50);
    border: 1px solid var(--g200);
    border-radius: 20px;
    padding: 36px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.author-box__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--navy-900);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4em;
    font-weight: 800;
    flex-shrink: 0;
}

.author-box__name {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.author-box__role {
    font-size: .82em;
    color: var(--g400);
    margin-bottom: 8px;
}

.author-box__bio {
    font-size: .9em;
    color: var(--g500);
    line-height: 1.65;
}

/* Post Hero Variant */
.page-hero--post {
    padding: 140px 0 60px;
}

.page-hero--post .breadcrumb {
    margin-bottom: 24px;
}

.page-hero--post .post-header__cat {
    color: var(--red-400);
    margin-bottom: 20px;
}

.page-hero--post .page-hero__title {
    max-width: 780px;
    margin: 0 auto 24px;
}

.page-hero--post .post-header__meta {
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    border-bottom: none;
    padding-bottom: 0;
}

.page-hero--post .post-header__meta i {
    color: rgba(255, 255, 255, .3);
}

/* Post Article Wrapper */
.post-article {
    padding: 0 0 80px;
}

/* Table of Contents */
.post-toc {
    max-width: 780px;
    margin: 0 auto 48px;
    background: var(--g50);
    border: 1px solid var(--g200);
    border-radius: 16px;
    padding: 28px 32px;
}

.post-toc__title {
    font-size: .85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--navy-900);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-toc__title i {
    font-size: 16px;
    color: var(--red-500);
}

.post-toc ol {
    list-style: none;
    counter-reset: toc;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.post-toc li {
    counter-increment: toc;
}

.post-toc a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .92em;
    font-weight: 500;
    color: var(--g600);
    transition: all .3s var(--ease);
    padding: 4px 0;
}

.post-toc a::before {
    content: counter(toc, decimal-leading-zero);
    font-size: .75em;
    font-weight: 700;
    color: var(--red-500);
    min-width: 24px;
}

.post-toc a:hover {
    color: var(--navy-900);
}

/* Post Body Links */
.post-body a {
    color: var(--red-500);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(224, 31, 42, .3);
    text-underline-offset: 3px;
    transition: all .3s var(--ease);
}

.post-body a:hover {
    text-decoration-color: var(--red-500);
}

/* Related Posts */
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 780px;
    margin: 0 auto;
}

/* ===== PRICING CARDS ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--g200);
    border-radius: 20px;
    padding: 44px 32px 40px;
    display: flex;
    flex-direction: column;
    transition: all .4s var(--ease);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--g300);
    transition: background .4s var(--ease);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--g300);
    box-shadow: 0 20px 60px rgba(13, 27, 62, .08);
}

.pricing-card:hover::before {
    background: var(--red-500);
}

.pricing-card--pop::before {
    background: var(--red-500);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -32px;
    background: var(--red-500);
    color: var(--white);
    font-size: .7em;
    font-weight: 800;
    padding: 6px 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: rotate(45deg);
}

.pricing-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 26px;
    margin-bottom: 24px;
    background: rgba(253, 42, 54, .08);
    color: var(--red-500);
    transition: all .35s var(--ease);
}

.pricing-card:hover .pricing-card__icon {
    background: var(--red-500);
    color: var(--white);
    transform: scale(1.08);
}

.pricing-card__name {
    font-size: .82em;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--g400);
    margin-bottom: 8px;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.pricing-card__amount {
    font-size: 2.8em;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1;
    letter-spacing: -.02em;
}

.pricing-card__currency {
    font-size: 1.1em;
    font-weight: 700;
    color: var(--navy-900);
}

.pricing-card__period {
    font-size: .82em;
    color: var(--g400);
    font-weight: 500;
    margin-bottom: 24px;
}

.pricing-card__desc {
    font-size: .92em;
    color: var(--g500);
    line-height: 1.65;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--g200);
}

.pricing-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
    flex-grow: 1;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9em;
    color: var(--g700);
    font-weight: 500;
    line-height: 1.5;
}

.pricing-card__features li i {
    font-size: 18px;
    color: var(--red-500);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .section {
        padding: 80px 0
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero__cards {
        grid-template-columns: repeat(2, 1fr)
    }

    .hero__card:nth-child(even),
    .hero__card:nth-child(even):hover {
        transform: none
    }

    .svc-card {
        padding: 32px 28px;
        gap: 24px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .tech-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .svc-panel {
        grid-template-columns: 1fr
    }

    .svc-panel__visual {
        display: none
    }

    .about__grid,
    .faq__grid,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .port-grid,
    .tst-grid,
    .blog-grid,
    .blog-list-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .features-strip {
        grid-template-columns: 1fr
    }

    .feature-strip-item {
        border-right: none;
        border-bottom: 1px solid var(--g200)
    }

    .feature-strip-item:last-child {
        border-bottom: none
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px
    }

    .detail__grid {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .detail__visual {
        aspect-ratio: 16/9;
        border-radius: 16px;
    }

    .feat-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vm-card {
        padding: 36px 28px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pricing-card--pop {
        grid-column: 1 / -1;
        max-width: 480px;
        margin: 0 auto;
    }

    .page-hero--rich .page-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .page-hero--rich {
        text-align: center;
    }

    .page-hero--rich .breadcrumb {
        justify-content: center;
    }

    .page-hero--rich .page-hero__desc {
        margin: 0 auto 32px;
    }

    .page-hero__actions {
        justify-content: center;
    }

    .page-hero__stats {
        max-width: 500px;
        margin: 0 auto;
    }

    .highlight-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-strip__item {
        border-right: none;
        border-bottom: 1px solid var(--g200);
    }

    .highlight-strip__item:nth-child(odd) {
        border-right: 1px solid var(--g200);
    }

    .highlight-strip__item:nth-last-child(-n+2) {
        border-bottom: none;
    }

    .alt-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .alt-feature--reverse .alt-feature__visual {
        order: 0;
    }

    .alt-feature__visual {
        aspect-ratio: 16/9;
        border-radius: 16px;
    }
}

@media(max-width:768px) {
    .hide-mobile {
        display: none !important;
    }

    .container {
        padding: 0 20px
    }

    .section {
        padding: 64px 0
    }

    .header__nav,
    .header__cta {
        display: none
    }

    .header__mob {
        display: block
    }

    .mob-menu {
        display: flex
    }

    .hero {
        padding: 130px 0 80px
    }

    .hero__cards {
        grid-template-columns: 1fr 1fr
    }

    .hero__card {
        padding: 24px 20px
    }

    .hero__actions {
        flex-direction: column
    }

    .hero__actions .btn {
        justify-content: center
    }

    .svc-tabs {
        gap: 6px
    }

    .svc-tab {
        padding: 10px 20px;
        font-size: .82em
    }

    .port-grid,
    .tst-grid,
    .blog-grid,
    .blog-list-grid,
    .process-grid {
        grid-template-columns: 1fr
    }

    .author-box {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

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

    .post-cover {
        border-radius: 16px;
    }

    .page-hero--post {
        padding: 120px 0 44px;
    }

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

    .post-toc {
        padding: 24px;
    }

    .post-article {
        padding: 0 0 56px;
    }

    .stats-section {
        padding: 72px 0
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px
    }

    .stat-card {
        padding: 28px 20px
    }

    .stat-card__num {
        font-size: 2.5em
    }

    .stat-card__plus {
        font-size: 1.6em
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center
    }

    .contact__form {
        padding: 28px 24px
    }

    .cta-section {
        padding: 72px 0
    }

    .cta__badges {
        flex-direction: column;
        gap: 14px;
        align-items: center
    }

    .faq__q {
        padding: 18px 20px;
        font-size: .92em
    }

    .faq__a {
        padding: 0 20px 20px
    }

    .page-hero {
        padding: 120px 0 60px
    }

    .svc-card {
        grid-template-columns: 1fr;
        padding: 28px 24px;
        gap: 16px;
        text-align: center;
    }

    .svc-card__ico {
        margin: 0 auto;
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .svc-card__tags {
        justify-content: center;
    }

    .svc-card__arrow {
        margin: 0 auto;
    }

    .feat-grid,
    .values-grid {
        grid-template-columns: 1fr
    }

    .value-card {
        padding: 32px 24px;
    }

    .value-card__num {
        font-size: 2.2em;
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    .pricing-card--pop {
        max-width: none;
    }

    .pricing-card {
        padding: 36px 24px 32px
    }

    .pricing-card__amount {
        font-size: 2.2em
    }

    .page-hero--rich {
        padding: 120px 0 60px;
    }

    .page-hero__stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .page-hero__stat {
        padding: 20px 18px;
    }

    .page-hero__stat-num {
        font-size: 1.5em;
    }

    .highlight-strip {
        grid-template-columns: 1fr;
    }

    .highlight-strip__item {
        border-right: none !important;
        border-bottom: 1px solid var(--g200);
    }

    .highlight-strip__item:last-child {
        border-bottom: none;
    }

    .platform-grid {
        gap: 12px;
    }

    .platform-item {
        min-width: 0;
        flex: 1 1 calc(50% - 12px);
        padding: 18px 16px;
        gap: 10px;
    }

    .platform-item i {
        font-size: 24px;
    }

    .platform-item span {
        font-size: .85em;
    }

    .page-hero__actions {
        flex-direction: column;
    }

    .page-hero__actions .btn {
        justify-content: center;
    }
}

@media(max-width:480px) {
    .container {
        padding: 0 16px
    }

    .hero {
        padding: 120px 0 64px
    }

    .hero__cards {
        grid-template-columns: 1fr
    }

    .hero__card:nth-child(even),
    .hero__card:nth-child(even):hover {
        transform: none
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px
    }

    .tech-item {
        padding: 20px 12px
    }

    .svc-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 4px;
        padding-right: 24px;
        -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
        mask-image: linear-gradient(to right, black 80%, transparent 100%)
    }

    .svc-tabs::-webkit-scrollbar {
        display: none
    }

    .svc-tab {
        white-space: nowrap;
        flex-shrink: 0
    }

    .page-hero--rich {
        padding: 110px 0 48px;
    }

    .page-hero__title {
        font-size: 1.6em;
    }

    .page-hero__stat {
        padding: 16px 14px;
    }

    .page-hero__stat-num {
        font-size: 1.3em;
    }

    .page-hero__stat-label {
        font-size: .78em;
    }

    .highlight-strip__item {
        padding: 28px 16px;
    }

    .highlight-strip__t {
        font-size: .85em;
    }

    .platform-item {
        flex: 1 1 100%;
        justify-content: center;
    }

    .pricing-card {
        padding: 28px 20px 24px;
    }

    .pricing-card__amount {
        font-size: 1.8em;
    }

    .pricing-badge {
        top: 16px;
        right: -36px;
        font-size: .6em;
        padding: 5px 40px;
    }

    .cta__actions {
        flex-direction: column;
    }

    .cta__actions .btn {
        justify-content: center;
    }

    .btn {
        padding: 14px 28px;
        font-size: .9em;
    }

    .btn--sm {
        padding: 10px 22px;
        font-size: .82em;
    }

    .page-hero--post {
        padding: 110px 0 36px;
    }

    .page-hero--post .page-hero__title {
        font-size: 1.5em;
    }

    .post-body h2 {
        font-size: 1.25em;
        margin: 32px 0 12px;
    }

    .post-body h3 {
        font-size: 1.05em;
        margin: 24px 0 10px;
    }

    .post-body p {
        font-size: .95em;
    }

    .post-body blockquote {
        padding: 18px 20px;
        font-size: .95em;
        margin: 20px 0;
    }

    .post-body ul,
    .post-body ol {
        margin-left: 16px;
    }

    .post-cover {
        margin: 28px auto;
    }

    .post-toc {
        padding: 20px;
        margin-bottom: 36px;
    }

    .post-toc a {
        font-size: .85em;
    }

    .post-footer {
        margin-top: 32px;
        padding-top: 24px;
    }

    .post-tag {
        font-size: .72em;
        padding: 5px 12px;
    }

    .post-share__btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .author-box {
        margin-top: 32px;
        padding: 24px 20px;
    }

    .author-box__avatar {
        width: 56px;
        height: 56px;
        font-size: 1.1em;
    }
}

/* ===== POLICY PAGES ===== */
.policy-body {
    max-width: 800px;
    margin: 0 auto;
}

.policy-body h2 {
    font-size: 1.25em;
    font-weight: 700;
    color: var(--navy-900);
    margin: 40px 0 12px;
}

.policy-body h3 {
    font-size: 1.05em;
    font-weight: 700;
    color: var(--navy-800);
    margin: 28px 0 8px;
}

.policy-body p {
    font-size: .95em;
    color: var(--g600);
    line-height: 1.85;
    margin-bottom: 16px;
}

.policy-body ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.policy-body ul li {
    font-size: .95em;
    color: var(--g600);
    line-height: 1.85;
    margin-bottom: 6px;
}

.policy-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85em;
    color: var(--g400);
    margin-bottom: 48px;
    font-weight: 500;
}

.policy-meta i {
    font-size: 16px;
}

.policy-divider {
    border: none;
    border-top: 1px solid var(--g200);
    margin: 48px 0;
}

/* ===== SSS PAGE ===== */
.sss-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 860px;
    margin: 0 auto 56px;
}

.sss-nav a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--white);
    border: 1px solid var(--g200);
    font-size: .85em;
    font-weight: 600;
    color: var(--navy-900);
    text-decoration: none;
    transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}

.sss-nav a i {
    font-size: 15px;
    color: var(--g400);
    transition: color .2s var(--ease);
}

.sss-nav a:hover {
    background: var(--red-50);
    border-color: var(--red-400);
    color: var(--red-500);
}

.sss-nav a:hover i {
    color: var(--red-400);
}

.sss-nav__count {
    background: var(--g100);
    color: var(--g500);
    border-radius: 100px;
    padding: 1px 7px;
    font-size: .78em;
    font-weight: 700;
    transition: background .2s var(--ease), color .2s var(--ease);
}

.sss-nav a:hover .sss-nav__count {
    background: var(--red-100);
    color: var(--red-500);
}

.faq-cat {
    max-width: 860px;
    margin: 0 auto 64px;
    scroll-margin-top: 100px;
}

.faq-cat:last-child {
    margin-bottom: 0;
}

.faq-cat__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--g100);
}

.faq-cat__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--red-500);
    color: var(--white);
    font-size: .78em;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: .5px;
}

.faq-cat__title {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--navy-900);
    margin: 0;
}

.faq-cat__count {
    font-size: .82em;
    color: var(--g400);
    font-weight: 500;
    margin-left: auto;
}

.sss-cta {
    background: var(--navy-950);
    border-radius: 20px;
    padding: 64px 48px;
    text-align: center;
}

.sss-cta__inner {
    max-width: 560px;
    margin: 0 auto;
}

.sss-cta__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin: 16px 0 12px;
    line-height: 1.2;
}

.sss-cta__desc {
    font-size: .95em;
    color: var(--g300);
    line-height: 1.7;
    margin-bottom: 32px;
}

@media (max-width: 600px) {
    .sss-nav {
        gap: 6px;
    }

    .sss-nav a {
        padding: 6px 12px;
        font-size: .8em;
    }

    .faq-cat__head {
        gap: 10px;
    }

    .faq-cat__count {
        display: none;
    }

    .sss-cta {
        padding: 48px 24px;
    }
}
