/* Colga Bilişim — homepage-only stylesheet (distinct chrome; extracted from live inline 2026-06-12). */
:root {
      --paper: #f4f6fa;
      --paper-2: #e6ecf5;
      --ink: #0f1b2e;
      --muted: #5a6a82;
      --rule: rgba(15, 27, 46, 0.10);
      --accent: #1f5fc7;
      --accent-light: #4d8bf0;
      --display: "Bricolage Grotesque", "Manrope", sans-serif;
      --serif: Georgia, "Times New Roman", serif;
    }

    * {
      box-sizing: border-box;
    }

    html { scroll-behavior: smooth; scroll-padding-top: 100px; }

    html,
    body {
      margin: 0;
      padding: 0;
    }

    body {
      background: var(--paper);
      color: var(--ink);
      font-family: "Manrope", system-ui, sans-serif;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .container {
      max-width: 1280px;
      padding: 0 clamp(20px, 5vw, 80px);
      margin: 0 auto;
    }

    a {
      color: inherit;
    }

    button {
      font-family: inherit;
    }

    section[id] { scroll-margin-top: 0; }

    .btn-primary {
      background: var(--accent);
      color: var(--paper);
      padding: 13px 22px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14.5px;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: transform 0.15s ease, opacity 0.15s ease;
      align-self: flex-start;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      opacity: 0.92;
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      padding: 12px 20px;
      text-decoration: none;
      font-weight: 600;
      font-size: 14.5px;
      border: 1px solid var(--rule);
      border-radius: 12px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.15s ease, border-color 0.15s ease;
      align-self: flex-start;
    }

    .btn-ghost:hover {
      background: var(--paper-2);
      border-color: var(--ink);
    }

    .footer-title {
      font-size: 14px;
      color: var(--ink);
      margin-bottom: 16px;
      font-weight: 600;
      font-family: var(--display);
      letter-spacing: -0.01em;
    }

    /* "In progress" status pill — homepage project cards */
    .status-progress {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      line-height: 1;
      color: #7a4d00;
      background: #fff4e0;
      border: 1px solid #eac77a;
      padding: 5px 11px;
      border-radius: 999px;
    }

    .status-progress::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #d49200;
      flex: none;
    }

    input::placeholder,
    textarea::placeholder {
      color: var(--muted);
      opacity: 0.7;
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--ink) !important;
    }

    ::selection {
      background: var(--accent);
      color: var(--paper);
    }

    /* Top bar */
    .topbar {
      background: var(--ink);
      color: var(--paper);
      font-size: 13px;
    }

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

    .topbar .left {
      display: flex;
      gap: 18px;
      align-items: center;
      opacity: 0.85;
    }

    .topbar .right {
      display: flex;
      gap: 18px;
      align-items: center;
    }

    .topbar .sep {
      opacity: 0.4;
    }

    .topbar a {
      text-decoration: none;
    }

    .topbar .tel {
      color: var(--accent-light);
      font-weight: 600;
    }

    /* Nav */
    nav.main {
      position: sticky;
      top: 0;
      z-index: 50;
      background: var(--paper);
    }

    nav.main .inner {
      position: relative;
    }

    nav.main .inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 88px;
      gap: 32px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--ink);
    }

    .brand .mark {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      background: var(--accent);
      color: var(--paper);
      border-radius: 14px;
    }

    .brand .mark svg,
    .footer-mark svg {
      width: 26px;
      height: 26px;
      display: block;
    }

    .footer-mark {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      background: var(--accent);
      color: var(--paper);
      border-radius: 14px;
    }

    .brand .name {
      font-family: var(--display);
      font-weight: 500;
      font-size: 22px;
      letter-spacing: -0.015em;
      line-height: 1;
      display: block;
    }

    .brand .sub {
      font-size: 12.5px;
      color: var(--muted);
      margin-top: 4px;
      display: block;
      line-height: 1;
    }

    nav.main ul {
      display: flex;
      gap: 32px;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 15px;
    }

    nav.main ul a {
      color: var(--muted);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.15s ease;
    }

    nav.main ul a:hover,
    nav.main ul a.active {
      color: var(--ink);
      font-weight: 600;
    }

    nav.main .btn-primary {
      align-self: center;
    }

    /* Photo blocks */
    .photo {
      margin: 0;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
    }

    .photo .dots {
      position: absolute;
      inset: 0;
      background-image: radial-gradient(currentColor 1px, transparent 1.4px);
      background-size: 22px 22px;
      opacity: 0.4;
    }

    .photo figcaption {
      position: absolute;
      left: 18px;
      bottom: 16px;
      font-size: 13px;
      font-style: italic;
      font-family: var(--serif);
    }

    .photo .badge {
      position: absolute;
      right: 16px;
      top: 16px;
      background: rgba(255, 255, 255, 0.92);
      color: #3a3528;
      padding: 5px 12px;
      font-size: 12px;
      border-radius: 999px;
      font-weight: 500;
    }

    .tone-warm {
      background: #cfd6e0;
      color: #37425a;
    }

    .tone-warm .dots {
      color: #bcc4d2;
    }

    .tone-warm figcaption {
      color: #37425a;
    }

    .tone-sand {
      background: #aebbcf;
      color: #1a2640;
    }

    .tone-sand .dots {
      color: #9ba9c0;
    }

    .tone-sand figcaption {
      color: #1a2640;
    }

    .tone-deep {
      background: #162338;
      color: #b9c3d6;
    }

    .tone-deep .dots {
      color: #202d44;
    }

    .tone-deep figcaption {
      color: #b9c3d6;
    }

    .tone-sage {
      background: #8295b3;
      color: #e8edf6;
    }

    .tone-sage .dots {
      color: #728299;
    }

    .tone-sage figcaption {
      color: #e8edf6;
    }

    .tone-rust {
      background: #2e5fb8;
      color: #dfeafb;
    }

    .tone-rust .dots {
      color: #2756a8;
    }

    .tone-rust figcaption {
      color: #dfeafb;
    }

    /* Hero */
    .hero .inner {
      padding-block: 40px 80px;
    }

    .hero .grid {
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 48px;
      align-items: stretch;
    }

    .hero .col-l {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding-top: 24px;
    }

    .eyebrow-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      background: var(--paper-2);
      padding: 8px 14px;
      border-radius: 999px;
      font-size: 13px;
      color: var(--muted);
    }

    .eyebrow-pill .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    h1.display {
      font-family: var(--display);
      font-size: clamp(44px, 5.4vw, 78px);
      line-height: 1.02;
      letter-spacing: -0.025em;
      font-weight: 500;
      margin: 0 0 24px;
      color: var(--ink);
    }

    h1.display em {
      font-family: var(--display);
      color: var(--accent);
      font-style: italic;
      font-weight: 400;
    }

    .hero p.lead {
      font-size: 18.5px;
      line-height: 1.55;
      color: var(--muted);
      max-width: 540px;
      margin: 0 0 32px;
    }

    .hero .ctas {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .hero .stats {
      margin-top: 56px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .hero .stat-k {
      font-family: var(--display);
      font-size: 38px;
      font-weight: 500;
      letter-spacing: -0.025em;
      color: var(--ink);
      line-height: 1;
    }

    .hero .stat-v {
      font-size: 13px;
      color: var(--muted);
      margin-top: 8px;
    }

    .hero .col-r {
      display: grid;
      grid-template-rows: 1.6fr 1fr;
      gap: 16px;
    }

    .hero .col-r .row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .hero .photo.fill {
      height: 100%;
      aspect-ratio: auto;
    }

    /* Section header */
    .sec-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 40px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }

    .sec-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--paper);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 13px;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 18px;
    }

    .sec-pill .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--accent);
    }

    h2.display {
      font-family: var(--display);
      font-size: clamp(36px, 4.4vw, 56px);
      letter-spacing: -0.025em;
      line-height: 1.04;
      font-weight: 500;
      margin: 0;
      color: var(--ink);
    }

    /* Services */
    #hizmetler {
      background: var(--paper-2);
    }

    #hizmetler .inner {
      padding-block: 96px;
    }

    .svc-list {
      display: flex;
      flex-direction: column;
    }

    .svc-item {
      display: grid;
      grid-template-columns: 1fr 1.6fr;
      gap: 40px;
      padding: 36px 0;
      border-bottom: 1px solid var(--rule);
    }

    .svc-item:first-child {
      padding-top: 0;
    }

    .svc-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .svc-item h3 {
      font-family: var(--display);
      font-size: 24px;
      font-weight: 500;
      letter-spacing: -0.015em;
      margin: 0;
      color: var(--ink);
      line-height: 1.25;
    }

    .svc-item p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
      margin: 0 0 16px;
    }

    .scope {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .scope span {
      font-size: 12px;
      padding: 5px 11px;
      background: var(--paper);
      border-radius: 999px;
      color: var(--ink);
      align-self: flex-start;
    }

    /* About */
    #hakkimizda .inner {
      padding-block: 96px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 56px;
      align-items: start;
    }

    .about-photos {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 16px;
      margin-bottom: 32px;
    }

    .about-photos .col {
      display: grid;
      grid-template-rows: 1fr 1fr;
      gap: 16px;
    }

    .about-photos .photo.tall {
      aspect-ratio: 4 / 5;
      border-radius: 24px;
    }

    .about-photos .photo.small {
      aspect-ratio: auto;
      height: 100%;
      border-radius: 20px;
    }

    .about-lede {
      font-family: var(--display);
      font-size: 26px;
      line-height: 1.35;
      color: var(--ink);
      margin: 0 0 24px;
      font-weight: 400;
      letter-spacing: -0.015em;
    }

    .about-body {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.7;
      margin: 0;
    }

    .about-aside {
      background: var(--paper-2);
      border-radius: 24px;
      padding: 32px;
    }

    .about-aside .title {
      font-family: var(--display);
      font-size: 18px;
      font-weight: 500;
      letter-spacing: -0.01em;
      margin-bottom: 20px;
    }

    .about-aside dl {
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .about-aside .row {
      display: grid;
      grid-template-columns: 140px 1fr;
      padding: 14px 0;
      border-bottom: 1px solid var(--rule);
      font-size: 14.5px;
    }

    .about-aside .row:last-of-type {
      border-bottom: none;
    }

    .about-aside dt {
      color: var(--muted);
    }

    .about-aside dd {
      margin: 0;
      color: var(--ink);
      font-weight: 500;
    }

    /* Process */
    #surec {
      background: var(--paper-2);
    }

    #surec .inner {
      padding-block: 96px;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .step {
      background: var(--paper);
      border-radius: 20px;
      padding: 26px 22px 28px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      box-shadow: 0 1px 0 rgba(28, 26, 21, 0.04);
    }

    .step .n {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--accent);
      color: var(--paper);
      display: grid;
      place-items: center;
      font-family: var(--display);
      font-weight: 600;
      font-size: 14px;
    }

    .step h3 {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 500;
      letter-spacing: -0.015em;
      margin: 0;
      color: var(--ink);
    }

    .step p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      margin: 0;
    }

    /* Projects */
    #projeler .inner {
      padding-block: 96px;
    }

    .project-featured {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      background: var(--paper-2);
      border-radius: 28px;
      overflow: hidden;
      gap: 0;
      margin-bottom: 28px;
    }

    .project-featured .photo {
      aspect-ratio: 3 / 2;
      border-radius: 0;
    }

    .project-featured .body {
      padding: 40px;
      display: flex;
      flex-direction: column;
    }

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

    .tags span {
      font-size: 12.5px;
      padding: 5px 12px;
      background: var(--paper);
      border-radius: 999px;
      color: var(--muted);
    }

    .project-featured h3 {
      font-family: var(--display);
      font-size: 30px;
      font-weight: 500;
      letter-spacing: -0.02em;
      margin: 0;
      line-height: 1.15;
      color: var(--ink);
    }

    .project-featured p {
      color: var(--muted);
      font-size: 15.5px;
      line-height: 1.65;
      margin-top: 14px;
    }

    .project-featured .scope-block {
      margin-top: auto;
      padding-top: 24px;
    }

    .project-featured .scope-block .lbl {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 10px;
    }

    .project-featured .scope-block .scope-line {
      font-size: 15px;
      color: var(--ink);
      margin: 0 0 24px;
      line-height: 1.5;
    }

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

    .project-card {
      background: var(--paper-2);
      border-radius: 24px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .project-card .photo {
      aspect-ratio: 4 / 3;
      border-radius: 0;
    }

    .project-card .body {
      padding: 22px 24px 24px;
    }

    .project-card .meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 10px;
      font-size: 12.5px;
      color: var(--muted);
    }

    .project-card h3 {
      font-family: var(--display);
      font-size: 21px;
      font-weight: 500;
      letter-spacing: -0.015em;
      margin: 0 0 8px;
      color: var(--ink);
      line-height: 1.2;
    }

    .project-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      margin: 0 0 16px;
    }

    .project-card .foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 14px;
      border-top: 1px solid var(--rule);
    }

    .project-card .foot .scope-line {
      font-size: 12.5px;
      color: var(--ink);
    }

    .project-card .foot a {
      color: var(--accent);
      text-decoration: none;
      font-weight: 600;
      font-size: 13px;
    }

    /* Quote */
    .quote {
      background: var(--paper-2);
    }

    .quote .inner {
      padding-block: 80px;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 56px;
      align-items: center;
    }

    .quote .photo {
      aspect-ratio: 4 / 5;
      border-radius: 24px;
    }

    .quote .mark {
      font-family: var(--display);
      font-size: 64px;
      line-height: 1;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .quote blockquote {
      font-family: var(--display);
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.3;
      letter-spacing: -0.015em;
      margin: 0 0 28px;
      color: var(--ink);
      font-weight: 400;
    }

    .quote .who {
      font-weight: 600;
      font-size: 15px;
    }

    .quote .where {
      font-size: 14px;
      color: var(--muted);
    }

    /* Logos */
    .logos .inner {
      padding-block: 48px;
    }

    .logos .head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .logos .head .title {
      font-family: var(--display);
      font-size: 20px;
      font-weight: 500;
      color: var(--ink);
      letter-spacing: -0.015em;
    }

    .logos .head .sub {
      font-size: 13.5px;
      color: var(--muted);
    }

    .logos .grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .logos .item {
      padding: 26px 16px;
      text-align: center;
      background: var(--paper-2);
      border-radius: 16px;
      font-family: var(--display);
      font-size: 15px;
      font-weight: 500;
      color: var(--muted);
      letter-spacing: -0.01em;
    }

    /* FAQ */
    #sss {
      background: var(--paper-2);
    }

    #sss .inner {
      padding-block: 96px;
    }

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

    .faq-item {
      background: var(--paper);
      border-radius: 20px;
      padding: 22px 26px;
    }

    .faq-item summary {
      cursor: pointer;
      font-family: var(--display);
      font-size: 19px;
      font-weight: 500;
      letter-spacing: -0.01em;
      color: var(--ink);
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      color: var(--accent);
      font-size: 22px;
      font-weight: 400;
      transition: transform 0.2s ease;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-item p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
      margin: 14px 0 0;
    }

    /* Contact */
    #iletisim .inner {
      padding-block: 96px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
    }

    .contact-lede {
      color: var(--muted);
      font-size: 16.5px;
      line-height: 1.65;
      max-width: 420px;
      margin: 0 0 32px;
    }

    .contact-info {
      display: grid;
      gap: 0;
      margin: 0;
      background: var(--paper-2);
      border-radius: 24px;
      padding: 8px 24px;
    }

    .contact-info .row {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 16px;
      padding: 16px 0;
      border-bottom: 1px solid var(--rule);
    }

    .contact-info .row:last-of-type {
      border-bottom: none;
    }

    .contact-info dt {
      font-size: 13.5px;
      color: var(--muted);
    }

    .contact-info dd {
      margin: 0;
      font-size: 15px;
      color: var(--ink);
    }

    .contact-info dd a {
      color: var(--ink);
      text-decoration: none;
      border-bottom: 1px solid var(--accent);
      padding-bottom: 2px;
    }

    .contact-form {
      background: var(--paper-2);
      border-radius: 28px;
      padding: 36px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-form .head .h {
      font-family: var(--display);
      font-weight: 500;
      font-size: 24px;
      letter-spacing: -0.015em;
      margin-bottom: 6px;
    }

    .contact-form .head .s {
      font-size: 13.5px;
      color: var(--muted);
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .field label {
      font-size: 13px;
      color: var(--muted);
      font-weight: 500;
    }

    .field input,
    .field textarea,
    .field select {
      background: var(--paper);
      border: 1px solid var(--rule);
      color: var(--ink);
      padding: 13px 16px;
      font-size: 14.5px;
      font-family: inherit;
      width: 100%;
      outline: none;
      border-radius: 12px;
    }

    .field.row2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 8px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .form-foot label {
      display: flex;
      gap: 10px;
      align-items: center;
      font-size: 13px;
      color: var(--muted);
    }

    /* CTA strip */
    .cta-strip .inner {
      padding-block: 24px 80px;
    }

    .cta-card {
      background: var(--ink);
      color: var(--paper);
      border-radius: 28px;
      padding: 40px 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      flex-wrap: wrap;
    }

    .cta-card .left {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .cta-card .badge {
      background: var(--accent);
      color: var(--paper);
      padding: 6px 14px;
      font-size: 12.5px;
      font-weight: 600;
      border-radius: 999px;
    }

    .cta-card .title {
      font-family: var(--display);
      font-size: clamp(22px, 2.4vw, 30px);
      font-weight: 500;
      letter-spacing: -0.02em;
    }

    .cta-card .call {
      background: var(--paper);
      color: var(--ink);
      padding: 14px 22px;
      text-decoration: none;
      font-weight: 600;
      font-size: 15px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      border-radius: 12px;
    }

    /* Footer */
    footer {
      background: var(--paper-2);
    }

    footer .inner {
      padding-block: 72px 32px;
    }

    footer .grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      gap: 48px;
    }

    footer .brand-block {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    footer p {
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.65;
      max-width: 320px;
      margin: 0;
    }

    footer ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    footer ul a {
      color: var(--ink);
      text-decoration: none;
      font-size: 14.5px;
      display: inline-block;
      padding-block: 6px;
    }

    footer ul a:hover {
      color: var(--accent);
    }

    footer .legal {
      margin-top: 56px;
      padding-top: 24px;
      border-top: 1px solid var(--rule);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
      color: var(--muted);
    }

    footer .legal .links {
      display: flex;
      gap: 22px;
    }

    footer .legal a {
      color: inherit;
      text-decoration: none;
    }

    /* Mobile nav toggle */
    .nav-toggle {
      display: none;
      background: transparent;
      border: 1px solid var(--rule);
      border-radius: 12px;
      width: 44px;
      height: 44px;
      padding: 0;
      cursor: pointer;
      align-items: center;
      justify-content: center;
      color: var(--ink);
    }

    .nav-toggle svg {
      width: 22px;
      height: 22px;
      display: block;
    }

    /* Tablet */
    @media (max-width: 1100px) {
      .hero .stats {
        grid-template-columns: repeat(4, 1fr);
      }

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

      .step {
        padding: 22px 16px 24px;
      }

      footer .grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 980px) {
      nav.main .inner {
        height: 72px;
        gap: 16px;
      }

      nav.main .btn-primary {
        display: none;
      }

      nav.main ul {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        padding: 8px 24px 16px;
        background: var(--paper);
        border-bottom: 1px solid var(--rule);
        box-shadow: 0 12px 24px -16px rgba(15, 27, 46, 0.20);
        display: none;
      }

      nav.main.open ul {
        display: flex;
      }

      nav.main ul li {
        width: 100%;
      }

      nav.main ul a {
        display: block;
        padding: 14px 0;
        font-size: 16px;
        border-bottom: 1px solid var(--rule);
      }

      nav.main ul li:last-child a {
        border-bottom: none;
      }

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

      .hero .grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .hero .inner {
        padding-block: 24px 64px;
      }

      .hero .col-l {
        padding-top: 0;
      }

      .hero .col-r {
        grid-template-rows: auto auto;
        gap: 12px;
      }

      .hero .col-r>.photo.fill {
        aspect-ratio: 16 / 10;
        height: auto;
      }

      .hero .col-r .row .photo.fill {
        aspect-ratio: 4 / 3;
        height: auto;
      }

      .svc-item {
        gap: 24px;
      }

      #hizmetler .inner,
      #hakkimizda .inner,
      #surec .inner,
      #projeler .inner,
      #iletisim .inner,
      #sss .inner {
        padding-block: 72px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .about-photos {
        grid-template-columns: 1fr 1fr;
      }

      .about-photos .photo.small {
        aspect-ratio: 4 / 3;
        height: auto;
      }

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

      .project-featured {
        grid-template-columns: 1fr;
      }

      .project-featured .photo {
        aspect-ratio: 16 / 10;
      }

      .project-featured .body {
        padding: 28px;
      }

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

      .quote .inner {
        grid-template-columns: 1fr;
        padding-block: 64px;
        gap: 32px;
      }

      .quote .photo {
        aspect-ratio: 4 / 3;
        max-width: 320px;
      }

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

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

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .contact-form {
        padding: 28px;
      }

      .cta-card {
        padding: 28px 32px;
      }

      .cta-strip .inner {
        padding-block: 16px 64px;
      }

      footer .inner {
        padding-block: 56px 28px;
      }

      footer .grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }

      .sec-head {
        margin-bottom: 36px;
      }
    }

    @media (max-width: 600px) {
      .topbar {
        font-size: 12px;
      }

      .topbar .inner {
        height: auto;
        padding: 8px 0;
        flex-wrap: wrap;
        gap: 6px;
      }

      .topbar .left,
      .topbar .right {
        gap: 8px;
      }

      .topbar .left span:nth-child(2),
      .topbar .left span:nth-child(3) {
        display: none;
      }

      .topbar .right a:not(.tel),
      .topbar .right .sep {
        display: none;
      }

      nav.main .inner {
        height: 64px;
      }

      .brand .mark {
        width: 38px;
        height: 38px;
        font-size: 18px;
      }

      .brand .name {
        font-size: 18px;
      }

      .brand .sub {
        font-size: 11.5px;
      }

      .hero .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-top: 40px;
      }

      .hero .stat-k {
        font-size: 32px;
      }

      .hero .ctas {
        width: 100%;
      }

      .hero .ctas .btn-primary,
      .hero .ctas .btn-ghost {
        flex: 1;
        justify-content: center;
      }

      .svc-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }

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

      .about-photos {
        grid-template-columns: 1fr;
      }

      .about-photos .col {
        grid-template-rows: auto auto;
      }

      .about-photos .photo.tall {
        aspect-ratio: 4 / 3;
      }

      .about-aside {
        padding: 24px;
      }

      .about-aside .row {
        grid-template-columns: 110px 1fr;
      }

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

      .project-featured .body {
        padding: 24px;
      }

      .contact-info .row {
        grid-template-columns: 110px 1fr;
        gap: 12px;
      }

      .contact-form {
        padding: 22px;
      }

      .field.row2 {
        grid-template-columns: 1fr;
      }

      .form-foot {
        flex-direction: column;
        align-items: stretch;
      }

      .form-foot .btn-primary {
        justify-content: center;
        align-self: stretch;
      }

      .cta-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 18px;
      }

      .cta-card .call {
        align-self: stretch;
        justify-content: center;
      }

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

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

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

      h1.display {
        font-size: clamp(36px, 10vw, 56px);
      }

      h2.display {
        font-size: clamp(30px, 8vw, 44px);
      }

      .sec-head {
        gap: 24px;
        margin-bottom: 32px;
      }
    }


    .photo img.cover {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .photo .dots {
      z-index: 1;
    }

    .photo figcaption {
      z-index: 2;
    }

    .photo .badge {
      z-index: 2;
    }

    .project-card,
    .project-featured {
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .project-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 32px -12px rgba(15, 27, 46, 0.22);
    }

    .project-featured:hover {
      box-shadow: 0 8px 32px -12px rgba(15, 27, 46, 0.18);
    }

    .project-modal {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: rgba(15, 27, 46, 0.92);
      backdrop-filter: blur(8px);
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .project-modal.open {
      display: flex;
    }

    .modal-inner {
      background: var(--paper);
      border-radius: 28px;
      max-width: 960px;
      width: 100%;
      max-height: calc(100vh - 40px);
      overflow-y: auto;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 210;
      background: rgba(255, 255, 255, 0.92);
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 22px;
      display: grid;
      place-items: center;
      color: var(--ink);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .modal-close:hover {
      background: #fff;
    }

    .modal-gallery {
      position: relative;
      aspect-ratio: 16/10;
      background: var(--ink);
      border-radius: 28px 28px 0 0;
      overflow: hidden;
    }

    .modal-gallery img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: var(--ink);
    }

    .modal-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255, 255, 255, 0.92);
      border: none;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 22px;
      display: grid;
      place-items: center;
      color: var(--ink);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .modal-nav:hover {
      background: #fff;
    }

    .modal-nav.prev {
      left: 14px;
    }

    .modal-nav.next {
      right: 14px;
    }

    .modal-body {
      padding: 24px 32px 32px;
    }

    .modal-thumbs {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 20px;
      margin-bottom: 16px;
    }

    .modal-thumbs img {
      width: 80px;
      height: 60px;
      object-fit: cover;
      border-radius: 10px;
      cursor: pointer;
      opacity: 0.45;
      transition: opacity 0.15s;
      flex-shrink: 0;
      border: 2px solid transparent;
    }

    .modal-thumbs img:hover {
      opacity: 0.75;
    }

    .modal-thumbs img.active {
      opacity: 1;
      border-color: var(--accent);
    }

    .modal-info h3 {
      font-family: var(--display);
      font-size: 26px;
      font-weight: 500;
      letter-spacing: -0.015em;
      margin: 0 0 8px;
    }

    .modal-info p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.6;
      margin: 0 0 14px;
    }

    .modal-info .tags {
      margin-bottom: 12px;
    }

    .modal-counter {
      position: absolute;
      bottom: 14px;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(0, 0, 0, 0.6);
      color: #fff;
      padding: 4px 14px;
      border-radius: 999px;
      font-size: 13px;
    }

    @media (max-width: 600px) {
      .modal-inner {
        border-radius: 20px;
      }

      .modal-gallery {
        border-radius: 20px 20px 0 0;
        aspect-ratio: 4/3;
      }

      .modal-body {
        padding: 18px 20px 24px;
      }

      .modal-nav {
        width: 36px;
        height: 36px;
        font-size: 16px;
      }

      .modal-thumbs img {
        width: 60px;
        height: 45px;
      }
    }

    /* Google Reviews */
    #yorumlar {
      background: var(--paper-2);
    }

    #yorumlar .inner {
      padding-block: 96px;
    }

    .rv-aggregate {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 4px;
    }

    .rv-score {
      font-family: var(--display);
      font-size: 52px;
      line-height: 1;
      font-weight: 600;
      color: var(--ink);
    }

    .rv-stars {
      --star: #f5a623;
      color: var(--star);
      letter-spacing: 3px;
      font-size: 17px;
      line-height: 1;
    }

    .rv-stars--lg {
      font-size: 23px;
    }

    .rv-source {
      color: var(--accent);
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      margin-top: 6px;
    }

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

    @media (max-width: 900px) {
      .rv-grid {
        grid-template-columns: 1fr;
      }
    }

    .rv-card {
      background: var(--paper);
      border: 1px solid var(--rule);
      border-radius: 18px;
      padding: 26px 26px 28px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .rv-top {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 13px;
    }

    .rv-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--display);
    }

    .rv-name {
      font-weight: 600;
      font-size: 15.5px;
      color: var(--ink);
    }

    .rv-meta {
      font-size: 12.5px;
      color: var(--muted);
      margin-top: 1px;
    }

    .rv-card .rv-stars {
      font-size: 14px;
      margin-top: 5px;
    }

    .rv-g {
      width: 20px;
      height: 20px;
      align-self: flex-start;
    }

    .rv-text {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.62;
    }
  
    /* ===== Services bento redesign (2026-06-12) ===== */
    .svc-feat { position:relative; overflow:hidden; display:grid; grid-template-columns:1.45fr 1fr; align-items:center; gap:28px;
      background:linear-gradient(120deg,#13294e 0%,#1f5fc7 100%); color:#f4f6fa; border-radius:22px; padding:34px 38px;
      margin-bottom:18px; text-decoration:none; box-shadow:0 20px 46px -26px rgba(31,95,199,.55);
      transition:transform .25s ease, box-shadow .25s ease; }
    .svc-feat:hover { transform:translateY(-3px); box-shadow:0 28px 64px -26px rgba(31,95,199,.72); }
    .svc-feat .feat-tag { font-size:12px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; color:#aecbff; }
    .svc-feat h3 { font-family:var(--display); font-weight:600; font-size:29px; letter-spacing:-.02em; line-height:1.12; margin:10px 0 12px; color:#fff; }
    .svc-feat p { font-size:14.5px; line-height:1.6; color:#d4e1f6; margin:0 0 18px; max-width:48ch; }
    .svc-feat .feat-chips { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
    .svc-feat .feat-chips span { font-size:12px; font-weight:600; color:#eaf1ff; background:rgba(255,255,255,.13); border:1px solid rgba(255,255,255,.22); padding:5px 12px; border-radius:999px; }
    .svc-feat .feat-go { display:inline-flex; align-items:center; gap:8px; font-weight:600; font-size:14.5px; color:#fff; }
    .svc-feat .feat-go svg { transition:transform .2s ease; }
    .svc-feat:hover .feat-go svg { transform:translateX(4px); }
    .svc-feat .feat-ring { position:absolute; right:-46px; top:50%; transform:translateY(-50%); width:250px; height:250px; opacity:.16; color:#fff; pointer-events:none; }
    .svc-feat .feat-text { position:relative; z-index:1; }

    .svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
    .svc-card { position:relative; display:flex; flex-direction:column; background:var(--paper); border:1px solid var(--rule);
      border-radius:18px; padding:26px 24px 24px; text-decoration:none; color:var(--ink);
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      opacity:0; transform:translateY(14px); animation:svcUp .55s ease forwards; }
    @keyframes svcUp { to { opacity:1; transform:none; } }
    .svc-card:nth-child(2){animation-delay:.06s}.svc-card:nth-child(3){animation-delay:.12s}.svc-card:nth-child(4){animation-delay:.18s}.svc-card:nth-child(5){animation-delay:.24s}.svc-card:nth-child(6){animation-delay:.3s}
    .svc-card::before { content:""; position:absolute; left:24px; right:24px; top:0; height:2px; background:var(--accent); border-radius:0 0 2px 2px; transform:scaleX(0); transform-origin:left; transition:transform .3s ease; }
    .svc-card:hover { transform:translateY(-4px); box-shadow:0 18px 42px -22px rgba(15,27,46,.32); border-color:rgba(31,95,199,.42); }
    .svc-card:hover::before { transform:scaleX(1); }
    .svc-num { position:absolute; top:24px; right:24px; font-family:var(--display); font-weight:600; font-size:13px; color:rgba(15,27,46,.20); letter-spacing:.02em; }
    .svc-ic { width:46px; height:46px; display:grid; place-items:center; border-radius:13px; background:rgba(31,95,199,.10); color:var(--accent); margin-bottom:18px; }
    .svc-ic svg { width:24px; height:24px; }
    .svc-card h3 { font-family:var(--display); font-weight:600; font-size:18.5px; letter-spacing:-.01em; line-height:1.25; margin:0 0 8px; color:var(--ink); }
    .svc-card p { font-size:13.6px; line-height:1.55; color:var(--muted); margin:0 0 16px; }
    .svc-chips { display:flex; flex-wrap:wrap; gap:6px; margin-top:auto; margin-bottom:16px; }
    .svc-chips span { font-size:11.5px; font-weight:600; color:var(--muted); background:var(--paper-2); padding:5px 10px; border-radius:999px; }
    .svc-go { display:inline-flex; align-items:center; gap:7px; font-weight:600; font-size:13.5px; color:var(--accent); }
    .svc-go svg { transition:transform .2s ease; }
    .svc-card:hover .svc-go svg { transform:translateX(4px); }
    @media (max-width:920px){ .svc-feat{ grid-template-columns:1fr; padding:28px 26px; } .svc-feat .feat-ring{ opacity:.10; } .svc-grid{ grid-template-columns:repeat(2,1fr); } }
    @media (max-width:600px){ .svc-grid{ grid-template-columns:1fr; } .svc-feat h3{ font-size:25px; } }
