:root {
    color-scheme: light;
    --ink: #0f1f1a;
    --soft-ink: #2f463c;
    --muted: #5a7266;
    --line: #d2e6da;
    --paper: #f3faf6;
    --surface: #ffffff;
    --surface-2: #e8f6ee;
    --accent: #2f9e78;
    --accent-mid: #4f8f6d;
    --accent-deep: #1f6b4f;
    --accent-bright: #57d4a0;
    --sage: #8ab59a;
    --sage-soft: #c8e4d2;
    --champagne: #f7ecdf;
    --blush: #f6e4df;
    --lavender: #e7e9fb;
    --gold: #d4a65a;
    --ig: #e1306c;
    --shadow: 0 28px 80px rgba(15, 31, 26, .10);
    --shadow-accent: 0 18px 44px rgba(47, 158, 120, .22);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 16px;
}

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

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-x: clip;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    background:
        radial-gradient(circle at 8% 0%, rgba(87, 212, 160, .20), transparent 32%),
        radial-gradient(circle at 92% 8%, rgba(212, 166, 90, .16), transparent 28%),
        radial-gradient(circle at 70% 90%, rgba(231, 233, 251, .55), transparent 34%),
        linear-gradient(180deg, #fbfffd 0%, var(--paper) 42%, #ffffff 100%);
}

img,
svg,
video,
canvas,
iframe {
    display: block;
    max-width: 100%;
}

.ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: .35;
    animation: none;
    will-change: auto;
}

.orb-a {
    width: 340px;
    height: 340px;
    top: -80px;
    left: -60px;
    background: radial-gradient(circle, rgba(87, 212, 160, .55), transparent 70%);
}

.orb-b {
    width: 280px;
    height: 280px;
    top: 20%;
    right: -80px;
    background: radial-gradient(circle, rgba(212, 166, 90, .4), transparent 70%);
    animation-delay: -4s;
}

.orb-c {
    width: 360px;
    height: 360px;
    bottom: 5%;
    left: 30%;
    background: radial-gradient(circle, rgba(168, 176, 240, .35), transparent 70%);
    animation-delay: -7s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(24px) scale(1.05); }
}

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

.site-header,
main,
.site-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

main {
    overflow-x: clip;
}

/* ========== HEADER / DROPDOWN FIX ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding: 12px clamp(16px, 3vw, 40px);
    background: rgba(251, 255, 253, .78);
    border-bottom: 1px solid rgba(210, 230, 218, .7);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(0, 280px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    width: min(1180px, 100%);
    margin-inline: auto;
    padding: 8px 12px;
    border: 1px solid rgba(200, 228, 210, .9);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(232,246,238,.9));
    box-shadow: 0 18px 50px rgba(15, 31, 26, .07);
}

.brand {
    display: flex;
    align-items: center;
    min-width: 0;
    max-width: 100%;
}

.brand-logo {
    width: auto;
    max-width: min(260px, 100%);
    height: 64px;
    object-fit: contain;
    object-position: left center;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    padding: 5px;
    border: 1px solid rgba(200, 228, 210, .95);
    border-radius: 999px;
    background: linear-gradient(180deg, #fff, #eef8f2);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.95);
}

.main-nav > a,
.nav-dropdown-trigger {
    border-radius: 999px;
    color: var(--soft-ink);
    font-size: 15px;
    font-weight: 700;
    padding: 9px 14px;
    transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}

.nav-dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-caret {
    font-size: 14px;
    opacity: .7;
    transition: transform .15s ease;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
    transform: rotate(180deg);
}

/* Invisible bridge so hover doesn't drop between trigger and panel */
.nav-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 60;
    width: min(760px, calc(100vw - 32px));
    max-height: min(78vh, 720px);
    margin: 0;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 32px 90px rgba(15, 31, 26, .18);
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    backdrop-filter: blur(18px);
}

/* bridge fills the gap above the panel */
.nav-dropdown-panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
    background: transparent;
}

.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

/* ===== MEGA MENU (Hizmetler) ===== */
.nav-mega {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.mega-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, #f7fcf9, #eef8f2);
}

.mega-kicker {
    margin: 0 0 2px;
    color: var(--accent-deep);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.mega-head strong {
    display: block;
    font-size: 16px;
    font-weight: 750;
    color: var(--ink);
}

.mega-all {
    flex: 0 0 auto;
    padding: 8px 12px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--accent-deep);
    font-size: 15px;
    font-weight: 750;
    box-shadow: 0 8px 18px rgba(15, 31, 26, .06);
}

.mega-all:hover {
    background: var(--surface-2);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 8px;
}

.mega-col {
    min-width: 0;
    padding: 10px;
    border-radius: 16px;
}

.mega-col-head {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    padding: 12px;
    border-radius: 14px;
}

.mega-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: rgba(255,255,255,.75);
    color: var(--accent-deep);
    font-size: 15px;
    font-weight: 900;
    flex: 0 0 auto;
}

.mega-col-head strong,
.mega-col-head small {
    display: block;
}

.mega-col-head strong {
    font-size: 14px;
    font-weight: 750;
    line-height: 1.25;
}

.mega-col-head small {
    margin-top: 2px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
}

.mega-links {
    display: grid;
    gap: 2px;
}

.mega-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 12px;
    color: var(--soft-ink);
    font-size: 15px;
    font-weight: 550;
    line-height: 1.3;
    transition: background .14s ease, color .14s ease, transform .14s ease;
}

.mega-links a span {
    min-width: 0;
}

.mega-links a em {
    flex: 0 0 auto;
    color: var(--accent);
    font-style: normal;
    font-weight: 800;
    opacity: 0;
    transform: translateX(-4px);
    transition: opacity .14s ease, transform .14s ease;
}

.mega-links a:hover {
    background: var(--surface-2);
    color: var(--accent-deep);
}

.mega-links a:hover em {
    opacity: 1;
    transform: translateX(0);
}

.mega-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px 16px;
    border-top: 1px solid var(--line);
    background: linear-gradient(180deg, #fff, #f4fbf7);
}

.mega-foot strong,
.mega-foot span {
    display: block;
}

.mega-foot strong {
    font-size: 14px;
    font-weight: 750;
}

.mega-foot span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
}

.mega-foot-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 0 0 auto;
}

.mega-foot-actions .button {
    min-height: 40px;
    padding: 8px 14px;
    font-size: 15px;
}

.main-nav > a.active,
.main-nav > a:hover,
.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown-trigger.active {
    background: #fff;
    color: var(--accent-deep);
    box-shadow: 0 8px 22px rgba(47, 158, 120, .14);
}

.header-tools {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: linear-gradient(180deg, #fff, #f1faf5);
    color: var(--accent-deep);
    font-size: 15px;
    font-weight: 800;
}

.header-action,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 46px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 15px;
    font-weight: 800;
    padding: 10px 18px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.header-action,
.button.primary {
    background: linear-gradient(135deg, var(--accent-deep) 0%, var(--accent) 55%, #49b889 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.button.ghost {
    background: rgba(255,255,255,.9);
    border-color: var(--sage-soft);
    color: var(--accent-deep);
}

.button.ghost.ig {
    border-color: rgba(225, 48, 108, .25);
    color: #b41d55;
}

.button.full { width: 100%; }

.button.primary.light,
.button.ghost.light {
    background: #fff;
    color: var(--accent-deep);
    border-color: transparent;
}

.button-icon {
    display: inline-grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-bright), var(--gold));
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
}

.button.primary .button-icon,
.header-action .button-icon {
    background: linear-gradient(135deg, #fff, #e5f8ee);
    color: var(--accent-deep);
}

.header-action:hover,
.button:hover { transform: translateY(-2px); }

/* ========== HERO SAAS ========== */
.hero-saas,
.section,
.page-head,
.article-layout,
.contact-saas,
.ig-page,
.service-saas {
    width: min(1180px, calc(100% - 32px));
    max-width: 100%;
    margin-inline: auto;
    min-width: 0;
}

.hero-saas {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: clamp(20px, 3vw, 40px);
    align-items: center;
    padding: clamp(24px, 4vw, 48px) 0 16px;
    overflow: hidden;
}

.hero-saas-copy {
    min-width: 0;
    max-width: 100%;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
    white-space: nowrap;
}

.pill.live {
    background: linear-gradient(135deg, rgba(47, 158, 120, .14), rgba(87, 212, 160, .18));
    color: var(--accent-deep);
    border: 1px solid rgba(47, 158, 120, .2);
}

.pill.soft {
    background: rgba(255,255,255,.8);
    color: var(--muted);
    border: 1px solid var(--line);
}

.pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 0 rgba(47, 158, 120, .55);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(47, 158, 120, .45); }
    70% { box-shadow: 0 0 0 10px rgba(47, 158, 120, 0); }
    100% { box-shadow: 0 0 0 0 rgba(47, 158, 120, 0); }
}

.hero-saas h1,
.contact-hero h1,
.page-head h1,
.article-head h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(40px, 5.8vw, 68px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: .98;
}

/* Ana sayfa hero başlığı: rol + isim, her biri tek satır */
.hero-saas h1,
.hero-saas h1.hero-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: inherit;
    line-height: 1.15;
    letter-spacing: -.02em;
    white-space: normal;
    max-width: 100%;
}

.hero-saas .hero-role {
    display: block;
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 750;
    letter-spacing: -.015em;
    line-height: 1.2;
    white-space: nowrap;
}

.hero-saas .hero-name {
    display: block;
    font-size: clamp(34px, 4.2vw, 52px);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.05;
    white-space: nowrap;
}

.ig-page-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(24px, 3.2vw, 32px);
    font-weight: 750;
    letter-spacing: -.015em;
    line-height: 1.2;
    max-width: none;
}

.ig-follow-note {
    margin: 10px 0 0;
    max-width: 540px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.ig-follow-note a {
    color: var(--accent-deep);
    font-weight: 700;
}

.ig-follow-note a:hover {
    text-decoration: underline;
}

.hero-saas h1.hero-title {
    background: none;
    -webkit-text-fill-color: unset;
}

.hero-saas .hero-role,
.hero-saas .hero-name {
    background: linear-gradient(120deg, #0f1f1a 0%, #1f6b4f 48%, #2f9e78 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 720px) {
    .hero-saas .hero-role {
        white-space: nowrap;
        font-size: clamp(16px, 4.2vw, 20px);
    }

    .hero-saas .hero-name {
        white-space: nowrap;
        font-size: clamp(28px, 8vw, 36px);
    }
}

.lead,
.page-head p,
.article-head p,
.section-sub {
    max-width: 640px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 12px;
    color: var(--accent-deep);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-bright), var(--gold));
    box-shadow: 0 0 0 4px rgba(87, 212, 160, .2);
    content: "";
}

.eyebrow.light { color: #d9f7ea; }
.eyebrow.light::before {
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255,255,255,.18);
}

.intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
    width: 100%;
    min-width: 0;
}

.metric-card {
    min-width: 0;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(200, 228, 210, .9);
    background: rgba(255,255,255,.78);
    box-shadow: 0 14px 34px rgba(15, 31, 26, .05);
    overflow: hidden;
}

.metric-card:nth-child(1) { border-top: 3px solid var(--accent); }
.metric-card:nth-child(2) { border-top: 3px solid var(--gold); }
.metric-card:nth-child(3) { border-top: 3px solid #8a9ec7; }

.metric-card strong,
.metric-card span { display: block; }
.metric-card strong { font-size: 17px; font-weight: 750; line-height: 1.3; }
.metric-card span { margin-top: 6px; color: var(--muted); font-size: 15px; font-weight: 400; line-height: 1.45; }

.hero-saas-visual {
    position: relative;
    min-width: 0;
    width: 100%;
}

.hero-glass {
    position: relative;
    display: grid;
    gap: 12px;
    padding: 14px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.75);
    background:
        linear-gradient(160deg, rgba(255,255,255,.88), rgba(232,246,238,.55) 45%, rgba(247,236,223,.5));
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.intro-photo {
    position: relative;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
}

.intro-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    max-height: 420px;
    object-fit: cover;
}

.hero-float-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.floating-card {
    position: static;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(210, 230, 218, .9);
    box-shadow: 0 10px 28px rgba(15, 31, 26, .08);
    animation: none;
}

.floating-card strong,
.floating-card small { display: block; }
.floating-card strong { font-size: 17px; font-weight: 750; line-height: 1.3; }
.floating-card small { color: var(--muted); font-size: 15px; font-weight: 400; line-height: 1.4; margin-top: 2px; }

.float-a,
.float-b {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 auto;
}
.dot.green { background: var(--accent); box-shadow: 0 0 0 5px rgba(47,158,120,.15); }
.dot.gold { background: var(--gold); box-shadow: 0 0 0 5px rgba(212,166,90,.18); }

/* ========== SECTIONS / BENTO ========== */
.section { padding: 56px 0; }

.section-heading { margin-bottom: 24px; }

.section-heading h2,
.admin-section h2,
.contact-panel-head h2,
.contact-map-card h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.08;
}

.section-heading-stack {
    display: flex;
    max-width: 760px;
    flex-direction: column;
    align-items: flex-start;
}

.section-heading-between {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.bento-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    width: 100%;
}

.areas-grid,
.areas-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    align-items: stretch;
}

.bento-card,
.area-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 0;
    min-height: 100%;
    height: 100%;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.72);
    overflow: hidden;
    box-shadow:
        0 18px 48px rgba(15, 31, 26, .08),
        inset 0 1px 0 rgba(255,255,255,.65);
    backdrop-filter: blur(10px);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.areas-grid-4 .area-card {
    min-height: 340px;
}

.area-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,.55), transparent 70%);
    pointer-events: none;
}

.area-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,.28), transparent 42%);
    pointer-events: none;
}

.bento-card:hover,
.area-card:hover {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(255,255,255,.95);
    box-shadow:
        0 32px 80px rgba(15, 31, 26, .14),
        0 0 0 1px rgba(47, 158, 120, .08);
}

.bento-lg {
    grid-row: 1 / span 2;
    min-height: 460px;
    padding: 28px;
}

.area-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.area-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 12px 28px rgba(15, 31, 26, .08);
    font-size: 22px;
}

.areas-grid-4 .area-icon {
    width: 54px;
    height: 54px;
    font-size: 24px;
}

.bento-lg .area-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    font-size: 28px;
}

.area-badge {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 999px;
    background: rgba(15, 31, 26, .08);
    color: var(--ink);
    font-size: 15px;
    font-weight: 850;
    letter-spacing: -.02em;
}

.area-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 0;
}

.bento-kicker {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.7);
    border: 1px solid rgba(255,255,255,.8);
    color: var(--accent-deep);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .02em;
}

.bento-card h3,
.area-card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: clamp(18px, 1.5vw, 22px);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.bento-lg h3 {
    font-size: clamp(26px, 2.8vw, 36px);
}

.areas-grid-4 .area-card h3 {
    font-size: clamp(17px, 1.35vw, 20px);
    min-height: 0;
}

.bento-card p,
.area-card p {
    margin: 0;
    color: var(--soft-ink);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    max-width: none;
}

.areas-grid-4 .area-card p {
    font-size: 14.5px;
    line-height: 1.55;
    min-height: 0;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 14px;
    min-height: 34px;
    align-content: flex-start;
}

.area-tags span {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.62);
    border: 1px solid rgba(255,255,255,.75);
    color: var(--soft-ink);
    font-size: 14px;
    font-weight: 650;
}

.area-cta {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
    flex: 0 0 auto;
    width: auto;
    margin-top: auto;
    margin-left: 0;
    margin-right: 0;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.95);
    color: var(--accent-deep);
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(15, 31, 26, .08);
    transition: background .18s ease, box-shadow .18s ease;
    transform: none;
}

.area-cta em {
    font-style: normal;
    line-height: 1;
    transition: transform .18s ease;
}

.area-card:hover .area-cta {
    background: #fff;
    box-shadow: 0 14px 30px rgba(47, 158, 120, .16);
    transform: none;
}

.area-card:hover .area-cta em {
    transform: translateX(3px);
}

.bento-link {
    margin-top: 22px;
    font-weight: 850;
    color: var(--accent-deep);
}

.tone-green {
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.65), transparent 38%),
        linear-gradient(165deg, #f3fff8 0%, #c8f0d8 45%, #7ecfa0 100%);
}

.tone-gold {
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.65), transparent 38%),
        linear-gradient(165deg, #fff9ef 0%, #f5e0b0 48%, #e8c06a 100%);
}

.tone-lavender {
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.65), transparent 38%),
        linear-gradient(165deg, #f6f7ff 0%, #d9deff 48%, #b0baf5 100%);
}

.tone-mint {
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.65), transparent 38%),
        linear-gradient(165deg, #f2fffc 0%, #c5f0e8 48%, #7ed9c8 100%);
}

.tone-coral {
    background:
        radial-gradient(circle at 88% 12%, rgba(255,255,255,.65), transparent 38%),
        linear-gradient(165deg, #fff6f4 0%, #ffd5cc 48%, #f5a89a 100%);
}

.areas-saas .section-heading {
    margin-bottom: 28px;
    max-width: 100%;
}

.areas-saas .section-heading h2 {
    font-size: clamp(22px, 2.6vw, 36px);
    line-height: 1.2;
    white-space: nowrap;
    max-width: 100%;
    letter-spacing: -.02em;
}

@media (max-width: 720px) {
    .areas-saas .section-heading h2 {
        white-space: normal;
        font-size: clamp(22px, 5.5vw, 28px);
    }
}

.areas-grid-4 .area-card.tone-green .area-badge { background: rgba(47, 158, 120, .16); color: #1f6b4f; }
.areas-grid-4 .area-card.tone-gold .area-badge { background: rgba(212, 166, 90, .22); color: #8a6520; }
.areas-grid-4 .area-card.tone-lavender .area-badge { background: rgba(120, 130, 210, .18); color: #3f4d9a; }
.areas-grid-4 .area-card.tone-coral .area-badge { background: rgba(230, 120, 100, .18); color: #a84535; }

/* CTA her kartta aynı hizada: kartın altında, sola yaslı */
.areas-grid-4 .area-card {
    display: flex;
    flex-direction: column;
}

.areas-grid-4 .area-top {
    flex: 0 0 auto;
}

.areas-grid-4 .area-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 18px;
}

.areas-grid-4 .area-tags {
    margin-top: 14px;
    margin-bottom: 0;
}

.areas-grid-4 .area-cta {
    flex: 0 0 auto;
    align-self: flex-start;
    margin-top: auto;
    margin-bottom: 0;
    position: relative;
    left: 0;
    right: auto;
    transform: none !important;
}

/* ========== CARDS ========== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    width: 100%;
}

.content-card {
    min-width: 0;
    max-width: 100%;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.92);
    box-shadow: 0 16px 44px rgba(15, 31, 26, .07);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.content-card:hover {
    transform: translateY(-4px);
    border-color: rgba(47, 158, 120, .35);
    box-shadow: 0 28px 70px rgba(31, 107, 79, .14);
}

.content-card a {
    display: flex;
    min-height: 100%;
    flex-direction: column;
}

.card-media {
    overflow: hidden;
}

.content-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    transition: transform .35s ease;
}

.content-card:hover img { transform: scale(1.04); }

.content-card span,
.content-card h3,
.content-card p { margin-inline: 18px; }

.content-card span {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 16px;
    padding: 5px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(87, 212, 160, .18), rgba(200, 228, 210, .4));
    color: var(--accent-deep);
    font-size: 14px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.content-card h3 {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.22;
}

.content-card p {
    color: var(--muted);
    margin-top: 0;
    margin-bottom: 20px;
}

.content-surface {
    border: 1px solid var(--line);
    border-radius: 20px;
    background: linear-gradient(180deg, #fff, #f5fbf7);
    color: var(--soft-ink);
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 18px 48px rgba(15, 31, 26, .07);
    overflow-x: auto;
    max-width: 100%;
}

.content-surface img,
.content-surface table,
.content-surface iframe {
    max-width: 100%;
}

/* ========== IG PREVIEW / CTA ========== */
.ig-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    width: 100%;
    min-width: 0;
}

.ig-preview-card {
    min-width: 0;
    max-width: 100%;
    border-radius: 18px;
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(15, 31, 26, .07);
    transition: transform .18s ease;
}

.ig-preview-card:hover { transform: translateY(-3px); }

.ig-preview-thumb {
    position: relative;
    min-height: 160px;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at 30% 20%, rgba(225, 48, 108, .35), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(131, 58, 180, .3), transparent 42%),
        linear-gradient(135deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
    color: #fff;
    text-align: center;
}

.ig-preview-thumb strong {
    position: relative;
    z-index: 1;
    max-width: 90%;
    font-size: 16px;
    line-height: 1.25;
}

.play-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: 1px solid rgba(255,255,255,.35);
    backdrop-filter: blur(8px);
}

.ig-preview-card p {
    margin: 0;
    padding: 14px 16px 16px;
    color: var(--muted);
    font-size: 14px;
}

.cta-band { padding-top: 20px; }

.cta-band {
    width: min(1180px, calc(100% - 32px));
    max-width: 100%;
    margin-inline: auto;
    min-width: 0;
}

.cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(24px, 4vw, 42px);
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 90% 20%, rgba(87, 212, 160, .35), transparent 30%),
        linear-gradient(135deg, #14553f 0%, #1f6b4f 40%, #2f9e78 100%);
    box-shadow: var(--shadow-accent);
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
}

.cta-band-inner > * {
    min-width: 0;
}

.cta-band-inner h2 {
    margin: 0 0 8px;
    font-size: clamp(26px, 3.5vw, 38px);
    letter-spacing: -.02em;
}

.cta-band-inner p { margin: 0; color: rgba(255,255,255,.82); max-width: 520px; }

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    flex: 0 0 auto;
}

/* ========== SERVICES LIST SAAS ========== */
.services-saas {
    width: min(1180px, calc(100% - 32px));
    max-width: 100%;
    margin-inline: auto;
    padding: 28px 0 80px;
    min-width: 0;
    overflow: hidden;
}

.services-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .75fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 22px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 28px;
    border: 1px solid rgba(200, 228, 210, .95);
    background:
        radial-gradient(circle at 90% 15%, rgba(87, 212, 160, .16), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,.97), rgba(232,246,238,.88));
    box-shadow: var(--shadow);
}

.services-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4.2vw, 44px);
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.1;
}

.services-hero .lead {
    margin-top: 12px;
    max-width: 560px;
    font-size: 17px;
    font-weight: 400;
    color: var(--muted);
}

.services-hero-stats {
    display: grid;
    gap: 10px;
    align-content: center;
}

.services-stat {
    padding: 16px 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 12px 30px rgba(15, 31, 26, .05);
}

.services-stat strong,
.services-stat span { display: block; }

.services-stat strong {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.1;
}

.services-stat span {
    margin-top: 4px;
    color: var(--soft-ink);
    font-size: 15px;
    font-weight: 400;
}

.services-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.services-filter-chip {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 160px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 12px 28px rgba(15, 31, 26, .05);
    transition: transform .15s ease, box-shadow .15s ease;
}

.services-filter-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15, 31, 26, .09);
}

.services-filter-chip strong {
    font-size: 14px;
    font-weight: 750;
}

.services-filter-chip span {
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
}

.services-group {
    margin-bottom: 34px;
}

.services-group h2 {
    margin: 0;
    font-size: clamp(22px, 2.8vw, 30px);
    font-weight: 750;
}

.services-card-grid {
    margin-top: 8px;
}

.services-card .card-more {
    display: inline-flex;
    margin: 0 18px 18px;
    color: var(--accent-deep);
    font-size: 15px;
    font-style: normal;
    font-weight: 750;
}

/* ========== ABOUT SAAS ========== */
.about-saas {
    width: min(1180px, calc(100% - 32px));
    max-width: 100%;
    margin-inline: auto;
    padding: 28px 0 80px;
    min-width: 0;
    overflow: hidden;
}

.about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .9fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
    margin-bottom: 24px;
    padding: clamp(22px, 3vw, 36px);
    border-radius: 28px;
    border: 1px solid rgba(200, 228, 210, .95);
    background:
        radial-gradient(circle at 92% 8%, rgba(87, 212, 160, .16), transparent 30%),
        radial-gradient(circle at 8% 90%, rgba(212, 166, 90, .12), transparent 28%),
        linear-gradient(145deg, rgba(255,255,255,.97), rgba(232,246,238,.9));
    box-shadow: var(--shadow);
}

.about-hero-copy {
    min-width: 0;
}

.about-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.05;
}

.about-hero .lead {
    margin-top: 14px;
    max-width: 560px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--muted);
}

.about-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.about-stat {
    min-width: 0;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(200, 228, 210, .9);
    background: rgba(255,255,255,.82);
}

.about-stat:nth-child(1) { border-top: 3px solid var(--accent); }
.about-stat:nth-child(2) { border-top: 3px solid var(--gold); }
.about-stat:nth-child(3) { border-top: 3px solid #8a9ec7; }

.about-stat strong,
.about-stat span { display: block; }

.about-stat strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}

.about-stat span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.about-hero-visual {
    min-width: 0;
}

.about-photo-frame {
    position: relative;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.8);
    background: linear-gradient(160deg, rgba(255,255,255,.92), rgba(247,236,223,.5));
    box-shadow: 0 22px 60px rgba(15, 31, 26, .12);
    overflow: hidden;
}

.about-photo-frame img {
    width: 100%;
    aspect-ratio: 4 / 5;
    max-height: 480px;
    object-fit: cover;
    border-radius: 16px;
}

.about-photo-badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 44px);
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(210, 230, 218, .95);
    box-shadow: 0 14px 34px rgba(15, 31, 26, .12);
}

.about-photo-badge strong,
.about-photo-badge small { display: block; }
.about-photo-badge strong { font-size: 15px; font-weight: 700; }
.about-photo-badge small { color: var(--muted); font-size: 15px; font-weight: 400; }

.about-highlights {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 28px;
}

.about-highlight {
    min-width: 0;
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 14px 36px rgba(15, 31, 26, .06);
}

.about-hl-num {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.65);
    color: var(--accent-deep);
    font-size: 15px;
    font-weight: 800;
}

.about-highlight h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.about-highlight p {
    margin: 0;
    color: var(--soft-ink);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.about-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 18px;
    align-items: start;
}

.about-main {
    min-width: 0;
}

.about-section-head {
    margin-bottom: 14px;
}

.about-section-head h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.about-prose figure {
    display: none;
}

.about-sidebar {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 118px;
}

.about-cta {
    margin-top: 28px;
}

/* ========== CONTACT SAAS ========== */
.contact-saas { padding: 48px 0 80px; }

.contact-hero {
    max-width: 720px;
    margin-bottom: 28px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(0, 1.2fr);
    gap: 18px;
    align-items: start;
}

.contact-info-stack {
    display: grid;
    gap: 12px;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 14px 36px rgba(15, 31, 26, .06);
    transition: transform .16s ease;
}

.contact-info-card:hover { transform: translateY(-2px); }

.contact-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(255,255,255,.7);
    font-size: 18px;
    flex: 0 0 auto;
}

.contact-info-card strong,
.contact-info-card span { display: block; }
.contact-info-card strong { font-size: 14px; margin-bottom: 2px; }
.contact-info-card span { color: var(--soft-ink); font-size: 14px; font-weight: 650; }

.tone-ig {
    background: linear-gradient(135deg, #fff5f8, #ffe0ec);
}

.contact-panel {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.94);
    box-shadow: var(--shadow);
}

.contact-panel-head p {
    margin: 8px 0 0;
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 4px;
    margin-top: 18px;
}

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

label {
    display: grid;
    gap: 7px;
    margin: 10px 0;
    color: var(--muted);
    font-size: 15px;
    font-weight: 750;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fbfefc;
    color: var(--ink);
    font: inherit;
    padding: 12px 14px;
    transition: border-color .15s ease, box-shadow .15s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(47, 158, 120, .55);
    box-shadow: 0 0 0 4px rgba(47, 158, 120, .12);
    background: #fff;
}

textarea { resize: vertical; min-height: 120px; }

.contact-assurance {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.contact-assurance div {
    padding: 12px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f6fcf8, #eaf7f0);
    border: 1px solid var(--line);
}

.contact-assurance strong,
.contact-assurance span { display: block; }
.contact-assurance strong { font-size: 15px; margin-bottom: 3px; }
.contact-assurance span { color: var(--muted); font-size: 15px; }

.contact-map-card {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
    margin-top: 18px;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: linear-gradient(135deg, #fff, #eef8f2 55%, #f7ecdf);
    box-shadow: 0 18px 48px rgba(15, 31, 26, .07);
}

.contact-map-card p { color: var(--muted); }

.map-placeholder {
    min-height: 180px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(47, 158, 120, .12), rgba(212, 166, 90, .12)),
        repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(47,158,120,.06) 18px, rgba(47,158,120,.06) 19px),
        repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(47,158,120,.06) 18px, rgba(47,158,120,.06) 19px);
    color: var(--accent-deep);
    font-weight: 850;
}

/* ========== INSTAGRAM PAGE ========== */
.ig-page {
    padding: 40px 0 72px;
    overflow: hidden;
}

.ig-page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, .7fr);
    gap: 18px;
    align-items: stretch;
    margin-bottom: 28px;
    min-width: 0;
}

.ig-page-hero > * {
    min-width: 0;
    max-width: 100%;
}

.ig-stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.22), transparent 40%),
        linear-gradient(145deg, #f58529, #dd2a7b 45%, #8134af 75%, #515bd4);
    box-shadow: 0 24px 60px rgba(221, 42, 123, .25);
    overflow: hidden;
}

.ig-stat-card strong {
    font-size: clamp(40px, 6vw, 56px);
    line-height: 1;
    letter-spacing: -.04em;
}

.ig-stat-card span {
    margin-top: 6px;
    font-weight: 800;
}

.ig-stat-card small {
    margin-top: 14px;
    color: rgba(255,255,255,.86);
    font-size: 15px;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.ig-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    width: 100%;
    min-width: 0;
}

.ig-video-card {
    min-width: 0;
    max-width: 100%;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(15, 31, 26, .08);
}

.ig-embed-wrap {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 0;
    padding-bottom: 155%;
    background: #0b1210;
    overflow: hidden;
}

.ig-embed-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    border: 0;
    display: block;
}

.ig-video-meta {
    padding: 14px 16px 16px;
    min-width: 0;
}

.ig-video-meta h3 {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.ig-video-meta a {
    color: var(--accent-deep);
    font-size: 15px;
    font-weight: 800;
}

/* ========== ARTICLE / PAGE ========== */
.page-head {
    display: grid;
    gap: 14px;
    padding: 64px 0 28px;
}

/* ========== SERVICE DETAIL (ULTRA SAAS) ========== */
.service-saas {
    padding: 28px 0 80px;
    overflow: hidden;
}

.service-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 500;
}

.service-breadcrumb a {
    color: var(--accent-deep);
    font-weight: 600;
}

.service-breadcrumb a:hover { text-decoration: underline; }

.service-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .9fr);
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    margin-bottom: 28px;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 28px;
    border: 1px solid rgba(200, 228, 210, .95);
    background:
        radial-gradient(circle at 90% 10%, rgba(87, 212, 160, .16), transparent 28%),
        radial-gradient(circle at 10% 90%, rgba(212, 166, 90, .12), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,.96), rgba(232,246,238,.88));
    box-shadow: var(--shadow);
}

.service-hero h1 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(28px, 3.8vw, 40px);
    font-weight: 750;
    letter-spacing: -.02em;
    line-height: 1.15;
    background: none;
    -webkit-text-fill-color: unset;
}

.service-hero .lead {
    margin-top: 14px;
    max-width: 640px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--muted);
}

.service-benefit-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 26px;
}

.service-benefit {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(200, 228, 210, .85);
    background: rgba(255,255,255,.78);
}

.service-benefit:nth-child(1) { border-top: 3px solid var(--accent); }
.service-benefit:nth-child(2) { border-top: 3px solid var(--gold); }
.service-benefit:nth-child(3) { border-top: 3px solid #8a9ec7; }

.service-benefit strong,
.service-benefit span { display: block; }
.service-benefit strong {
    color: var(--accent-deep);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -.01em;
}
.service-benefit span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
}

.service-hero-visual { position: relative; }

.service-hero-frame {
    position: relative;
    padding: 12px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.75);
    background: linear-gradient(160deg, rgba(255,255,255,.9), rgba(247,236,223,.45));
    box-shadow: 0 22px 60px rgba(15, 31, 26, .12);
    overflow: hidden;
}

.service-hero-frame img {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 380px;
    object-fit: cover;
    border-radius: 16px;
}

.service-hero-fallback {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    background: linear-gradient(135deg, #1f6b4f, #57d4a0);
    color: #fff;
    font-size: 72px;
    font-weight: 900;
}

.service-float-card {
    position: absolute;
    left: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 180px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(210, 230, 218, .9);
    box-shadow: 0 16px 40px rgba(15, 31, 26, .14);
    backdrop-filter: blur(10px);
}

.service-float-card strong,
.service-float-card small { display: block; }
.service-float-card strong { font-size: 15px; }
.service-float-card small { color: var(--muted); font-size: 14px; }

.service-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
    gap: 20px;
    align-items: start;
}

.service-main { min-width: 0; }
.service-main.full { width: 100%; }

.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.service-chip {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.55);
    box-shadow: 0 14px 36px rgba(15, 31, 26, .06);
}

.service-chip strong,
.service-chip span { display: block; }
.service-chip strong {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 700;
}
.service-chip span {
    color: var(--soft-ink);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
}

/* Makale gövdesi: sakin okuma boyutu, kalın değil */
.service-prose {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    color: #44554c;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    padding: clamp(20px, 3vw, 32px);
    box-shadow: 0 18px 48px rgba(15, 31, 26, .07);
}

.service-prose > *:first-child { margin-top: 0; }

/* Hero'da başlık zaten var; makaledeki ilk uzun H2'yi küçült */
.service-prose > figure:first-child + h2,
.service-prose > h2:first-child {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 1em;
    padding-bottom: 0;
    border-bottom: none;
    color: var(--soft-ink);
}

.service-prose h1,
.service-prose h2,
.service-prose h3,
.service-prose h4 {
    color: var(--ink);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.4;
    margin: 1.35em 0 .55em;
}

.service-prose h1 {
    font-size: 1.1rem;
}

.service-prose h2 {
    font-size: 1.05rem;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--line);
}

.service-prose h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1.25em;
    color: var(--accent-deep);
}

.service-prose h4 {
    font-size: .95rem;
    font-weight: 600;
}

.service-prose p,
.service-prose li,
.service-prose td,
.service-prose span,
.service-prose div {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
}

.service-prose p {
    margin: 0 0 .9em;
    color: #44554c;
}

.service-prose ul,
.service-prose ol {
    margin: 0 0 1em;
    padding-left: 1.15em;
}

.service-prose li {
    margin: .35em 0;
    padding-left: .1em;
    color: #44554c;
}

.service-prose li::marker {
    color: var(--accent);
    font-weight: 500;
}

.service-prose figure {
    margin: 16px 0 20px;
    border-radius: 14px;
    overflow: hidden;
}

.service-prose figure img {
    width: 100%;
    max-height: 280px;
    object-fit: cover;
    border-radius: 14px;
}

.service-prose a {
    color: var(--accent-deep);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.service-prose strong,
.service-prose b {
    color: inherit;
    font-weight: 500;
}

.service-prose blockquote {
    margin: 1.1em 0;
    padding: 12px 14px;
    border-left: 3px solid var(--accent);
    border-radius: 0 12px 12px 0;
    background: linear-gradient(90deg, rgba(87, 212, 160, .1), rgba(232, 246, 238, .35));
    color: #44554c;
    font-size: 15px;
    font-weight: 400;
}

.service-sidebar {
    display: grid;
    gap: 14px;
    position: sticky;
    top: 118px;
}

.service-side-card {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid var(--line);
    box-shadow: 0 18px 44px rgba(15, 31, 26, .08);
}

.booking-card {
    color: #fff;
    background:
        radial-gradient(circle at 85% 15%, rgba(87, 212, 160, .28), transparent 35%),
        linear-gradient(155deg, #14553f 0%, #1f6b4f 42%, #2f9e78 100%);
    border-color: transparent;
}

.booking-card h2 {
    margin: 0 0 8px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -.015em;
    line-height: 1.2;
}

.booking-card p {
    margin: 0 0 16px;
    color: rgba(255,255,255,.88);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.booking-card .button {
    margin-bottom: 10px;
}

.booking-card .button.full { width: 100%; }

.service-side-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.service-side-list li {
    position: relative;
    padding-left: 22px;
    color: rgba(255,255,255,.92);
    font-size: 14px;
    font-weight: 400;
}

.service-side-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #b8f5d6;
    font-weight: 900;
}

.soft-card {
    background: linear-gradient(180deg, #fff, #f4fbf7);
}

.soft-card h3 {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.01em;
}

.side-link {
    display: block;
    margin: 0 0 8px;
    color: var(--accent-deep);
    font-size: 15px;
    font-weight: 600;
}

.side-link:hover { text-decoration: underline; }

.side-note {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
}

.side-service-links {
    display: grid;
    gap: 6px;
}

.side-service-links a {
    display: block;
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--soft-ink);
    font-size: 14px;
    font-weight: 500;
    background: rgba(232, 246, 238, .55);
    transition: background .15s ease, color .15s ease;
}

.side-service-links a:hover {
    background: var(--surface-2);
    color: var(--accent-deep);
}

.side-service-links .side-all {
    margin-top: 4px;
    background: transparent;
    color: var(--accent-deep);
    font-weight: 650;
}

.service-related {
    margin-top: 42px;
}

.service-cta {
    margin-top: 36px;
    padding-top: 0;
}

.page-hero {
    grid-template-columns: 1fr;
}

.page-body {
    grid-template-columns: 1fr;
}

.service-inline-image {
    margin: 0 0 16px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-inline-image img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
}

.prose {
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    color: #3a4a43;
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.75;
    padding: clamp(22px, 3.5vw, 36px);
    box-shadow: 0 18px 48px rgba(15, 31, 26, .07);
}

.prose h2,
.prose h3,
.prose h4 {
    color: var(--ink);
    font-weight: 650;
    line-height: 1.35;
    margin-top: 1.4em;
    margin-bottom: .6em;
}

.prose h2 { font-size: 1.18rem; }
.prose h3 { font-size: 1.05rem; color: var(--accent-deep); }
.prose h4 { font-size: 1rem; }

.prose p,
.prose li {
    font-size: 15.5px;
    font-weight: 400;
    line-height: 1.75;
}

.prose figure { margin: 20px 0; }
.prose figure img { border-radius: 12px; max-width: 100%; }
.prose a {
    color: var(--accent-deep);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.prose strong,
.prose b { color: inherit; font-weight: 600; }

/* ========== FOOTER ========== */
.site-footer {
    padding: 0 clamp(16px, 3vw, 40px);
    background: linear-gradient(180deg, #ffffff 0%, #e8f6ee 48%, #d8efe3 100%);
    border-top: 1px solid var(--line);
    overflow-x: clip;
}

.site-footer p,
.muted { color: var(--muted); }

.site-footer a {
    color: var(--soft-ink);
    font-weight: 750;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, .7fr));
    gap: clamp(18px, 3vw, 40px);
    width: min(1180px, 100%);
    max-width: 100%;
    margin-inline: auto;
    padding: 54px 0 36px;
    min-width: 0;
}

.footer-inner > * {
    min-width: 0;
}

.footer-brand img,
.footer-logo {
    width: min(280px, 100%);
    height: auto;
    max-height: 72px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 430px;
    margin: 0 0 20px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-deep), var(--accent));
    color: #fff;
    box-shadow: var(--shadow-accent);
}

.footer-cta:hover { color: #fff; }

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h2,
.footer-contact h2 {
    margin: 0 0 8px;
    color: var(--accent-deep);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
    color: var(--muted);
    font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover { color: var(--accent-deep); }

.footer-contact p {
    margin: 2px 0 0;
    font-size: 14px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    width: min(1180px, 100%);
    margin-inline: auto;
    padding: 18px 0;
    border-top: 1px solid rgba(47, 158, 120, .18);
    color: var(--muted);
    font-size: 15px;
}

/* ========== ADMIN ========== */
.admin-body { background: #f3faf6; }

.admin-shell {
    width: min(1180px, calc(100% - 30px));
    margin: 0 auto;
    padding: 32px 0 90px;
}

.login-panel,
.admin-section,
.editor-card,
.notice {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(15, 31, 26, .08);
}

.login-panel {
    width: min(440px, 100%);
    margin: 8vh auto;
    padding: 26px;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 22px;
}

.admin-top h1,
.login-panel h1 { margin: 0; color: var(--ink); }

.admin-actions { display: flex; gap: 10px; }

.admin-section {
    margin: 18px 0;
    padding: 22px;
}

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

.editor-card {
    margin: 12px 0;
    padding: 14px;
}

.editor-card summary {
    color: var(--ink);
    cursor: pointer;
    font-weight: 850;
}

.notice {
    margin: 14px 0;
    padding: 12px 14px;
}

.notice.success {
    border-color: #b8d8bf;
    color: #3e754c;
    background: #f0faf2;
}

.notice.error {
    border-color: #efb3bf;
    color: #9e334d;
    background: #fff5f7;
}

.sticky-save {
    position: sticky;
    bottom: 16px;
    display: flex;
    justify-content: flex-end;
    padding-top: 12px;
}


/* ========== MOBILE NAV TOGGLE ========== */
.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    place-items: center;
    gap: 5px;
    flex-direction: column;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(15, 31, 26, .06);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 99px;
    background: var(--accent-deep);
    transition: transform .18s ease, opacity .18s ease;
}

.header-inner.is-nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header-inner.is-nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.header-inner.is-nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .areas-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
    }
    .bento-lg {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 240px;
    }
    .ig-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 980px) {
    .site-header {
        padding: 10px 12px;
        padding-left: max(12px, env(safe-area-inset-left));
        padding-right: max(12px, env(safe-area-inset-right));
    }

    .header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 10px;
        border-radius: 18px;
        padding: 10px 12px;
        width: 100%;
    }

    .brand-logo {
        max-width: min(200px, 58vw);
        height: 48px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .main-nav,
    .header-tools {
        display: none;
        grid-column: 1 / -1;
    }

    .header-inner.is-nav-open .main-nav,
    .header-inner.is-nav-open .header-tools {
        display: flex;
    }

    .header-tools {
        justify-content: stretch;
        flex-wrap: wrap;
        gap: 8px;
    }

    .header-tools .header-phone,
    .header-tools .header-action {
        flex: 1 1 auto;
        min-height: 48px;
        justify-content: center;
        text-align: center;
    }

    .main-nav {
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        border-radius: 16px;
        padding: 8px;
    }

    .main-nav > a,
    .nav-dropdown-trigger {
        display: flex;
        align-items: center;
        min-height: 48px;
        justify-content: flex-start;
        padding: 12px 14px;
        font-size: 16px;
        border-radius: 12px;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-panel,
    .nav-mega {
        display: none !important;
    }

    .nav-caret {
        display: none;
    }

    .hero-saas,
    .section,
    .page-head,
    .contact-saas,
    .ig-page,
    .service-saas,
    .about-saas,
    .services-saas,
    .cta-band {
        width: min(1180px, calc(100% - 24px));
    }

    .hero-saas,
    .card-grid,
    .metric-row,
    .ig-preview-grid,
    .contact-grid,
    .contact-map-card,
    .ig-page-hero,
    .form-grid,
    .form-row,
    .contact-assurance,
    .service-hero,
    .service-body,
    .service-highlights,
    .service-benefit-row,
    .about-hero,
    .about-body,
    .about-stat-row,
    .about-highlights,
    .services-hero,
    .footer-inner,
    .bento-grid,
    .areas-grid-4,
    .hero-float-row {
        grid-template-columns: 1fr;
    }

    .areas-grid-4 .area-card {
        min-height: 0;
    }

    .areas-grid-4 .area-card h3,
    .areas-grid-4 .area-card p {
        min-height: 0;
    }

    .about-sidebar,
    .service-sidebar,
    .article-aside {
        position: static;
    }

    .about-photo-badge,
    .service-float-card {
        position: static;
        margin-top: 12px;
        max-width: 100%;
        width: 100%;
        left: auto;
        bottom: auto;
    }

    .about-photo-frame,
    .service-hero-frame {
        display: grid;
        gap: 10px;
    }

    .bento-lg { min-height: 0; }

    .ig-video-grid { grid-template-columns: 1fr; }

    .cta-band-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 22px;
    }

    .cta-actions {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .cta-actions .button {
        width: 100%;
        min-height: 48px;
    }

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

    .hero-saas {
        gap: 20px;
        padding: 20px 0 12px;
    }

    .hero-saas h1,
    .hero-saas .hero-role,
    .hero-saas .hero-name {
        -webkit-text-fill-color: var(--ink);
        background: none;
    }

    .hero-saas .hero-role,
    .hero-saas .hero-name,
    .pill,
    .areas-saas .section-heading h2 {
        white-space: normal;
    }

    .hero-saas .hero-role {
        font-size: clamp(16px, 4.4vw, 20px);
    }

    .hero-saas .hero-name {
        font-size: clamp(28px, 8vw, 38px);
    }

    .intro-actions {
        width: 100%;
    }

    .intro-actions .button {
        flex: 1 1 100%;
        min-height: 48px;
        justify-content: center;
    }

    .metric-row {
        gap: 8px;
    }

    .metric-card {
        padding: 14px 16px;
    }

    .areas-saas .section-heading h2 {
        font-size: clamp(22px, 6vw, 28px);
        line-height: 1.25;
    }

    .footer-logo {
        max-height: 64px;
        width: min(240px, 100%);
    }

    .site-footer {
        padding: 0 16px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
        padding-bottom: env(safe-area-inset-bottom);
    }

    .footer-inner {
        padding: 36px 0 24px;
        gap: 28px;
    }

    .button,
    .header-action,
    .header-phone,
    .area-cta,
    .footer-cta {
        min-height: 48px;
    }

    .ig-embed-wrap {
        padding-bottom: 160%;
    }

    .services-filter {
        display: grid;
        grid-template-columns: 1fr;
    }

    .services-filter-chip {
        min-width: 0;
        width: 100%;
    }

    .contact-panel,
    .service-prose,
    .prose {
        padding: 18px;
    }

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

    .service-hero,
    .about-hero,
    .services-hero {
        padding: 18px;
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .orb-a,
    .orb-b,
    .orb-c {
        width: 180px;
        height: 180px;
        opacity: .22;
    }

    .areas-grid-4 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .card-grid {
        gap: 12px;
    }

    .content-card span,
    .content-card h3,
    .content-card p,
    .services-card .card-more {
        margin-inline: 14px;
    }

    .section {
        padding: 36px 0;
    }

    .page-head {
        padding: 36px 0 18px;
    }

    .about-stat-row,
    .service-benefit-row,
    .service-highlights,
    .contact-assurance {
        grid-template-columns: 1fr;
    }

    .ig-stat-card {
        padding: 18px;
    }

    .ig-stat-card strong {
        font-size: 40px;
    }

    .lead,
    .section-sub,
    .page-head p {
        font-size: 16px;
    }

    .header-phone {
        font-size: 14px;
        letter-spacing: 0;
    }

    h1, h2, h3, p, a, span, li {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .brand-logo,
    .footer-logo,
    .hero-name,
    .hero-role {
        overflow-wrap: normal;
        word-break: normal;
    }
}

@media (max-width: 400px) {
    .brand-logo {
        max-width: min(160px, 52vw);
        height: 42px;
    }

    .hero-saas .hero-name {
        font-size: 26px;
    }

    .hero-saas .hero-role {
        font-size: 15px;
    }

    .button,
    .header-action {
        font-size: 14px;
        padding-inline: 14px;
    }
}

body.nav-open {
    overflow: hidden;
}