:root {
    --bg: #f5f7fb;
    --dark: #0b1020;
    --navy: #10192f;
    --text: #1b2433;
    --muted: #667085;
    --line: #e8edf5;
    --white: #fff;
    --brand: #1d4ed8;
    --brand2: #06b6d4;
    --gold: #f59e0b;
    --radius: 24px;
    --shadow: 0 24px 80px rgba(13, 26, 48, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
}

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

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

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.topbar {
    background: #07101f;
    color: #cbd5e1;
    font-size: 13px;
}

.topbar-inner {
    height: 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.topbar a {
    margin-left: 18px;
    color: #e2e8f0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, .75);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: 700;
    color: #0f172a;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(29, 78, 216, .28);
}

.menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu a {
    padding: 11px 14px;
    border-radius: 999px;
    color: #334155;
    font-size: 15px;
    font-weight: 650;
}

.menu a:hover, .menu .active {
    background: #eef5ff;
    color: #0b48b4;
}

.nav-cta {
    background: #0f172a !important;
    color: #fff !important;
    padding: 12px 18px !important;
}

.menu-btn {
    display: none;
    border: 0;
    background: #0f172a;
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    font-size: 20px;
}

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 10, 25, .88) 0%, rgba(5, 10, 25, .66) 46%, rgba(5, 10, 25, .28) 100%);
}

.hero:after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -30%;
    width: 660px;
    height: 660px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6, 182, 212, .35), transparent 62%);
    filter: blur(5px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0ea5e9;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-size: 13px;
}

.eyebrow {
    color: #a5f3fc;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 10px 14px;
    border-radius: 999px;
}

.eyebrow span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, .17);
}

h1, h2, h3, p {
    margin-top: 0;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 78px);
    line-height: .98;
    max-width: 900px;
    margin: 22px 0;
}

.hero p {
    font-size: 19px;
    line-height: 1.75;
    color: #dbeafe;
    max-width: 720px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.btn {
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.btn.primary {
    background: linear-gradient(135deg, var(--brand), var(--brand2));
    color: #fff;
    box-shadow: 0 18px 42px rgba(29, 78, 216, .32);
}

.btn.ghost {
    border: 1px solid rgba(255, 255, 255, .34);
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.stats div {
    min-width: 150px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(12px);
}

.stats strong {
    display: block;
    font-size: 25px;
}

.stats span {
    font-size: 13px;
    color: #cbd5e1;
}

.section {
    padding: 96px 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 14px 50px rgba(15, 23, 42, .06);
    min-height: 230px;
}

.feature-card h3 {
    font-size: 24px;
    margin: 18px 0 12px;
}

.feature-card p {
    line-height: 1.7;
    color: var(--muted);
}

.dark-card {
    background: #0f172a;
    color: #fff;
    border-color: #1e293b;
}

.dark-card p {
    color: #cbd5e1;
}

.card-no {
    font-size: 13px;
    font-weight: 900;
    color: #0ea5e9;
}

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

.split-media {
    position: relative;
}

.split-media img {
    height: 560px;
    width: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.floating-box {
    position: absolute;
    left: 28px;
    bottom: 28px;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .18);
}

.floating-box strong {
    display: block;
}

.floating-box span {
    color: var(--muted);
    font-size: 14px;
}

.split-content h2, .section-head h2, .cta-box h2 {
    font-size: clamp(31px, 4vw, 50px);
    line-height: 1.08;
    margin: 14px 0 18px;
    color: #0f172a;
}

.split-content p, .section-head p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--muted);
}

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

.check-list li {
    padding-left: 34px;
    position: relative;
    font-weight: 700;
    color: #1f2937;
}

.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #dcfce7;
    color: #16a34a;
    display: grid;
    place-items: center;
    font-size: 14px;
}

.bg-soft {
    background: #edf4ff;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 44px;
}

.row-head {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    text-align: left;
}

.text-link {
    font-weight: 850;
    color: #0b48b4;
}

.upload-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-shadow: 0 20px 70px rgba(15, 23, 42, .08);
}

.upload-panel p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

.file-label {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 54px;
    border-radius: 999px;
    background: #0f172a;
    color: #fff;
    font-weight: 850;
    cursor: pointer;
}

.file-label input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

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

.service-grid.six {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .07);
    transition: .25s;
}

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

.service-card img {
    height: 220px;
    width: 100%;
    object-fit: cover;
}

.service-card div {
    padding: 24px;
}

.service-card h3 {
    font-size: 23px;
    margin-bottom: 10px;
}

.service-card p {
    line-height: 1.7;
    color: var(--muted);
}

.moving-banner {
    background: #07101f;
    color: #fff;
    overflow: hidden;
}

.marquee {
    display: flex;
    gap: 46px;
    white-space: nowrap;
    animation: marquee 24s linear infinite;
    padding: 24px 0;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.marquee span {
    opacity: .9;
}

.project-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-auto-rows: 280px;
    gap: 24px;
}

.project-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #111;
}

.project-card.big {
    grid-row: span 2;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .45s;
}

.project-card:hover img {
    transform: scale(1.06);
}

.project-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, .72), transparent 64%);
}

.project-card div {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 2;
    color: #fff;
}

.project-card span {
    font-weight: 900;
    color: #93c5fd;
    font-size: 13px;
}

.project-card h3 {
    font-size: 28px;
    margin: 8px 0 0;
}

.bg-dark {
    background: #07101f;
    color: #fff;
}

.section-head.light h2 {
    color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial-grid article {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    padding: 30px;
}

.testimonial-grid p {
    font-size: 18px;
    line-height: 1.8;
    color: #e5e7eb;
}

.person {
    display: flex;
    gap: 14px;
    align-items: center;
}

.person img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.person b {
    display: block;
    color: #fff;
}

.person span {
    color: #cbd5e1;
}

.cta-section {
    padding: 80px 0;
    background: #edf4ff;
}

.cta-box {
    background: #fff;
    border-radius: 34px;
    padding: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    max-width: 760px;
    margin-bottom: 0;
}

.footer {
    background: #050b16;
    color: #cbd5e1;
    padding: 64px 0 24px;
}

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

.footer-brand {
    color: #fff;
}

.footer p {
    line-height: 1.7;
    color: #94a3b8;
}

.footer h4 {
    color: #fff;
    margin: 0 0 16px;
}

.footer a {
    display: block;
    margin: 10px 0;
    color: #cbd5e1;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 36px;
    padding-top: 22px;
    color: #64748b;
    font-size: 14px;
}

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    background: #16a34a;
    color: #fff;
    font-weight: 900;
    padding: 15px 20px;
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(22, 163, 74, .35);
}

.page-hero {
    position: relative;
    min-height: 440px;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #111827;
}

.page-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(5, 10, 25, .82), rgba(5, 10, 25, .42)), url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=1920&q=85');
    background-size: cover;
    background-position: center;
    animation: slowZoom 18s ease-in-out infinite alternate;
}

.service-hero:before {
    background-image: linear-gradient(90deg, rgba(5, 10, 25, .82), rgba(5, 10, 25, .42)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1920&q=85');
}

.contact-hero:before {
    background-image: linear-gradient(90deg, rgba(5, 10, 25, .82), rgba(5, 10, 25, .42)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=85');
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.04;
    max-width: 780px;
    margin: 16px 0;
}

.page-hero p {
    font-size: 18px;
    line-height: 1.75;
    max-width: 670px;
    color: #dbeafe;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.2fr;
    gap: 34px;
}

.contact-info {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .07);
}

.contact-info h2 {
    font-size: 42px;
    margin: 12px 0;
}

.contact-info p {
    color: var(--muted);
    line-height: 1.8;
}

.info-box {
    border-top: 1px solid var(--line);
    padding: 18px 0;
    display: grid;
    gap: 5px;
}

.info-box span {
    color: var(--muted);
}

/* === REPAIRED CONTACT FORM (14.png FIXXED) === */
.contact-form {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 18px 60px rgba(15, 23, 42, .07);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

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

.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    border: 1px solid #dbe3ef;
    background: #f8fafc;
    border-radius: 12px;
    padding: 14px 18px;
    font-family: inherit;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: all 0.25s ease;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--brand);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form button, .contact-form .btn {
    align-self: flex-start;
    margin-top: 6px;
}

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

@keyframes slowZoom {
    from { transform: scale(1) }
    to { transform: scale(1.08) }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: .7s;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

@media(max-width:900px) {
    .topbar-inner { height: auto; padding: 10px 0; align-items: flex-start; }
    .topbar-inner, .row-head, .cta-box, .upload-panel { flex-direction: column; }
    .topbar a { margin: 0 12px 0 0; }
    .menu-btn { display: block; }
    .menu { position: absolute; top: 78px; left: 4%; right: 4%; display: none; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 14px; box-shadow: var(--shadow); }
    .menu.open { display: flex; }
    .menu a { border-radius: 14px; }
    .hero { min-height: 720px; }
    .grid-3, .split, .service-grid, .service-grid.six, .testimonial-grid, .footer-grid, .contact-grid, .project-grid { grid-template-columns: 1fr; }
    .project-grid { grid-auto-rows: 330px; }
    .project-card.big { grid-row: span 1; }
    .split-media img { height: 420px; }
    .section { padding: 70px 0; }
    .form-row { grid-template-columns: 1fr; }
    .cta-box { align-items: flex-start; }
    .footer-grid { gap: 18px; }
}

@media(max-width:520px) {
    .container { width: min(100% - 28px, 1180px); }
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 16px; }
    .stats div { width: 100%; }
    .feature-card, .contact-info, .contact-form, .cta-box { padding: 24px; }
    .whatsapp { right: 14px; bottom: 14px; }
    .topbar { font-size: 12px; }
    .topbar-inner div { display: flex; gap: 8px; flex-wrap: wrap; }
    .nav { height: 70px; }
    .menu { top: 70px; }
    .brand span:last-child { font-size: 16px; }
    .brand-mark { width: 40px; height: 40px; }
    .page-hero { min-height: 380px; }
    .page-hero h1 { font-size: 36px; }
}

/* === Geliştirilmiş index bölümleri === */
.head-note { max-width: 420px; color: var(--muted); line-height: 1.75; margin: 0; }
.industries { background: #fff; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff, #f8fbff); border: 1px solid var(--line); border-radius: 28px; padding: 28px; min-height: 250px; box-shadow: 0 16px 55px rgba(15, 23, 42, .06); transition: .3s; }
.industry-card:before { content: ""; position: absolute; right: -52px; top: -52px; width: 130px; height: 130px; border-radius: 50%; background: radial-gradient(circle, rgba(29, 78, 216, .14), transparent 68%); }
.industry-card:hover { transform: translateY(-8px); border-color: #bfdbfe; box-shadow: 0 28px 90px rgba(15, 23, 42, .13); }
.industry-card span { display: inline-flex; width: 44px; height: 44px; border-radius: 15px; background: #eef5ff; color: #0b48b4; align-items: center; justify-content: center; font-weight: 900; margin-bottom: 24px; }
.industry-card h3 { font-size: 22px; margin-bottom: 12px; color: #0f172a; }
.industry-card p { color: var(--muted); line-height: 1.7; margin: 0; }
.process-section { background: #07101f; color: #fff; position: relative; overflow: hidden; }
.process-section:before { content: ""; position: absolute; inset: auto -12% -35% auto; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(6, 182, 212, .32), transparent 65%); filter: blur(2px); }
.process-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.process-left h2 { font-size: clamp(31px, 4vw, 52px); line-height: 1.08; margin: 16px 0; color: #fff; }
.process-left p { color: #cbd5e1; line-height: 1.8; font-size: 17px; }
.dark-btn { background: #fff; color: #0f172a; margin-top: 18px; }
.timeline { display: grid; gap: 18px; }
.timeline-item { display: grid; grid-template-columns: 74px 1fr; gap: 20px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .12); border-radius: 28px; padding: 24px; backdrop-filter: blur(14px); transition: .25s; }
.timeline-item:hover { transform: translateX(8px); background: rgba(255, 255, 255, .12); }
.timeline-item b { width: 58px; height: 58px; border-radius: 20px; background: linear-gradient(135deg, var(--brand), var(--brand2)); display: grid; place-items: center; box-shadow: 0 16px 36px rgba(6, 182, 212, .23); }
.timeline-item h3 { font-size: 22px; margin-bottom: 8px; color: #fff; }
.timeline-item p { color: #cbd5e1; line-height: 1.65; margin: 0; }
.visual-showcase { background: #eef5ff; overflow: hidden; }
.showcase-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.showcase-copy h2 { font-size: clamp(31px, 4vw, 52px); line-height: 1.08; color: #0f172a; margin: 14px 0 18px; }
.showcase-copy p { font-size: 17px; line-height: 1.8; color: var(--muted); }
.mini-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 28px; }
.mini-metrics div { background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 20px; box-shadow: 0 14px 42px rgba(15, 23, 42, .06); }
.mini-metrics strong { font-size: 28px; display: block; color: #0f172a; }
.mini-metrics span { font-size: 13px; color: var(--muted); font-weight: 750; }
.showcase-stack { position: relative; min-height: 570px; }
.showcase-stack img { position: absolute; object-fit: cover; border-radius: 34px; box-shadow: var(--shadow); }
.showcase-stack .img-a { right: 0; top: 0; width: 78%; height: 390px; }
.showcase-stack .img-b { left: 0; bottom: 0; width: 55%; height: 300px; border: 10px solid #eef5ff; }
.glass-badge { position: absolute; right: 34px; bottom: 70px; background: rgba(255, 255, 255, .82); border: 1px solid rgba(255, 255, 255, .65); backdrop-filter: blur(14px); border-radius: 24px; padding: 20px 24px; box-shadow: 0 24px 70px rgba(15, 23, 42, .16); }
.glass-badge b { display: block; color: #0f172a; }
.glass-badge span { color: var(--muted); font-size: 14px; }
.wide-cta { position: relative; overflow: hidden; background: #08111f; color: #fff; padding: 78px 0; }
.wide-cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; animation: slowZoom 18s ease-in-out infinite alternate; background-image: linear-gradient(90deg, rgba(6, 12, 28, .9), rgba(15, 23, 42, .72)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1920&q=85'); }
.wide-cta:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(29, 78, 216, .25), rgba(6, 182, 212, .12)); }
.wide-cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.wide-cta h2 { font-size: clamp(32px, 4.3vw, 58px); line-height: 1.05; margin: 14px 0 16px; max-width: 850px; color: #fff; }
.wide-cta p { color: #dbeafe; font-size: 17px; line-height: 1.75; max-width: 760px; margin: 0; }
.wide-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.light-btn { background: #fff !important; color: #0f172a !important; box-shadow: 0 18px 50px rgba(255, 255, 255, .16) !important; }
.outline-light { border: 1px solid rgba(255, 255, 255, .34); color: #fff; background: rgba(255, 255, 255, .08); backdrop-filter: blur(12px); }

/* === İleri seviye footer === */
.footer.advanced-footer { position: relative; overflow: hidden; background: #030813; color: #cbd5e1; padding: 0 0 24px; }
.footer-glow { position: absolute; border-radius: 50%; filter: blur(40px); opacity: .45; }
.footer-top { position: relative; z-index: 1; padding-top: 46px; }
.footer-newsletter { position: relative; z-index: 1; background: linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .055)); border: 1px solid rgba(255, 255, 255, .12); border-radius: 0 0 32px 32px; padding: 30px; display: flex; align-items: center; justify-content: space-between; gap: 24px; box-shadow: 0 30px 90px rgba(0, 0, 0, .22); }
.footer-newsletter h3 { font-size: 30px; line-height: 1.15; margin: 10px 0 0; color: #fff; max-width: 650px; }
.newsletter-form { display: flex; align-items: center; background: #fff; border-radius: 999px; padding: 6px; min-width: min(440px, 100%); box-shadow: 0 20px 50px rgba(0, 0, 0, .18); }
.newsletter-form input { border: 0; outline: 0; flex: 1; min-width: 0; padding: 0 18px; font-size: 14px; background: transparent; }
.newsletter-form button { border: 0; border-radius: 999px; background: linear-gradient(135deg, var(--brand), var(--brand2)); color: #fff; height: 46px; padding: 0 20px; font-weight: 900; cursor: pointer; white-space: nowrap; }
.advanced-grid { position: relative; z-index: 1; grid-template-columns: 1.45fr .8fr 1fr .9fr 1.05fr; padding-top: 54px; }
.footer-about p { max-width: 360px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.footer-social a { display: inline-flex; margin: 0; padding: 9px 13px; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); font-size: 13px; }
.advanced-footer h4 { position: relative; padding-bottom: 12px; }
.advanced-footer h4:after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 99px; background: linear-gradient(135deg, var(--brand), var(--brand2)); }
.advanced-footer a { transition: .2s; }
.advanced-footer a:hover { color: #fff; transform: translateX(3px); }
.footer-contact-card { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .11); border-radius: 26px; padding: 24px; }
.footer-contact-card span { display: block; margin: 10px 0; color: #cbd5e1; }
.footer-whatsapp { display: inline-flex !important; align-items: center; justify-content: center; margin-top: 16px !important; padding: 12px 16px; border-radius: 999px; background: #16a34a; color: #fff !important; font-weight: 900; }
.footer-bottom { position: relative; z-index: 1; border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 38px; padding-top: 22px; color: #64748b; font-size: 14px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.footer-bottom div { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { display: inline; margin: 0; color: #94a3b8; }
.copyright { display: none; }

@media(max-width:1050px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .advanced-grid { grid-template-columns: 1fr 1fr; }
    .wide-cta-inner, .footer-newsletter { align-items: flex-start; flex-direction: column; }
    .wide-cta-actions { justify-content: flex-start; }
    .newsletter-form { width: 100%; }
}

@media(max-width:900px) {
    .process-wrap, .showcase-grid { grid-template-columns: 1fr; }
    .showcase-stack { min-height: 520px; }
    .mini-metrics { grid-template-columns: 1fr 1fr 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; }
    .industry-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width:620px) {
    .industry-grid, .advanced-grid, .mini-metrics { grid-template-columns: 1fr; }
    .wide-cta { padding: 62px 0; }
    .wide-cta-actions .btn { width: 100%; }
    .timeline-item { grid-template-columns: 1fr; }
    .showcase-stack { min-height: 430px; }
    .showcase-stack .img-a { width: 100%; height: 280px; }
    .showcase-stack .img-b { width: 70%; height: 220px; }
    .glass-badge { right: 16px; bottom: 36px; }
    .footer-newsletter { padding: 24px; }
    .footer-newsletter h3 { font-size: 24px; }
    .newsletter-form { border-radius: 24px; display: grid; gap: 6px; }
    .newsletter-form button { height: 48px; }
    .advanced-grid { padding-top: 36px; }
}

/* Nova logo ve dil seçici düzeltmeleri - v4 */
.brand-logo { width: 150px; height: auto; object-fit: contain; display: block; }
.footer-logo { width: 118px; height: auto; object-fit: contain; display: block; margin-bottom: 16px; }
.topbar-inner > div { display: flex; align-items: center; gap: 18px; }
.topbar-inner a { margin-left: 0; }
.lang-switch { position: relative; display: inline-flex; z-index: 80; }
.lang-current { height: 28px; border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .08); color: #fff; border-radius: 999px; padding: 0 10px; font-weight: 800; cursor: pointer; display: flex; align-items: center; gap: 7px; }
.lang-menu { position: absolute; right: 0; top: 34px; min-width: 118px; background: #fff; color: #0f172a; border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 18px 50px rgba(15, 23, 42, .18); padding: 6px; display: none; }
.lang-switch:hover .lang-menu, .lang-switch.open .lang-menu { display: grid; gap: 4px; }
.lang-menu button, .mobile-lang-switch button { border: 0; background: transparent; text-align: left; border-radius: 10px; padding: 9px 10px; font-weight: 800; cursor: pointer; color: #0f172a; display: inline-flex !important; align-items: center; gap: 7px; white-space: nowrap; }
.lang-menu button:hover, .mobile-lang-switch button:hover { background: #eef5ff; }
.mobile-lang-switch { display: none; gap: 8px; padding: 10px 14px; align-items: center; flex-wrap: wrap; }
.mobile-lang-switch button { background: #eef5ff !important; }
.read-more { display: inline-flex !important; align-items: center; justify-content: center; margin-top: 16px !important; height: 42px; padding: 0 16px; border-radius: 999px; background: #0f172a; color: #fff !important; font-weight: 850; font-size: 14px; }
.detail-actions { margin-top: 26px; }
.detail-actions .dark-btn { background: #0f172a; color: #fff; }
.map-wrap { overflow: hidden; border-radius: 30px; box-shadow: var(--shadow); border: 1px solid var(--line); background: #fff; }
.map-wrap iframe { display: block; width: 100%; height: 420px; border: 0; }
.project-card a { display: block; width: 100%; height: 100%; }

@media(max-width:900px) {
    .brand-logo { width: 118px; }
    .topbar-inner { height: auto; min-height: 42px; padding: 8px 0; }
    .topbar-inner > div { gap: 10px; flex-wrap: wrap; }
    .lang-switch { display: none; }
    .mobile-lang-switch { display: flex; }
    .mobile-lang-switch button { background: #eef5ff; }
    .menu.open { display: flex; }
    .footer-logo { width: 104px; }
}

@media(max-width:520px) {
    .brand-logo { width: 104px; }
    .map-wrap iframe { height: 340px; }
    .topbar-inner > span { display: none; }
}

/* v5 bayraklı dil seçici ve galeri düzenlemeleri */
.flag-img { width: 22px; height: 15px; object-fit: cover; border-radius: 2px; display: inline-block; vertical-align: middle; box-shadow: 0 0 0 1px rgba(255, 255, 255, .18); }
.gallery-hero:before { background-image: linear-gradient(90deg, rgba(5, 10, 25, .84), rgba(5, 10, 25, .42)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1920&q=85'); }
.gallery-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; grid-auto-rows: 260px; gap: 22px; }
.gallery-item { position: relative; border-radius: 28px; overflow: hidden; background: #0f172a; box-shadow: var(--shadow); display: block; }
.gallery-item.large { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: .45s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, .72), transparent 62%); }
.gallery-item span { position: absolute; left: 22px; bottom: 20px; z-index: 2; color: #fff; font-weight: 900; font-size: 20px; }
.video-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { border: 0; background: #fff; text-align: left; border-radius: 30px; padding: 0; overflow: hidden; box-shadow: 0 20px 70px rgba(15, 23, 42, .10); cursor: pointer; transition: .28s; border: 1px solid var(--line); }
.video-card:hover { transform: translateY(-7px); box-shadow: 0 30px 90px rgba(15, 23, 42, .16); }
.video-card video { width: 100%; height: 330px; object-fit: cover; display: block; background: #0f172a; }
.video-card div { padding: 24px; }
.video-card h3 { font-size: 24px; margin-bottom: 10px; }
.video-card p { color: var(--muted); line-height: 1.7; }
.service-card .read-more { width: max-content; }

@media(max-width:900px) {
    .topbar-inner > span { display: none !important; }
    .topbar-inner { align-items: center !important; flex-direction: row !important; }
    .topbar-inner > div { width: 100%; justify-content: center; }
    .topbar .lang-switch { display: none !important; }
    .gallery-grid, .video-gallery-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-auto-rows: 260px; }
    .gallery-item.large { grid-row: span 1; }
}

@media(max-width:520px) {
    .topbar-inner > div { justify-content: center; }
    .topbar a { font-size: 12px; }
    .flag-img { width: 21px; height: 14px; }
    .video-card video { height: 240px; }
}

.lang-menu a, .mobile-lang-switch a { display: flex; align-items: center; gap: 8px; text-decoration: none; color: inherit; padding: 8px 10px; }
.ready-banner { width: 100%; background: linear-gradient(135deg, #07152f, #0b4fd6); padding: 58px 0; color: #fff; }
.ready-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.ready-inner span { opacity: .8; text-transform: uppercase; letter-spacing: .14em; font-size: 12px; }
.ready-inner h2 { margin: 8px 0 0; font-size: 34px; max-width: 760px; }
.page-hero { padding: 120px 0 70px; background: linear-gradient(135deg, #07101f, #0b2f6d); color: #fff; }
.page-hero h1 { font-size: 52px; margin: 0 0 14px; }
.page-hero p { max-width: 720px; opacity: .84; font-size: 18px; }
.detail-content { font-size: 17px; line-height: 1.9; color: #4b5563; }
.gallery-video { width: 100%; height: 260px; border-radius: 22px; object-fit: cover; background: #111; }
.map-frame { width: 100%; height: 420px; border: 0; border-radius: 24px; box-shadow: 0 20px 50px rgba(12, 22, 40, .12); }
.admin-link { position: fixed; left: 18px; bottom: 18px; z-index: 20; background: #111; color: #fff; border-radius: 999px; padding: 10px 14px; text-decoration: none; font-size: 12px; }

@media(max-width:768px) {
    .ready-inner, .contact-grid { display: block; }
    .ready-inner h2, .page-hero h1 { font-size: 32px; }
    .topbar-inner > span { display: none; }
    .ready-inner .btn { margin-top: 20px; }
    .map-frame { height: 320px; }
}

/* === v6 footer/index repair overrides === */
.full-ready { width: 100%; margin: 0; background: radial-gradient(circle at 15% 25%, rgba(6, 182, 212, .35), transparent 30%), linear-gradient(135deg, #07101f 0%, #0b2d67 52%, #0b4fd6 100%); padding: 70px 0; color: #fff; overflow: hidden; position: relative; }
.full-ready:before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px), linear-gradient(0deg, rgba(255, 255, 255, .05) 1px, transparent 1px); background-size: 56px 56px; opacity: .24; }
.ready-inner p { margin: 12px 0 0; max-width: 780px; color: #dbeafe; line-height: 1.7; }
.ready-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.ready-actions .ghost { background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .26); color: #fff; }
.pro-footer { position: relative; overflow: hidden; background: #060b16; color: #e2e8f0; padding: 0 0 28px; border-top: 1px solid rgba(255, 255, 255, .08); }
.pro-footer:before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(0deg, rgba(255, 255, 255, .035) 1px, transparent 1px); background-size: 70px 70px; opacity: .45; }
.footer-glow-a { width: 360px; height: 360px; background: #1d4ed8; left: -120px; top: 80px; }
.footer-glow-b { width: 300px; height: 300px; background: #06b6d4; right: -100px; bottom: 80px; }
.footer-mini { font-size: 12px; text-transform: uppercase; letter-spacing: .16em; color: #93c5fd; font-weight: 900; }
.pro-footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.35fr .75fr 1fr 1.05fr; gap: 34px; padding-top: 54px; }
.footer-brand-block p { color: #b8c3d6; line-height: 1.75; max-width: 360px; }
.pro-footer .footer-logo { width: 126px; height: auto; object-fit: contain; margin: 0 0 18px; }
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.footer-socials a { margin: 0 !important; display: inline-flex; padding: 9px 12px; border-radius: 999px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .1); font-size: 13px; color: #dbeafe; }
.footer-col { display: flex; flex-direction: column; align-items: flex-start; }
.footer-col h4, .pro-footer h4 { color: #fff; margin: 0 0 20px; font-size: 17px; position: relative; padding-bottom: 13px; }
.footer-col h4:after, .pro-footer h4:after { content: ""; position: absolute; left: 0; bottom: 0; width: 34px; height: 3px; border-radius: 99px; background: linear-gradient(135deg, var(--brand), var(--brand2)); }
.pro-footer a { color: #b8c3d6; margin: 0 0 12px; transition: .22s; }
.pro-footer a:hover { color: #fff; transform: translateX(4px); }
.footer-contact-card p { color: #b8c3d6; line-height: 1.7; margin: 4px 0 0; }
.pro-footer .footer-bottom { position: relative; z-index: 1; border-top: 1px solid rgba(255, 255, 255, .08); margin-top: 40px; padding-top: 22px; color: #8fa0b8; font-size: 14px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.process-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.timeline-item { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 28px; box-shadow: 0 18px 60px rgba(15, 23, 42, .07); display: grid; grid-template-columns: 58px 1fr; gap: 16px; }
.timeline-item > span { width: 52px; height: 52px; border-radius: 18px; background: #0f172a; color: #fff; display: grid; place-items: center; font-weight: 900; }
.timeline-item h3 { font-size: 22px; margin: 0 0 10px; }
.timeline-item p { color: var(--muted); line-height: 1.7; margin: 0; }
.gallery-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-thumb { position: relative; border-radius: 28px; overflow: hidden; min-height: 280px; box-shadow: var(--shadow); background: #111; }
.gallery-thumb img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; transition: .4s; }
.gallery-thumb:hover img { transform: scale(1.06); }
.gallery-thumb:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, .7), transparent 60%); }
.gallery-thumb span { position: absolute; left: 22px; bottom: 22px; z-index: 2; color: #fff; font-weight: 900; font-size: 20px; }
.mini-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mini-metrics div { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 32px; text-align: center; box-shadow: 0 18px 60px rgba(15, 23, 42, .06); }
.mini-metrics strong { display: block; font-size: 42px; color: #0f172a; }
.mini-metrics span { display: block; color: var(--muted); font-weight: 750; margin-top: 6px; }
.reveal { opacity: 0; transform: translateY(22px); animation: softReveal .75s ease forwards; }
.reveal:nth-child(2) { animation-delay: .1s; }
.reveal:nth-child(3) { animation-delay: .2s; }

@keyframes softReveal { to { opacity: 1; transform: none } }

@media(max-width:1050px) {
    .pro-footer-grid { grid-template-columns: 1fr 1fr; }
    .process-wrap, .gallery-preview-grid { grid-template-columns: 1fr 1fr; }
    .footer-newsletter, .ready-inner { align-items: flex-start; flex-direction: column; }
    .ready-actions { justify-content: flex-start; }
    .newsletter-form { width: 100%; }
}

@media(max-width:900px) {
    .pro-footer-grid, .process-wrap, .gallery-preview-grid, .mini-metrics { grid-template-columns: 1fr; }
    .footer-newsletter { padding: 24px; }
    .newsletter-form { border-radius: 24px; display: grid; gap: 6px; }
    .newsletter-form button { height: 48px; }
    .pro-footer .footer-bottom { align-items: flex-start; flex-direction: column; }
    .ready-inner h2 { font-size: 30px; }
    .ready-actions .btn { width: 100%; }
    .topbar .lang-switch { display: none; }
    .mobile-lang-switch { display: flex !important; }
}

/* v7 corporate refinements */
.corporate-promise { margin-top: -70px; position: relative; z-index: 5; padding-top: 0; }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.promise-card { background: #fff; border: 1px solid rgba(226, 232, 240, .9); border-radius: 30px; padding: 30px; box-shadow: 0 22px 70px rgba(15, 23, 42, .10); min-height: 250px; }
.promise-card.dark { background: linear-gradient(145deg, #08111f, #13294c); color: #fff; border-color: rgba(255, 255, 255, .12); }
.promise-card span { display: inline-flex; margin-bottom: 22px; padding: 8px 12px; border-radius: 999px; background: #eef5ff; color: #155bd5; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; }
.promise-card.dark span { background: rgba(255, 255, 255, .12); color: #a5f3fc; }
.promise-card h3 { font-size: 26px; line-height: 1.15; margin-bottom: 14px; }
.promise-card p { color: var(--muted); line-height: 1.75; margin: 0; }
.promise-card.dark p { color: #cbd5e1; }
.video-showcase { background: #07101f; color: #fff; position: relative; overflow: hidden; }
.video-showcase:before { content: ""; position: absolute; inset: auto -15% -35% auto; width: 560px; height: 560px; border-radius: 50%; background: radial-gradient(circle, rgba(29, 78, 216, .45), transparent 65%); filter: blur(4px); }
.video-feature-wrap { display: grid; grid-template-gradient: .9fr 1.35fr; gap: 42px; align-items: center; position: relative; z-index: 2; grid-template-columns: .9fr 1.35fr; }
.video-feature-text h2 { font-size: clamp(32px, 4vw, 54px); line-height: 1.04; margin: 14px 0 16px; }
.video-feature-text p { color: #cbd5e1; line-height: 1.85; font-size: 17px; max-width: 560px; }
.video-feature-player { border-radius: 34px; overflow: hidden; background: #000; border: 1px solid rgba(255, 255, 255, .12); box-shadow: 0 30px 90px rgba(0, 0, 0, .35); }
.video-feature-player video { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.video-thumb { position: relative; display: block; background: #000; aspect-ratio: 16/10; overflow: hidden; }
.video-thumb video { width: 100%; height: 100%; object-fit: cover; opacity: .75; transition: .35s; }
.video-card:hover .video-thumb video { transform: scale(1.04); opacity: .92; }
.video-thumb i { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 68px; height: 68px; border-radius: 50%; background: #fff; color: #0f172a; display: grid; place-items: center; font-style: normal; font-size: 26px; box-shadow: 0 18px 40px rgba(0, 0, 0, .28); }
.video-card strong { display: block; padding: 22px 22px 6px; font-size: 21px; color: #0f172a; }
.video-card small { display: block; padding: 0 22px 24px; color: #1d4ed8; font-weight: 900; }
.video-modal { position: fixed; inset: 0; z-index: 999; display: none; align-items: center; justify-content: center; padding: 22px; }
.video-modal.active { display: flex; }
.video-modal-backdrop { position: absolute; inset: 0; background: rgba(2,6,23,.82); backdrop-filter: blur(10px); }
.video-modal-box { position: relative; z-index: 2; width: min(1100px, 94vw); background: #000; border-radius: 28px; overflow: hidden; box-shadow: 0 35px 120px rgba(0,0,0,.55); border: 1px solid rgba(255, 255, 255, .14); }
.video-modal-box video { display: block; width: 100%; max-height: 78vh; background: #000; }
.video-modal-close { position: absolute; right: 14px; top: 12px; z-index: 3; width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .92); color: #0f172a; font-size: 30px; line-height: 1; cursor: pointer; }

@media(max-width:1050px) {
    .promise-grid, .video-gallery-grid { grid-template-columns: 1fr 1fr; }
    .video-feature-wrap { grid-template-columns: 1fr; }
}

@media(max-width:720px) {
    .corporate-promise { margin-top: -35px; }
    .promise-grid, .video-gallery-grid { grid-template-columns: 1fr; }
    .promise-card { min-height: auto; padding: 24px; }
    .video-showcase { padding-top: 70px; padding-bottom: 70px; }
    .video-feature-text .btn { width: 100%; text-align: center; }
    .video-modal { padding: 10px; }
    .video-modal-box { border-radius: 18px; }
}

/* v8 premium detail pages + corporate copy refinements */
.detail-hero { position: relative; min-height: 620px; display: flex; align-items: center; color: #fff; overflow: hidden; background: #07101f; }
.detail-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); animation: slowZoom 18s ease-in-out infinite alternate; }
.detail-hero:after { content: ""; position: absolute; inset: auto -18% -45% auto; width: 720px; height:720px; border-radius: 50%; background: radial-gradient(circle, rgba(6, 182, 212, .34), transparent 65%); filter: blur(4px); }
.detail-hero-inner { position: relative; z-index: 2; padding: 70px 0 58px; }
.breadcrumb { display: flex; align-items: center; gap: 10px; margin-bottom: 24px; color: #cbd5e1; font-size: 14px; font-weight: 750; }
.breadcrumb a { color: #e2e8f0; }
.breadcrumb span { opacity: .55; }
.light-kicker { color: #a5f3fc; }
.detail-hero h1 { font-size: clamp(42px, 6vw, 78px); line-height: .98; max-width: 930px; margin: 18px 0 18px; }
.detail-hero p { font-size: 19px; line-height: 1.78; color: #dbeafe; max-width: 760px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-badges span { display: inline-flex; align-items: center; min-height: 42px; padding: 0 16px; border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .09); backdrop-filter: blur(12px); border-radius: 999px; color: #eef6ff; font-weight: 850; font-size: 14px; }
.detail-layout { display: grid; grid-template-columns: 1fr 360px; gap: 34px; align-items: start; }
.detail-main-card, .case-study-card { background: #fff; border: 1px solid var(--line); border-radius: 34px; overflow: hidden; box-shadow: 0 24px 80px rgba(15, 23, 42, .10); }
.detail-main-image { width: 100%; height: 430px; object-fit: cover; }
.detail-copy, .case-study-copy { padding: 40px; }
.detail-copy h2, .case-study-copy h2 { font-size: clamp(30px, 3vw, 44px); line-height: 1.12; margin: 14px 0 18px; color: #0f172a; }
.detail-sidebar { position: sticky; top: 110px; display: grid; gap: 20px; }
.quote-panel { background: linear-gradient(145deg, #08111f, #13294c); color: #fff; border-radius: 30px; padding: 30px; box-shadow: var(--shadow); overflow: hidden; position: relative; }
.quote-panel:after { content: ""; position: absolute; right: -70px; bottom: -80px; width: 190px; height: 190px; border-radius: 50%; background: rgba(6, 182, 212, .28); }
.quote-panel h3 { font-size: 26px; line-height: 1.15; margin-bottom: 12px; }
.quote-panel p { color: #cbd5e1; line-height: 1.75; margin-bottom: 22px; }
.quote-panel .btn { width: 100%; position: relative; z-index: 2; }
.side-list { background: #fff; border: 1px solid var(--line); border-radius: 28px; padding: 26px; box-shadow: 0 18px 60px rgba(15, 23, 42, .07); display: grid; gap: 12px; }
.side-list strong { font-size: 18px; color: #0f172a; margin-bottom: 6px; }
.side-list span { padding: 13px 14px; border-radius: 16px; background: #f3f7ff; color: #334155; font-weight: 750; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: #fff; border: 1px solid var(--line); border-radius: 30px; padding: 30px; box-shadow: 0 18px 60px rgba(15, 23, 42, .07); }
.value-card b { display: inline-flex; align-items: center; justify-content: center; min-width: 48px; height: 38px; padding: 0 12px; border-radius: 14px; background: #0f172a; color: #fff; margin-bottom: 22px; }
.value-card h3 { font-size: 24px; margin-bottom: 12px; color: #0f172a; }
.value-card p { line-height: 1.75; color: var(--muted); margin: 0; }
.project-detail-layout { display: grid; gap: 28px; }
.case-study-card { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.case-study-image img { height: 100%; min-height: 520px; width: 100%; object-fit: cover; }
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.case-metrics article { background: #fff; border: 1px solid var(--line); border-radius: 26px; padding: 24px; box-shadow: 0 16px 50px rgba(15, 23, 42, .06); }
.case-metrics strong { display: block; font-size: 34px; color: #1d4ed8; margin-bottom: 8px; }
.case-metrics span { font-weight: 850; color: #1f2937; line-height: 1.45; }
.compact-projects { grid-template-columns: 1fr 1fr; grid-auto-rows: 360px; }
.compact-projects .project-card.big { grid-row: auto; }
.related-section { padding-top: 86px; }
.promise-card h3 { letter-spacing: -.02em; }
.video-feature-text h2 { letter-spacing: -.03em; }

@media(max-width:1050px) {
    .detail-layout { grid-template-columns: 1fr; }
    .detail-sidebar { position: static; }
    .case-study-card { grid-template-columns: 1fr; }
    .case-study-image img { min-height: 360px; }
    .value-grid, .case-metrics, .compact-projects { grid-template-columns: 1fr; }
    .detail-hero { min-height: 560px; }
}

@media(max-width:720px) {
    .detail-hero h1 { font-size: 40px; }
    .detail-hero p { font-size: 17px; }
    .detail-copy, .case-study-copy { padding: 26px; }
    .detail-main-image { height: 300px; }
    .hero-badges span { width: 100%; justify-content: center; }
    .detail-body-section { padding-top: 70px; }
    .compact-projects { grid-auto-rows: 320px; }
}