/* ============================================================
   220 CREATIVE — PREMIUM HOMEPAGE (home.css)
   Scoped under .hm — loaded only on the home page.
   Reuses design tokens & .aos/.counter/.btn from style.css
   ============================================================ */

.hm {
    --hm-radius: 20px;
    --hm-line: rgba(255, 255, 255, 0.08);
}

/* shared eyebrow / heading kit */
.hm-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px 7px 12px;
    border-radius: var(--r-full);
    border: 1px solid var(--gold-20);
    background: var(--gold-10);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
}
.hm-eyebrow.dark { color: var(--gold); }
.hm-eyebrow-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 0 var(--gold-20);
    animation: hmPulse 2s infinite;
}
@keyframes hmPulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,171,24,.55); }
    70%  { box-shadow: 0 0 0 10px rgba(255,171,24,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,171,24,0); }
}

.hm-head { max-width: 720px; }
.hm-title {
    font-size: clamp(2rem, 4.4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin: 18px 0 16px;
}
.hm-title em {
    font-style: normal;
    color: var(--gold);
    position: relative;
}
.hm-sub {
    font-size: 1.06rem;
    line-height: 1.75;
    color: var(--grey-500);
    max-width: 560px;
}
.hm-section { padding: 120px 0; position: relative; overflow: hidden; }
.hm-section.dark { background: var(--black); color: var(--white); }
.hm-section.dark .hm-sub { color: var(--grey-300); }
.hm-section.off { background: var(--off-white); }

/* ============================================================
   0. KAYAN FOTOĞRAF GALERİSİ (marquee)
   ============================================================ */
.hm-photos {
    padding: 110px 0 120px;
    background: linear-gradient(180deg, var(--white) 0%, var(--grey-50) 100%);
    overflow: hidden;
    position: relative;
}
.hm-photos-glow {
    position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
    width: 70%; height: 320px; pointer-events: none; z-index: 0;
    background: radial-gradient(60% 100% at 50% 0%, rgba(212,160,90,.20), transparent 70%);
    filter: blur(8px);
}
.hm-photos .container, .hm-photos .hm-marquee-wrap { position: relative; z-index: 1; }
.hm-photos .hm-head { margin-bottom: 56px; }

.hm-marquee-wrap { position: relative; display: flex; flex-direction: column; gap: 22px; }
.hm-marquee-row {
    display: flex;
    width: max-content;
    gap: 22px;
    animation: hmPhotoScroll 70s linear infinite;
    will-change: transform;
}
.hm-marquee-row.reverse { animation-direction: reverse; animation-duration: 84s; }
.hm-marquee-wrap:hover .hm-marquee-row { animation-play-state: paused; }
.hm-marquee-wrap::before,
.hm-marquee-wrap::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 160px; z-index: 3; pointer-events: none;
}
.hm-marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--white) 10%, transparent); }
.hm-marquee-wrap::after { right: 0; background: linear-gradient(270deg, var(--white) 10%, transparent); }

.hm-photo {
    flex: none;
    display: block;
    width: 270px; height: 440px; /* dikey 9:16'ya yakın — yerinde çekilen içerikler için */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    background: var(--grey-100);
    box-shadow: 0 18px 40px -22px rgba(20,16,10,.45);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.hm-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease), filter .5s var(--ease);
    filter: saturate(.92);
}
.hm-photo::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15,12,8,.72));
    opacity: .35; transition: opacity var(--t) var(--ease);
}
.hm-photo-cap {
    position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
    opacity: 0; transform: translateY(10px);
    transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.hm-photo-tag {
    font-size: 12px; font-weight: 600; letter-spacing: .02em; color: #fff;
    padding: 7px 13px; border-radius: 999px;
    background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.22);
    max-width: 78%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hm-photo-ig {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 999px; color: #fff;
    background: rgba(255,255,255,.16); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.24);
    transition: background var(--t) var(--ease);
}
.hm-photo-ig svg { width: 17px; height: 17px; }
.hm-photo:hover .hm-photo-ig { background: rgba(255,255,255,.28); }
.hm-photo:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -24px rgba(20,16,10,.6); }
.hm-photo:hover img { transform: scale(1.07); filter: saturate(1.05); }
.hm-photo:hover::after { opacity: .85; }
.hm-photo:hover .hm-photo-cap { opacity: 1; transform: translateY(0); }

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

@media (max-width: 600px) {
    .hm-photos { padding: 70px 0; }
    .hm-photo { width: 200px; height: 330px; border-radius: 16px; }
    .hm-marquee-wrap { gap: 14px; }
    .hm-marquee-row { gap: 14px; }
    .hm-marquee-wrap::before, .hm-marquee-wrap::after { width: 50px; }
}

/* ============================================================
   BİZ TASARLADIK — WEB SİTELERİ
   ============================================================ */
.hm-sites { overflow: hidden; padding-bottom: 40px; }
.hm-sites + .hm-section { padding-top: 64px; }
.hm-sites-marquee { position: relative; }
.hm-sites-marquee::before,
.hm-sites-marquee::after {
    content: ""; position: absolute; top: 0; bottom: 0; width: 140px; z-index: 3; pointer-events: none;
}
.hm-sites-marquee::before { left: 0; background: linear-gradient(90deg, var(--white) 8%, transparent); }
.hm-sites-marquee::after { right: 0; background: linear-gradient(270deg, var(--white) 8%, transparent); }
.hm-sites-row {
    display: flex;
    align-items: flex-start;
    width: max-content;
    gap: 30px;
    padding: 14px 0;
    animation: hmSitesScroll 90s linear infinite;
    will-change: transform;
}
.hm-sites-marquee:hover .hm-sites-row { animation-play-state: paused; }
@keyframes hmSitesScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.hm-site {
    flex: none;
    width: 430px;
    display: block; text-decoration: none;
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: 22px;
    overflow: hidden;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
    box-shadow: 0 12px 34px -24px rgba(20,16,10,.4);
}
.hm-site:hover {
    transform: translateY(-8px);
    box-shadow: 0 34px 64px -30px rgba(20,16,10,.55);
    border-color: var(--grey-200, #e2ddd5);
}
.hm-site-frame {
    background: linear-gradient(180deg, #1c1a17, #2a2723);
    padding: 0 0 14px;
}
.hm-site-bar {
    display: flex; align-items: center; gap: 7px;
    padding: 13px 16px;
}
.hm-site-bar > span {
    width: 11px; height: 11px; border-radius: 50%;
    background: rgba(255,255,255,.22);
}
.hm-site-bar > span:nth-child(1) { background: #ff5f57; }
.hm-site-bar > span:nth-child(2) { background: #febc2e; }
.hm-site-bar > span:nth-child(3) { background: #28c840; }
.hm-site-url {
    margin-left: 12px; flex: 1;
    font-size: 12px; color: rgba(255,255,255,.6);
    background: rgba(255,255,255,.08);
    padding: 6px 14px; border-radius: 999px;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 70%;
}
.hm-site-shot {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 10px;
    margin: 0 14px;
    background: var(--grey-100);
}
.hm-site-shot img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    transition: object-position 3.5s var(--ease), transform .6s var(--ease);
}
.hm-site:hover .hm-site-shot img { object-position: bottom center; }
.hm-site-meta {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 20px 24px;
}
.hm-site-info { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hm-site-info h3 { font-size: 19px; margin: 0; color: var(--black); }
.hm-site-tag {
    font-size: 12px; font-weight: 600; color: var(--accent, #d4a05a);
    background: rgba(212,160,90,.12);
    padding: 5px 11px; border-radius: 999px;
}
.hm-site-go {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 14px; font-weight: 600; color: var(--black);
    white-space: nowrap;
    transition: gap var(--t) var(--ease), color var(--t) var(--ease);
}
.hm-site-go svg { width: 16px; height: 16px; }
.hm-site:hover .hm-site-go { gap: 11px; color: var(--accent, #d4a05a); }

@media (max-width: 600px) {
    .hm-sites-row { gap: 18px; }
    .hm-site { width: 300px; }
    .hm-site-meta { padding: 16px 18px; }
    .hm-site-info h3 { font-size: 17px; }
    .hm-sites-marquee::before, .hm-sites-marquee::after { width: 50px; }
}

/* ============================================================
   HİZMET BÖLGELERİMİZ — YEREL SEO
   ============================================================ */
.hm-region {
    position: relative;
    padding: 120px 0;
    background:
        radial-gradient(120% 80% at 50% -10%, #141008 0%, transparent 55%),
        #050505;
    overflow: hidden;
}
.hm-region-glow {
    position: absolute; left: 50%; top: -120px; transform: translateX(-50%);
    width: 760px; height: 420px; pointer-events: none; z-index: 0;
    background: radial-gradient(closest-side, rgba(255,171,24,.16), transparent 72%);
    filter: blur(6px);
}
.hm-region .container { position: relative; z-index: 1; }

.hm-region-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.hm-region-card {
    position: relative;
    display: flex; flex-direction: column;
    padding: 32px 30px;
    border-radius: var(--r-lg, 24px);
    text-decoration: none;
    background:
        linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.018));
    border: 1px solid var(--border-dark);
    overflow: hidden;
    transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}
.hm-region-card::before {
    content: ""; position: absolute; left: 0; top: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform .5s var(--ease);
}
.hm-region-card--wide { grid-column: span 3; flex-direction: column; }
.hm-region-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 22px;
}
.hm-region-ic {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 15px;
    color: var(--gold);
    background: var(--gold-10);
    border: 1px solid var(--gold-20);
    transition: background .4s var(--ease), color .4s var(--ease), transform .45s var(--ease);
}
.hm-region-ic svg { width: 24px; height: 24px; }
.hm-region-idx {
    font-size: 30px; font-weight: 800; line-height: 1;
    color: rgba(255,255,255,.10);
    font-variant-numeric: tabular-nums;
    transition: color .4s var(--ease);
}
.hm-region-card h3 {
    font-size: 24px; color: #fff; margin: 0 0 12px;
    letter-spacing: -.01em;
}
.hm-region-card p {
    font-size: 15px; line-height: 1.65; color: var(--grey-300);
    margin: 0 0 22px;
    max-width: 52ch;
}
.hm-region-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-bottom: 26px;
}
.hm-region-tags span {
    font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,.78);
    padding: 6px 13px; border-radius: 999px;
    background: rgba(255,255,255,.05);
    border: 1px solid var(--border-dark);
    transition: border-color .35s var(--ease), color .35s var(--ease);
}
.hm-region-go {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: auto;
    font-size: 14.5px; font-weight: 600; color: var(--gold);
    transition: gap var(--t) var(--ease);
}
.hm-region-go svg { width: 17px; height: 17px; }

.hm-region-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold-20);
    background: linear-gradient(180deg, rgba(255,171,24,.07), rgba(255,255,255,.02));
}
.hm-region-card:hover::before { transform: scaleX(1); }
.hm-region-card:hover .hm-region-ic { background: var(--gold); color: #111; transform: scale(1.05); }
.hm-region-card:hover .hm-region-idx { color: var(--gold-20); }
.hm-region-card:hover .hm-region-go { gap: 13px; }
.hm-region-card:hover .hm-region-tags span { border-color: var(--gold-20); color: #fff; }

@media (max-width: 900px) {
    .hm-region-grid { grid-template-columns: repeat(2, 1fr); }
    .hm-region-card--wide { grid-column: span 2; }
}
@media (max-width: 600px) {
    .hm-region { padding: 80px 0; }
    .hm-region-grid { grid-template-columns: 1fr; gap: 16px; }
    .hm-region-card { padding: 26px 24px; }
    .hm-region-card--wide { grid-column: span 1; }
    .hm-region-card h3 { font-size: 21px; }
}

/* ============================================================
   1. HERO
   ============================================================ */
.hm-hero {
    background: var(--black);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    /* navbar üstte + alttaki ticker için pay (çakışmayı önler) */
    padding: calc(var(--nav-h) + 48px) 0 132px;
}
.hm-hero-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 40%, transparent 100%);
}
.hm-hero-glow {
    position: absolute; border-radius: 50%;
    filter: blur(90px); pointer-events: none;
}
.hm-hero-glow.g1 { width: 520px; height: 520px; background: rgba(255,171,24,.20); top: -120px; right: -80px; }
.hm-hero-glow.g2 { width: 420px; height: 420px; background: rgba(255,171,24,.10); bottom: -160px; left: -120px; }

.hm-hero-inner {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.hm-hero-h1 {
    color: var(--white);
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -2px;
    margin: 22px 0 22px;
}
.hm-hero-h1 em {
    font-style: normal;
    color: var(--gold);
    position: relative;
    white-space: nowrap;
}
.hm-hero-h1 em::after {
    content: "";
    position: absolute; left: 0; right: 0; bottom: 4px;
    height: 10px; background: var(--gold-20);
    border-radius: 4px; z-index: -1;
}
.hm-hero-sub {
    color: var(--grey-300);
    font-size: 1.12rem;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 34px;
}
.hm-hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hm-trust { display: flex; align-items: center; gap: 16px; margin-top: 38px; }
.hm-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; }
.hm-trust-txt { color: var(--grey-300); font-size: 0.86rem; line-height: 1.4; }
.hm-trust-txt b { color: var(--white); }

/* hero visual — glass analytics stack */
.hm-visual { position: relative; }
.hm-ring {
    position: absolute; width: 360px; height: 360px;
    border: 1.5px dashed var(--gold-20);
    border-radius: 50%;
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation: hmSpin 32s linear infinite;
}
@keyframes hmSpin { to { transform: translate(-50%,-50%) rotate(360deg); } }

.hm-card {
    position: relative; z-index: 2;
    background: linear-gradient(160deg, var(--surface-2), var(--surface));
    border: 1px solid var(--hm-line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-dark);
    overflow: hidden;
    backdrop-filter: blur(8px);
}
.hm-card-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--hm-line);
}
.hm-card-bar i { width: 10px; height: 10px; border-radius: 50%; background: #3a3a3a; }
.hm-card-bar i:nth-child(1) { background: #ff5f57; }
.hm-card-bar i:nth-child(2) { background: #febc2e; }
.hm-card-bar i:nth-child(3) { background: #28c840; }
.hm-card-url {
    margin-left: 8px; font-size: 0.72rem; color: var(--grey-300);
    background: rgba(255,255,255,.04); padding: 4px 12px; border-radius: var(--r-full);
}
.hm-card-body { padding: 24px; }
.hm-metric { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.hm-metric b { font-size: 2.2rem; font-weight: 800; color: var(--white); letter-spacing: -1px; }
.hm-metric .up { color: var(--gold); font-weight: 700; font-size: .9rem; }
.hm-metric-lbl { color: var(--grey-300); font-size: .82rem; margin-bottom: 22px; }

.hm-chart { display: flex; align-items: flex-end; gap: 10px; height: 130px; }
.hm-chart span {
    flex: 1; border-radius: 6px 6px 0 0;
    background: linear-gradient(to top, var(--gold-dark), var(--gold));
    opacity: .85;
    transform-origin: bottom;
    animation: hmGrow 1.1s var(--ease) both;
}
.hm-chart span:nth-child(1){ height: 35%; animation-delay:.1s; }
.hm-chart span:nth-child(2){ height: 52%; animation-delay:.2s; }
.hm-chart span:nth-child(3){ height: 44%; animation-delay:.3s; }
.hm-chart span:nth-child(4){ height: 70%; animation-delay:.4s; }
.hm-chart span:nth-child(5){ height: 60%; animation-delay:.5s; }
.hm-chart span:nth-child(6){ height: 88%; animation-delay:.6s; }
.hm-chart span:nth-child(7){ height: 100%; animation-delay:.7s; opacity:1; }
@keyframes hmGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.hm-float {
    position: absolute; z-index: 3;
    display: flex; align-items: center; gap: 12px;
    background: rgba(20,20,20,.85);
    border: 1px solid var(--hm-line);
    border-radius: var(--r-md);
    padding: 12px 16px;
    box-shadow: var(--sh-dark);
    backdrop-filter: blur(12px);
}
.hm-float .ic {
    width: 38px; height: 38px; border-radius: 10px;
    display: grid; place-items: center;
    background: var(--gold-10); border: 1px solid var(--gold-20);
    color: var(--gold);
}
.hm-float .ic .icon { width: 20px; height: 20px; }
.hm-float .t { color: var(--white); font-weight: 700; font-size: .82rem; line-height: 1.1; }
.hm-float .s { color: var(--gold); font-size: .72rem; font-weight: 600; }
.hm-float.f1 { top: -26px; right: 24px; animation: hmFloat 5s ease-in-out infinite; }
.hm-float.f2 { bottom: 30px; left: -34px; animation: hmFloat 6s ease-in-out infinite .8s; }
@keyframes hmFloat { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

/* hero marquee ticker */
.hm-ticker {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    border-top: 1px solid var(--hm-line);
    background: rgba(0,0,0,.4);
    overflow: hidden;
    padding: 16px 0;
}
.hm-ticker-track {
    display: flex; gap: 56px; width: max-content;
    animation: hmScroll 26s linear infinite;
}
.hm-ticker-track span {
    color: var(--grey-300); font-weight: 600; font-size: .92rem;
    display: inline-flex; align-items: center; gap: 56px; white-space: nowrap;
}
.hm-ticker-track span::after { content: "✦"; color: var(--gold); }
@keyframes hmScroll { to { transform: translateX(-50%); } }

/* ============================================================
   2. SERVICES
   ============================================================ */
.hm-sec-head {
    display: flex; justify-content: space-between; align-items: flex-end;
    gap: 40px; margin-bottom: 56px; flex-wrap: wrap;
}
.hm-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.hm-svc {
    display: flex; flex-direction: column;
    color: inherit;
    position: relative;
    background: var(--white);
    border: 1px solid var(--grey-100);
    border-radius: var(--hm-radius);
    overflow: hidden;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.hm-svc:hover { transform: translateY(-8px); box-shadow: 0 24px 55px rgba(0,0,0,.13); border-color: transparent; }

/* tam genişlik öne çıkan kart (drone) */
.hm-svc--feature {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: stretch;
    margin-top: 8px;
}
.hm-svc--feature .hm-svc-img { width: 46%; height: auto; min-height: 280px; flex-shrink: 0; }
.hm-svc--feature .hm-svc-inner { justify-content: center; padding: 44px 48px; max-width: 640px; }
.hm-svc--feature h3 { font-size: 1.55rem; }
.hm-svc--feature p { font-size: .98rem; max-width: 56ch; }
.hm-svc-badge {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    background: var(--gold); color: #1a1306;
    font-size: .7rem; font-weight: 700; letter-spacing: .08em;
    padding: 5px 12px; border-radius: 999px;
}
.hm-svc-shot {
    position: absolute; left: 14px; bottom: 14px; z-index: 2;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .72rem; font-weight: 600; color: #fff;
    padding: 6px 12px; border-radius: 999px;
    background: rgba(0,0,0,.45); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
}
.hm-svc-shot svg { width: 13px; height: 13px; }
@media (max-width: 760px) {
    .hm-svc--feature { flex-direction: column; }
    .hm-svc--feature .hm-svc-img { width: 100%; min-height: 200px; }
    .hm-svc--feature .hm-svc-inner { padding: 32px 26px; }
    .hm-svc--feature h3 { font-size: 1.3rem; }
}

/* Yarı genişlik kart (meta/google ads) */
.hm-svc--half { grid-column: span 2; }
@media (max-width: 900px) {
    .hm-svc--half { grid-column: span 1; }
}

/* görsel başlık */
.hm-svc-img { position: relative; height: 170px; overflow: hidden; background: var(--surface); }
.hm-svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.hm-svc:hover .hm-svc-img img { transform: scale(1.07); }
.hm-svc-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.55) 100%); }
.hm-svc-num {
    position: absolute; top: 14px; right: 16px; z-index: 2;
    font-size: .95rem; font-weight: 800; color: rgba(255,255,255,.85);
    background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.18);
    width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center;
    backdrop-filter: blur(6px);
}
.hm-svc-ic {
    position: absolute; left: 22px; bottom: -26px; z-index: 2;
    width: 56px; height: 56px; border-radius: 14px;
    display: grid; place-items: center;
    background: var(--gold); color: var(--black);
    box-shadow: 0 8px 24px rgba(255,171,24,.35);
    transition: transform var(--t) var(--ease);
}
.hm-svc-ic .icon { width: 28px; height: 28px; }
.hm-svc:hover .hm-svc-ic { transform: scale(1.08) rotate(-4deg); }

/* gövde */
.hm-svc-inner { padding: 40px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.hm-svc-more {
    display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 18px;
    font-size: .82rem; font-weight: 700; color: var(--gold);
    transition: gap var(--t) var(--ease);
}
.hm-svc-more .icon { width: 16px; height: 16px; }
.hm-svc:hover .hm-svc-more { gap: 12px; }
.hm-svc h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.3px; }
.hm-svc p { 
    color: var(--grey-500); 
    font-size: .9rem; 
    line-height: 1.7; 
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hm-svc-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.hm-svc-tags span {
    font-size: .72rem; font-weight: 600; color: var(--grey-700);
    background: var(--grey-50); border: 1px solid var(--grey-100);
    padding: 4px 11px; border-radius: var(--r-full);
}

/* ============================================================
   3. PROCESS (dark)
   ============================================================ */
.hm-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; position: relative; }
.hm-step {
    position: relative; z-index: 1; text-align: left;
    padding: 30px 26px 28px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
    border: 1px solid var(--border-dark);
    transition: transform .45s var(--ease), border-color .45s var(--ease), background .45s var(--ease);
}
.hm-step:hover { transform: translateY(-6px); border-color: var(--gold-20); background: linear-gradient(180deg, rgba(255,171,24,.06), rgba(255,255,255,.02)); }
.hm-step-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.hm-step-ic {
    width: 56px; height: 56px; border-radius: 16px;
    display: grid; place-items: center;
    background: var(--gold-10); border: 1px solid var(--gold-20); color: var(--gold);
    transition: background .4s var(--ease), color .4s var(--ease), transform .45s var(--ease);
}
.hm-step-ic .icon, .hm-step-ic svg { width: 26px; height: 26px; }
.hm-step:hover .hm-step-ic { background: var(--gold); color: #1a1306; transform: scale(1.06); }
.hm-step-n {
    font-size: 1.8rem; font-weight: 800; line-height: 1;
    color: rgba(255,255,255,.12); font-variant-numeric: tabular-nums;
    transition: color .4s var(--ease);
}
.hm-step:hover .hm-step-n { color: var(--gold-20); }
.hm-step h4 { color: var(--white); font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.hm-step p { color: var(--grey-300); font-size: .9rem; line-height: 1.7; }

/* ============================================================
   4. STATS band
   ============================================================ */
.hm-stats-band { background: var(--gold); padding: 70px 0; }
.hm-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.hm-stat { text-align: center; }
.hm-stat b { display: block; font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 900; color: var(--black); letter-spacing: -2px; line-height: 1; }
.hm-stat span { display: block; margin-top: 10px; font-weight: 600; font-size: .92rem; color: rgba(0,0,0,.7); }
.hm-stat + .hm-stat { border-left: 1px solid rgba(0,0,0,.12); }

/* ============================================================
   5. ÇALIŞMA GALERİSİ (bento)
   ============================================================ */
.hm-proof { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.hm-proof-item { display: flex; flex-direction: column; }
.hm-proof-item b { font-size: 1.7rem; font-weight: 800; letter-spacing: -1px; line-height: 1; color: var(--black); }
.hm-proof-item span { font-size: .78rem; color: var(--grey-500); font-weight: 600; margin-top: 4px; }
.hm-proof-sep { width: 1px; height: 36px; background: var(--grey-100); }

.hm-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}
.hm-tile {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    display: block;
    color: #fff;
    isolation: isolate;
}
.hm-tile-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    opacity: 0.75; transition: transform .6s var(--ease), opacity .6s var(--ease);
    z-index: -3; /* Resim en altta */
}
.hm-tile:hover .hm-tile-bg { transform: scale(1.08); opacity: 0.95; }

.hm-tile::before { /* Çok hafif genel bir karartma (resmi boğmayacak kadar) */
    content: ""; position: absolute; inset: 0; z-index: -2;
    transition: transform .6s var(--ease);
    background: #000;
    opacity: 0.2;
}
.hm-tile::after { /* Alttan koyulaşan okunabilirlik katmanı */
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.95) 100%);
}
.hm-tile:hover::before { transform: scale(1.08); }
.hm-tile.big  { grid-column: span 2; grid-row: span 2; }
.hm-tile.wide { grid-column: span 2; }

/* Renk sınıfları iptal edildi, çünkü artık herkese resim eklendi ve resimlerin net görünmesi isteniyor.
   Böylece "turunculuklar" kalkmış oldu. */

.hm-tile-pattern {
    position: absolute; inset: 0; z-index: -1; opacity: .2;
    background-image: radial-gradient(circle at 1px 1px, currentColor 1px, transparent 0);
    background-size: 22px 22px;
    -webkit-mask-image: linear-gradient(180deg,#000,transparent 70%);
    mask-image: linear-gradient(180deg,#000,transparent 70%);
}
.hm-tile-ic {
    position: absolute; top: 22px; left: 22px;
    width: 46px; height: 46px; border-radius: 12px;
    display: grid; place-items: center;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(6px);
}

.hm-tile-ic .icon { width: 24px; height: 24px; }
.hm-tile-body { position: absolute; left: 22px; right: 22px; bottom: 20px; }
.hm-tile-cat { font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; opacity: .85; }
.hm-tile-title { font-size: 1.1rem; font-weight: 700; letter-spacing: -.3px; margin-top: 4px; }
.hm-tile.big .hm-tile-title { font-size: 1.5rem; }
.hm-tile-desc { font-size: .82rem; opacity: 0; max-height: 0; transition: opacity var(--t) var(--ease); }
.hm-tile-go {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 10px;
    font-size: .8rem; font-weight: 700; opacity: 0; transform: translateY(8px);
    transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.hm-tile-go .icon { width: 16px; height: 16px; }
.hm-tile:hover .hm-tile-desc { opacity: .9; max-height: 60px; }
.hm-tile:hover .hm-tile-go { opacity: 1; transform: translateY(0); }

/* ============================================================
   5b. (eski) FEATURED WORK
   ============================================================ */
.hm-work-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.hm-work-card {
    position: relative; border-radius: var(--hm-radius); overflow: hidden;
    background: var(--white); border: 1px solid var(--grey-100);
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.hm-work-card:hover { transform: translateY(-8px); box-shadow: var(--sh-light); }
.hm-work-thumb {
    height: 220px; display: grid; place-items: center;
    position: relative; overflow: hidden;
}
.hm-work-thumb .icon { width: 64px; height: 64px; stroke-width: 1.4; position: relative; z-index: 1; }
.hm-work-thumb::after {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,.12) 1px, transparent 0);
    background-size: 22px 22px;
}
.hm-work-thumb.t1 { background: linear-gradient(135deg,#1a1a1a,#000); color: var(--gold); }
.hm-work-thumb.t2 { background: linear-gradient(135deg,#d48c00,#ffab18); color: #1a1100; }
.hm-work-thumb.t2::after { background-image: radial-gradient(circle at 1px 1px, rgba(0,0,0,.10) 1px, transparent 0); }
.hm-work-thumb.t3 { background: linear-gradient(135deg,#222,#3a3a3a); color: #fff; }
.hm-work-ov {
    position: absolute; inset: 0; background: rgba(0,0,0,.78);
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 8px; padding: 28px; opacity: 0; transition: opacity var(--t) var(--ease);
}
.hm-work-card:hover .hm-work-ov { opacity: 1; }
.hm-work-ov .c { color: var(--gold); font-size: .74rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.hm-work-ov .t { color: #fff; font-size: 1.15rem; font-weight: 700; }
.hm-work-ov .b { color: #fff; font-size: .82rem; font-weight: 600; margin-top: 6px; }
.hm-work-body { padding: 22px 24px; }
.hm-work-body .c { color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.hm-work-body h3 { font-size: 1.12rem; font-weight: 700; margin: 8px 0 6px; letter-spacing: -.3px; }
.hm-work-body p { color: var(--grey-500); font-size: .86rem; line-height: 1.6; }

/* ============================================================
   6. TESTIMONIAL (dark)
   ============================================================ */
.hm-testi { max-width: 860px; margin: 0 auto; text-align: center; }
.hm-testi .q { font-size: 3rem; color: var(--gold); line-height: 1; }
.hm-testi blockquote {
    font-size: clamp(1.3rem,2.4vw,1.9rem); font-weight: 500; color: var(--white);
    line-height: 1.5; letter-spacing: -.5px; margin: 18px 0 30px;
}
.hm-testi blockquote b { color: var(--gold); font-weight: 600; }
.hm-testi-by { display: inline-flex; align-items: center; gap: 14px; }
.hm-testi-av {
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--gold-10); border: 1px solid var(--gold-20);
    display: grid; place-items: center; color: var(--gold);
}
.hm-testi-av .icon { width: 26px; height: 26px; }
.hm-testi-by .n { color: var(--white); font-weight: 700; font-size: .95rem; text-align: left; }
.hm-testi-by .r { color: var(--grey-300); font-size: .82rem; text-align: left; }

/* ============================================================
   7. CTA band
   ============================================================ */
.hm-cta { background: var(--gold); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.hm-cta::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), transparent 40%);
}
.hm-cta-in { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.hm-cta h2 { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--black); letter-spacing: -1.5px; line-height: 1.1; }
.hm-cta p { color: rgba(0,0,0,.7); font-size: 1.08rem; margin: 18px 0 32px; font-weight: 500; }

/* ============================================================
   8. BİZE GÜVENENLER (logo şeridi)
   ============================================================ */
.hm-trusted { background: #0a0a0a; padding: 40px 0; border-bottom: 1px solid var(--hm-line); overflow: hidden; }
.hm-trusted-lbl { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--grey-500); margin-bottom: 26px; }
.hm-trusted-wrap { position: relative; }
.hm-trusted-wrap::before, .hm-trusted-wrap::after { content:""; position:absolute; top:0; bottom:0; width:100px; z-index:2; pointer-events:none; }
.hm-trusted-wrap::before { left:0; background: linear-gradient(90deg,#0a0a0a,transparent); }
.hm-trusted-wrap::after { right:0; background: linear-gradient(270deg,#0a0a0a,transparent); }
.hm-trusted-row { display: flex; width: max-content; gap: 64px; animation: hmScroll 38s linear infinite; align-items: center; }
.hm-trusted-row span {
    font-size: 1.4rem; font-weight: 800; letter-spacing: -.5px; white-space: nowrap;
    color: var(--grey-500); opacity: .65; transition: color var(--tf), opacity var(--tf);
}
.hm-trusted-row span:hover { color: var(--gold); opacity: 1; }

/* ============================================================
   9. NEDEN BİZ / DEĞERLER
   ============================================================ */
.hm-why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.hm-why-card {
    background: #fff; border: 1px solid var(--grey-100); border-radius: 20px; padding: 34px 28px;
    transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.hm-why-card:hover { transform: translateY(-6px); box-shadow: var(--sh-light); }
.hm-why-ic {
    width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
    background: var(--black); color: var(--gold); margin-bottom: 22px;
}
.hm-why-ic .icon { width: 26px; height: 26px; }
.hm-why-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; letter-spacing: -.3px; }
.hm-why-card p { color: var(--grey-500); font-size: .9rem; line-height: 1.7; }

/* ============================================================
   10. MÜŞTERİ YORUMLARI (çoklu)
   ============================================================ */
.hm-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.hm-tcard {
    background: var(--surface); border: 1px solid var(--hm-line); border-radius: 20px; padding: 32px 28px;
    display: flex; flex-direction: column; gap: 18px;
}
.hm-tcard-stars { color: var(--gold); letter-spacing: 2px; font-size: .95rem; }
.hm-tcard-q { color: #e8e8e8; font-size: .98rem; line-height: 1.7; flex: 1; }
.hm-tcard-by { display: flex; align-items: center; gap: 13px; }
.hm-tcard-av { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-10); border: 1px solid var(--gold-20); color: var(--gold); display: grid; place-items: center; }
.hm-tcard-av .icon { width: 22px; height: 22px; }
.hm-tcard-by .n { color: #fff; font-weight: 700; font-size: .9rem; }
.hm-tcard-by .r { color: var(--grey-300); font-size: .78rem; }

/* ============================================================
   11. SSS (FAQ)
   ============================================================ */
.hm-faq { max-width: 800px; margin: 0 auto; }
.hm-faq details { border: 1px solid var(--grey-100); border-radius: 14px; background: #fff; padding: 0 24px; margin-bottom: 12px; transition: border-color var(--t); }
.hm-faq details[open] { border-color: var(--gold-20); }
.hm-faq summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 700; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.hm-faq summary::-webkit-details-marker { display: none; }
.hm-faq summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; font-weight: 400; transition: transform var(--t); }
.hm-faq details[open] summary::after { transform: rotate(45deg); }
.hm-faq p { padding: 0 0 22px; color: var(--grey-500); line-height: 1.75; font-size: .94rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
    .hm-why-grid { grid-template-columns: repeat(2,1fr); }
    .hm-testi-grid { grid-template-columns: 1fr; }
    .hm-hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hm-visual { display: none; }
    .hm-grid-4, .hm-steps, .hm-stats-grid, .hm-work-grid { grid-template-columns: repeat(2,1fr); }
    .hm-steps::before { display: none; }
    .hm-stat:nth-child(3) { border-left: none; }
    .hm-gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
    .hm-tile.big { grid-column: span 2; grid-row: span 2; }
    .hm-tile.wide { grid-column: span 2; }
}
@media (max-width: 600px) {
    .hm-section { padding: 80px 0; }
    .hm-grid-4, .hm-steps, .hm-work-grid { grid-template-columns: 1fr; }
    .hm-stats-grid { grid-template-columns: repeat(2,1fr); gap: 32px 16px; }
    .hm-stat + .hm-stat { border-left: none; }
    .hm-stat:nth-child(3) { border-left: none; }
    .hm-sec-head { flex-direction: column; align-items: flex-start; }
    .hm-gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .hm-tile.big, .hm-tile.wide { grid-column: span 1; grid-row: span 1; }
    .hm-tile-desc { opacity: .9; max-height: 60px; }
    .hm-tile-go { opacity: 1; transform: none; }
    .hm-why-grid { grid-template-columns: 1fr; }
}
