:root {
  --gi-ink: #132a33;
  --gi-navy: #0c2d3a;
  --gi-deep: #073f43;
  --gi-green: #0b7968;
  --gi-emerald: #13a578;
  --gi-lime: #8ecf77;
  --gi-stone: #f4f1e9;
  --gi-mist: #edf3f0;
  --gi-white: #fff;
  --gi-muted: #62747b;
  --gi-border: rgba(18, 50, 57, .12);
  --gi-shadow: 0 24px 70px rgba(9, 42, 49, .12);
  --gi-radius: 28px;
  --gi-container: min(1280px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--gi-ink); background: #fff; font-family: "Manrope", Arial, sans-serif; font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(19,165,120,.36); outline-offset: 3px; }
h1, h2, h3, h4 { margin: 0 0 .6em; font-family: "Montserrat", "Manrope", sans-serif; line-height: 1.12; letter-spacing: -.035em; }
p { margin: 0 0 1.25em; }
.gi-container { width: var(--gi-container); margin-inline: auto; }
.gi-main { overflow: clip; }
.gi-skip-link { position: fixed; top: 8px; left: 8px; z-index: 9999; transform: translateY(-160%); background: #fff; padding: 10px 16px; border-radius: 10px; }
.gi-skip-link:focus { transform: none; }
.gi-icon { width: 1.1em; height: 1.1em; flex: 0 0 auto; }
.gi-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; color: var(--gi-green); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.gi-eyebrow::before { width: 34px; height: 2px; content: ""; background: currentColor; }
.gi-eyebrow.light { color: #abdecf; }

.gi-topbar { position: relative; z-index: 110; color: #e5efed; background: var(--gi-navy); font-size: 13px; }
.gi-topbar-inner { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.gi-topbar p { margin: 0; font-weight: 650; letter-spacing: .015em; }
.gi-top-contact { display: flex; align-items: center; gap: 24px; }
.gi-top-contact a { display: flex; align-items: center; gap: 8px; transition: color .2s; }
.gi-top-contact a:hover { color: #fff; }
.gi-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.93); border-bottom: 1px solid rgba(14, 50, 56, .08); backdrop-filter: blur(18px); transition: box-shadow .25s, transform .25s; }
.gi-header.is-scrolled { box-shadow: 0 10px 35px rgba(8, 40, 45, .08); }
.gi-scroll-progress { width: 0; height: 3px; position: absolute; z-index: 3; left: 0; bottom: -1px; border-radius: 0 4px 4px 0; background: linear-gradient(90deg, var(--gi-emerald), var(--gi-lime)); box-shadow: 0 0 15px rgba(19,165,120,.35); pointer-events: none; }
.gi-header-inner { min-height: 86px; position: relative; display: flex; align-items: center; gap: 34px; }
.gi-brand { width: 220px; flex: 0 0 auto; }
.gi-brand img { width: 100%; }
.gi-nav { margin-left: auto; }
.gi-nav-list, .gi-nav ul { list-style: none; margin: 0; padding: 0; }
.gi-nav > .gi-nav-list, .gi-nav > ul { display: flex; align-items: center; gap: 31px; }
.gi-nav li { position: relative; }
.gi-nav a { display: flex; align-items: center; min-height: 86px; color: var(--gi-ink); font-size: 14px; font-weight: 700; transition: color .2s; }
.gi-nav a:hover, .gi-nav .current-menu-item > a, .gi-nav .current-menu-ancestor > a { color: var(--gi-green); }
.gi-nav .menu-item-has-children > a::after { width: 7px; height: 7px; margin: -4px 0 0 8px; content: ""; border-right: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg); }
.gi-nav .sub-menu { position: absolute; top: calc(100% - 9px); left: -24px; width: 280px; padding: 13px; visibility: hidden; opacity: 0; border: 1px solid var(--gi-border); border-radius: 18px; background: #fff; box-shadow: var(--gi-shadow); transform: translateY(12px); transition: .2s; }
.gi-nav li:hover > .sub-menu, .gi-nav li:focus-within > .sub-menu { visibility: visible; opacity: 1; transform: none; }
.gi-nav .sub-menu a { min-height: 0; padding: 12px 14px; border-radius: 11px; font-size: 13px; }
.gi-nav .sub-menu a:hover { background: var(--gi-mist); }
@media (min-width: 901px) {
  .gi-nav > .gi-nav-list > .gi-mega-menu, .gi-nav > ul > .gi-mega-menu { position: static; }
  .gi-nav .gi-mega-menu > .sub-menu {
    width: auto;
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 10px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 28px 70px rgba(7,40,45,.16);
  }
  .gi-nav .gi-mega-menu > .sub-menu::before {
    grid-column: 1/-1;
    content: "İlgili sayfalar";
    padding: 0 4px 8px;
    color: var(--gi-green);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
  }
  .gi-nav .gi-mega-menu > .sub-menu > li { border: 1px solid rgba(14,69,68,.08); border-radius: 14px; background: var(--gi-mist); }
  .gi-nav .gi-mega-menu > .sub-menu > li > a { min-height: 74px; position: relative; padding: 16px 48px 16px 18px; font-size: 13px; line-height: 1.35; }
  .gi-nav .gi-mega-menu > .sub-menu > li > a::after {
    width: 28px;
    height: 28px;
    position: absolute;
    top: 50%;
    right: 13px;
    display: grid;
    place-items: center;
    content: "→";
    color: var(--gi-green);
    border-radius: 50%;
    background: #fff;
    transform: translateY(-50%);
    transition: .2s;
  }
  .gi-nav .gi-mega-menu > .sub-menu > li:hover { border-color: rgba(11,121,104,.24); background: #e5f1ec; }
  .gi-nav .gi-mega-menu > .sub-menu > li:hover > a::after { color: #fff; background: var(--gi-green); transform: translate(3px,-50%); }
}
.gi-header-cta { display: inline-flex; align-items: center; gap: 9px; padding: 13px 18px; color: #fff; border-radius: 13px; background: var(--gi-green); font-size: 13px; font-weight: 800; white-space: nowrap; box-shadow: 0 10px 25px rgba(11, 121, 104, .22); transition: .25s; }
.gi-header-cta:hover { background: var(--gi-deep); transform: translateY(-2px); }
.gi-menu-toggle, .gi-mobile-contact { display: none; }

.gi-hero { min-height: min(760px, calc(100vh - 128px)); position: relative; display: flex; align-items: center; color: #fff; background: var(--gi-navy); }
.gi-hero-slides, .gi-hero-slide { position: absolute; inset: 0; }
.gi-hero-slide { display: flex; align-items: center; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity .75s ease, visibility .75s ease; }
.gi-hero-slide.is-active { z-index: 1; visibility: visible; opacity: 1; pointer-events: auto; }
.gi-hero-media, .gi-hero-shade { position: absolute; inset: 0; }
.gi-hero-media { background-position: center; background-size: cover; transform: scale(1.055); transition: transform 7s ease; will-change: transform; }
.gi-hero-slide.is-active .gi-hero-media { transform: scale(1.015); }
.gi-hero-shade { background: radial-gradient(circle at 78% 22%, rgba(92,205,163,.16), transparent 23%), linear-gradient(90deg, rgba(5,31,39,.93) 0%, rgba(5,31,39,.75) 41%, rgba(5,31,39,.18) 75%), linear-gradient(0deg, rgba(4,33,38,.56), transparent 45%); }
.gi-hero::after { width: 32%; height: 1px; position: absolute; z-index: 2; right: 0; bottom: 83px; content: ""; background: linear-gradient(90deg, transparent, rgba(255,255,255,.34)); }
.gi-hero-content { position: relative; z-index: 2; padding-block: 110px 130px; }
.gi-hero h1, .gi-hero-title { max-width: 820px; margin-bottom: 26px; font-size: clamp(40px, 4vw, 58px); font-weight: 700; }
.gi-hero h1 em, .gi-hero-title em { color: #a8dfce; font-style: normal; }
.gi-hero-content > p { max-width: 680px; color: #e6efed; font-size: 18px; line-height: 1.75; }
.gi-hero-slide .gi-hero-content > * { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.gi-hero-slide.is-active .gi-hero-content > * { opacity: 1; transform: none; }
.gi-hero-slide.is-active .gi-hero-content > :nth-child(1) { transition-delay: .12s; }
.gi-hero-slide.is-active .gi-hero-content > :nth-child(2) { transition-delay: .2s; }
.gi-hero-slide.is-active .gi-hero-content > :nth-child(3) { transition-delay: .28s; }
.gi-hero-slide.is-active .gi-hero-content > :nth-child(4) { transition-delay: .36s; }
.gi-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; margin-top: 34px; }
.gi-btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 13px 21px; border: 0; border-radius: 14px; font-size: 14px; font-weight: 800; cursor: pointer; transition: .25s; }
.gi-btn:hover { transform: translateY(-2px); }
.gi-btn-primary { color: #fff; background: var(--gi-emerald); box-shadow: 0 14px 35px rgba(19,165,120,.25); }
.gi-btn-primary:hover { background: #0d8d68; }
.gi-btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.38); background: rgba(255,255,255,.08); backdrop-filter: blur(10px); }
.gi-btn-ghost:hover { background: rgba(255,255,255,.16); }
.gi-btn-ghost-dark { color: var(--gi-ink); border: 1px solid var(--gi-border); background: #fff; }
.gi-btn-light { color: var(--gi-deep); background: #fff; box-shadow: 0 16px 40px rgba(0,0,0,.14); }
.gi-scroll-hint { position: absolute; z-index: 3; left: max(32px, calc((100vw - 1280px)/2)); bottom: 28px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.gi-scroll-hint span { width: 28px; height: 44px; position: relative; border: 1px solid rgba(255,255,255,.35); border-radius: 20px; }
.gi-scroll-hint span::after { position: absolute; top: 9px; left: 50%; width: 3px; height: 8px; content: ""; border-radius: 9px; background: #fff; transform: translateX(-50%); animation: scrollHint 1.8s infinite; }
@keyframes scrollHint { 0% { opacity: 0; transform: translate(-50%,0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%,14px); } }
.gi-hero-controls { position: absolute; z-index: 4; right: max(190px, calc((100vw - 1280px)/2)); bottom: 29px; display: flex; align-items: center; gap: 11px; padding: 8px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(5,38,43,.55); box-shadow: 0 16px 40px rgba(0,0,0,.18); backdrop-filter: blur(14px); }
.gi-hero-controls > button { width: 42px; height: 42px; display: grid; place-items: center; padding: 0; color: #fff; border: 0; border-radius: 11px; background: rgba(255,255,255,.1); cursor: pointer; transition: .2s; }
.gi-hero-controls > button:hover { color: var(--gi-deep); background: #fff; }
.gi-hero-controls [data-hero-prev] .gi-icon { transform: rotate(180deg); }
.gi-hero-count { display: flex; align-items: center; gap: 9px; min-width: 78px; padding-inline: 5px; }
.gi-hero-count strong { font-family: "Montserrat"; font-size: 14px; }
.gi-hero-count span { width: 23px; height: 1px; background: rgba(255,255,255,.42); }
.gi-hero-count small { color: #a8c4bf; font-size: 10px; }
.gi-hero-controls > .gi-hero-pause { width: 34px; height: 42px; gap: 4px; background: transparent; }
.gi-hero-pause span { width: 2px; height: 12px; border-radius: 3px; background: currentColor; }
.gi-hero-pause.is-paused span:first-child { width: 0; height: 0; margin-left: 3px; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-left: 9px solid currentColor; border-radius: 0; background: transparent; }
.gi-hero-pause.is-paused span:last-child { display: none; }
.gi-hero-dots { position: absolute; z-index: 4; right: max(190px, calc((100vw - 1280px)/2)); bottom: 92px; display: flex; gap: 7px; }
.gi-hero-dots button { width: 28px; height: 3px; padding: 0; overflow: hidden; border: 0; border-radius: 99px; background: rgba(255,255,255,.3); cursor: pointer; transition: width .25s, background .25s; }
.gi-hero-dots button[aria-selected="true"] { width: 50px; background: #91d9c2; }

.gi-trust-bar { position: relative; z-index: 3; margin-top: -22px; }
.gi-trust-bar .gi-container { display: grid; grid-template-columns: repeat(3,1fr); overflow: hidden; border: 1px solid var(--gi-border); border-radius: 22px; background: #fff; box-shadow: var(--gi-shadow); }
.gi-trust-bar .gi-container > div { min-height: 116px; display: flex; align-items: center; gap: 16px; padding: 24px 30px; border-right: 1px solid var(--gi-border); }
.gi-trust-bar .gi-container > div:last-child { border: 0; }
.gi-trust-bar .gi-icon { width: 31px; height: 31px; color: var(--gi-green); }
.gi-trust-bar span { display: flex; flex-direction: column; color: var(--gi-muted); font-size: 12px; line-height: 1.5; }
.gi-trust-bar strong { margin-bottom: 2px; color: var(--gi-ink); font-size: 14px; }

.gi-expertise-rail { overflow: hidden; color: #d9ebe6; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.08); background: #092c36; }
.gi-expertise-track { width: max-content; display: flex; animation: giRail 34s linear infinite; }
.gi-expertise-set { display: flex; align-items: center; }
.gi-expertise-set span { padding: 20px 25px; font-family: "Montserrat", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.gi-expertise-set i { width: 7px; height: 7px; display: block; border: 2px solid #69c8a8; border-radius: 50%; }
@keyframes giRail { to { transform: translateX(-50%); } }

.gi-section { padding: 112px 0; }
.gi-split { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1fr); align-items: center; gap: clamp(48px, 7vw, 100px); }
.gi-split.reverse { grid-template-columns: minmax(0,1fr) minmax(0,.92fr); }
.gi-media-card { min-height: 560px; position: relative; overflow: hidden; border-radius: var(--gi-radius); background: var(--gi-mist); box-shadow: var(--gi-shadow); }
.gi-media-card > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; }
.gi-media-note { position: absolute; right: 22px; bottom: 22px; left: 22px; display: flex; flex-direction: column; padding: 19px 22px; color: #fff; border: 1px solid rgba(255,255,255,.23); border-radius: 18px; background: rgba(7,46,50,.76); backdrop-filter: blur(12px); }
.gi-media-note strong { font-family: "Montserrat"; font-size: 16px; }
.gi-media-note span { color: #dce9e5; font-size: 12px; }
.gi-copy h2, .gi-section-head h2 { max-width: 780px; font-size: clamp(30px, 3vw, 44px); }
.gi-copy > p { color: var(--gi-muted); font-size: 16px; }
.gi-check-list { display: grid; gap: 12px; margin: 28px 0; padding: 0; list-style: none; }
.gi-check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 650; }
.gi-check-list .gi-icon { margin-top: 4px; color: var(--gi-emerald); }
.gi-text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--gi-green); font-size: 13px; font-weight: 800; }
.gi-text-link .gi-icon { transition: transform .2s; }
.gi-text-link:hover .gi-icon { transform: translateX(4px); }

.gi-services-section { position: relative; overflow: hidden; background: var(--gi-stone); }
.gi-services-section::before { width: 460px; height: 460px; position: absolute; top: -230px; right: -160px; content: ""; border: 1px solid rgba(11,121,104,.13); border-radius: 50%; box-shadow: 0 0 0 70px rgba(11,121,104,.035), 0 0 0 140px rgba(11,121,104,.025); pointer-events: none; }
.gi-services-section .gi-container { position: relative; z-index: 1; }
.gi-section-head { display: grid; grid-template-columns: minmax(0,1.4fr) minmax(280px,.65fr); align-items: end; gap: 60px; margin-bottom: 54px; }
.gi-section-head > p, .gi-section-head > div > p { color: var(--gi-muted); }
.gi-section-head.compact { grid-template-columns: 1fr; }
.gi-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.gi-service-card { min-height: 350px; position: relative; display: flex; flex-direction: column; padding: 30px; overflow: hidden; border: 1px solid rgba(9,70,66,.1); border-radius: 22px; background: rgba(255,255,255,.9); box-shadow: 0 8px 30px rgba(10,54,58,.035); transition: transform .3s, box-shadow .3s, color .3s, background .3s; }
.gi-service-card::before { width: 0; height: 3px; position: absolute; top: 0; left: 0; content: ""; border-radius: 0 8px 8px 0; background: linear-gradient(90deg, var(--gi-emerald), var(--gi-lime)); transition: width .35s ease; }
.gi-service-card::after { width: 180px; height: 180px; position: absolute; right: -90px; bottom: -90px; content: ""; border-radius: 50%; background: rgba(19,165,120,.1); transition: .3s; }
.gi-service-card:hover { color: #fff; background: var(--gi-deep); box-shadow: 0 22px 50px rgba(6,64,63,.2); transform: translateY(-7px); }
.gi-service-card:hover::before { width: 100%; }
.gi-service-card:hover::after { background: rgba(255,255,255,.08); transform: scale(1.4); }
.gi-service-no { position: absolute; top: 26px; right: 28px; color: #9baaa8; font-size: 11px; font-weight: 800; }
.gi-service-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 42px; color: var(--gi-green); border-radius: 16px; background: #e8f4ee; }
.gi-service-icon .gi-icon { width: 25px; height: 25px; }
.gi-service-card:hover .gi-service-icon { color: #bce9d9; background: rgba(255,255,255,.1); }
.gi-service-card h3 { max-width: 270px; font-size: 22px; }
.gi-service-card p { color: var(--gi-muted); font-size: 13px; }
.gi-service-card:hover p { color: #ccdfda; }
.gi-card-link { display: flex; align-items: center; gap: 8px; margin-top: auto; color: var(--gi-green); font-size: 12px; font-weight: 800; }
.gi-service-card:hover .gi-card-link { color: #bce9d9; }

.gi-process-section { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 90% 10%, rgba(19,165,120,.18), transparent 28%), var(--gi-navy); }
.gi-process-section::after { width: 320px; height: 320px; position: absolute; right: -160px; bottom: -160px; content: ""; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; box-shadow: 0 0 0 56px rgba(255,255,255,.025), 0 0 0 112px rgba(255,255,255,.018); }
.gi-process-section .gi-container { position: relative; z-index: 1; }
.gi-process-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.16); }
.gi-process-grid article { min-height: 280px; padding: 32px 28px; border-right: 1px solid rgba(255,255,255,.12); }
.gi-process-grid article:last-child { border: 0; }
.gi-process-grid article > span { display: inline-flex; margin-bottom: 52px; color: #85c9b5; font-size: 12px; font-weight: 800; }
.gi-process-grid h3 { font-size: 20px; }
.gi-process-grid p { color: #aec0c3; font-size: 13px; }

.gi-project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gi-project-card { display: block; position: relative; overflow: hidden; border: 1px solid var(--gi-border); border-radius: 22px; background: #fff; transition: .3s; }
.gi-project-card:hover { box-shadow: var(--gi-shadow); transform: translateY(-5px); }
.gi-project-image { aspect-ratio: 1.38; position: relative; overflow: hidden; background: var(--gi-mist); }
.gi-project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s; }
.gi-project-card:hover .gi-project-image img { transform: scale(1.045); }
.gi-project-image > span { position: absolute; top: 16px; left: 16px; padding: 7px 11px; color: #fff; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: rgba(6,54,56,.75); font-size: 10px; font-weight: 800; text-transform: uppercase; backdrop-filter: blur(8px); }
.gi-project-card > div:last-child { min-height: 116px; position: relative; padding: 21px 58px 20px 22px; }
.gi-project-card h2, .gi-project-card h3 { margin-bottom: 7px; font-size: 18px; }
.gi-project-card p { margin: 0; color: var(--gi-muted); font-size: 12px; }
.gi-project-card i { width: 34px; height: 34px; position: absolute; right: 18px; top: 23px; display: grid; place-items: center; color: var(--gi-green); border-radius: 50%; background: var(--gi-mist); transition: .2s; }
.gi-project-card:hover i { color: #fff; background: var(--gi-green); }
.home .gi-projects-section .gi-project-grid { grid-template-columns: repeat(4,1fr); }
.home .gi-projects-section .gi-project-card:first-child { grid-column: span 2; grid-row: span 2; }
.home .gi-projects-section .gi-project-card:first-child .gi-project-image { aspect-ratio: auto; height: calc(100% - 116px); min-height: 460px; }
.home .gi-projects-section .gi-project-card:first-child h3 { font-size: 23px; }
.gi-empty-card { grid-column: 1/-1; padding: 40px; border: 1px dashed var(--gi-border); border-radius: 20px; text-align: center; }
.gi-filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; }
.gi-filter-bar button { padding: 10px 16px; border: 1px solid var(--gi-border); border-radius: 999px; background: #fff; font-size: 12px; font-weight: 800; cursor: pointer; }
.gi-filter-bar button.active, .gi-filter-bar button:hover { color: #fff; background: var(--gi-green); border-color: var(--gi-green); }
.gi-project-card.is-hidden { display: none; }
.gi-project-status-group.is-hidden { display: none; }
.gi-project-archive { position: relative; background: linear-gradient(180deg, var(--gi-stone), #fff 42%); }
.gi-project-status-switcher { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin: -52px 0 74px; position: relative; z-index: 3; }
.gi-project-status-switcher button { min-height: 112px; display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 15px; padding: 20px; color: var(--gi-ink); text-align: left; border: 1px solid var(--gi-border); border-radius: 20px; background: #fff; box-shadow: 0 16px 45px rgba(9,42,49,.08); cursor: pointer; transition: .25s; }
.gi-project-status-switcher button:hover { transform: translateY(-3px); box-shadow: 0 20px 50px rgba(9,42,49,.12); }
.gi-project-status-switcher button.active { border-color: var(--gi-green); box-shadow: 0 0 0 2px rgba(11,121,104,.12), 0 20px 50px rgba(9,42,49,.12); }
.gi-project-status-switcher button.is-progress { border-bottom: 4px solid #e3a13a; }
.gi-project-status-switcher button.is-progress.active { border-color: #d9972d; background: #fff8ea; box-shadow: 0 0 0 2px rgba(217,151,45,.12), 0 20px 50px rgba(87,57,7,.1); }
.gi-project-status-switcher button.is-complete { border-bottom: 4px solid var(--gi-green); }
.gi-project-status-switcher button > span:nth-child(2) { display: flex; flex-direction: column; }
.gi-project-status-switcher small { color: var(--gi-muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gi-project-status-switcher strong { margin-top: 3px; font-family: "Montserrat"; font-size: 16px; line-height: 1.25; }
.gi-project-status-switcher b { min-width: 35px; height: 35px; display: grid; place-items: center; color: var(--gi-green); border-radius: 50%; background: var(--gi-mist); font-size: 12px; }
.gi-project-status-switcher .is-progress b { color: #8a5c12; background: #fff0cf; }
.gi-status-icon { width: 46px; height: 46px; display: grid; place-items: center; color: var(--gi-green); border-radius: 14px; background: var(--gi-mist); }
.gi-status-icon .gi-icon { width: 22px; height: 22px; }
.is-progress .gi-status-icon { background: #fff0cf; }
.is-progress .gi-status-icon i, .gi-project-status-mark i { width: 12px; height: 12px; display: block; border: 3px solid #fff; border-radius: 50%; background: #e3a13a; box-shadow: 0 0 0 5px rgba(227,161,58,.2); animation: giStatusPulse 2s ease-in-out infinite; }
@keyframes giStatusPulse { 50% { box-shadow: 0 0 0 9px rgba(227,161,58,0); } }
.gi-project-groups { display: grid; gap: 72px; }
.gi-project-status-group { padding: 38px; border: 1px solid var(--gi-border); border-radius: 28px; }
.gi-project-status-group.is-devam-eden { border-color: rgba(217,151,45,.28); background: linear-gradient(145deg, #fff8e9, #fffdf8); }
.gi-project-status-group.is-tamamlanan { background: #fff; box-shadow: 0 20px 60px rgba(9,42,49,.06); }
.gi-project-group-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.65fr); align-items: end; gap: 55px; margin-bottom: 34px; padding-bottom: 26px; border-bottom: 1px solid var(--gi-border); }
.gi-project-group-head > div { display: flex; align-items: flex-start; gap: 17px; }
.gi-project-group-head .gi-eyebrow { margin-bottom: 9px; }
.gi-project-group-head h2 { margin: 0; font-size: clamp(27px,2.6vw,36px); }
.gi-project-group-head > p { margin: 0; color: var(--gi-muted); font-size: 14px; }
.gi-project-status-mark { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; margin-top: 3px; color: #fff; border-radius: 14px; background: var(--gi-green); }
.gi-project-status-group.is-devam-eden .gi-project-status-mark { background: #fff0cf; }
.gi-project-card.is-devam-eden { border-top: 3px solid #e3a13a; }
.gi-project-card.is-tamamlanan { border-top: 3px solid var(--gi-green); }
.gi-project-card.is-devam-eden .gi-project-image > span { color: #3e2b0e; border-color: rgba(255,255,255,.55); background: rgba(244,182,75,.88); }
.gi-project-card.is-tamamlanan .gi-project-image > span { background: rgba(6,91,78,.82); }

.gi-quality-section { color: #fff; background: var(--gi-deep); }
.gi-quality-section .gi-media-card { min-height: 620px; }
.gi-quality-section .gi-copy > p { color: #c6d7d4; }
.gi-quality-points { display: grid; gap: 18px; margin: 30px 0 34px; }
.gi-quality-points div { display: grid; grid-template-columns: 150px 1fr; gap: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.14); }
.gi-quality-points strong { color: #a7ddca; font-size: 13px; }
.gi-quality-points span { color: #c6d7d4; font-size: 13px; }
.gi-post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.gi-post-card { overflow: hidden; border: 1px solid var(--gi-border); border-radius: 22px; background: #fff; transition: .3s; }
.gi-post-card:hover { box-shadow: var(--gi-shadow); transform: translateY(-5px); }
.gi-post-image { aspect-ratio: 1.5; display: block; overflow: hidden; background: var(--gi-mist); }
.gi-post-image img { width: 100%; height: 100%; object-fit: cover; transition: .5s; }
.gi-post-card:hover img { transform: scale(1.04); }
.gi-post-card > div { padding: 24px; }
.gi-post-card > div > span { color: var(--gi-green); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gi-post-card h2, .gi-post-card h3 { margin-top: 10px; font-size: 19px; }
.gi-post-card p { color: var(--gi-muted); font-size: 13px; }

.gi-page-hero { position: relative; overflow: hidden; padding: 105px 0 95px; color: #fff; background: radial-gradient(circle at 80% 25%, rgba(21,164,122,.28), transparent 30%), linear-gradient(135deg, #082e39, #0b4d4a); }
.gi-page-hero::before { width: 520px; height: 520px; position: absolute; top: -310px; right: -80px; content: ""; border: 1px solid rgba(255,255,255,.11); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.gi-page-hero::after { position: absolute; inset: 0; content: ""; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(90deg, transparent 40%, #000); }
.gi-page-hero .gi-container { position: relative; z-index: 1; }
.gi-page-hero h1 { max-width: 880px; font-size: clamp(34px, 3.4vw, 50px); }
.gi-page-hero p { max-width: 720px; color: #c8d9d7; font-size: 18px; }
.gi-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-bottom: 27px; color: #9fc6bf; font-size: 11px; font-weight: 700; }
.gi-breadcrumbs a { transition: color .2s; }
.gi-breadcrumbs a:hover { color: #fff; }
.gi-breadcrumbs span { opacity: .55; }
.gi-breadcrumbs strong { max-width: min(520px, 70vw); overflow: hidden; color: #d9e8e5; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.gi-about-hero { padding-bottom: 140px; }
.gi-content-shell { max-width: 940px; }
.gi-prose { color: #344d54; font-size: 17px; line-height: 1.86; }
.gi-prose h2 { margin-top: 2em; color: var(--gi-ink); font-size: clamp(27px, 3vw, 38px); }
.gi-prose h3 { margin-top: 1.8em; color: var(--gi-ink); font-size: 22px; }
.gi-prose h2:first-child, .gi-prose h3:first-child { margin-top: 0; }
.gi-prose a { color: var(--gi-green); font-weight: 700; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.gi-prose ul, .gi-prose ol { padding-left: 1.3em; }
.gi-prose li { margin-bottom: .55em; }
.gi-prose blockquote { margin: 2em 0; padding: 22px 26px; border-left: 4px solid var(--gi-emerald); border-radius: 0 16px 16px 0; background: var(--gi-mist); font-weight: 600; }

.gi-values-band { padding: 72px 0; color: #fff; background: var(--gi-navy); }
.gi-values-band .gi-container { display: grid; grid-template-columns: repeat(4,1fr); }
.gi-values-band article { padding: 10px 30px; border-right: 1px solid rgba(255,255,255,.13); }
.gi-values-band article:last-child { border: 0; }
.gi-values-band article > span { color: #8fd0bd; font-size: 11px; font-weight: 800; }
.gi-values-band h3 { margin-top: 35px; font-size: 20px; }
.gi-values-band p { color: #afc1c3; font-size: 13px; }
.gi-vision-section { background: var(--gi-stone); }
.gi-vision-section .gi-container { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; }
.gi-vision-card, .gi-mission-card { min-height: 430px; padding: 48px; border-radius: 26px; }
.gi-vision-card { color: #fff; background: linear-gradient(145deg, var(--gi-deep), var(--gi-green)); }
.gi-mission-card { background: #fff; border: 1px solid var(--gi-border); }
.gi-vision-card h2, .gi-mission-card h2 { font-size: clamp(27px, 3vw, 38px); }
.gi-story-grid, .gi-scope-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.gi-story-grid article, .gi-scope-grid article { padding: 27px; border: 1px solid var(--gi-border); border-radius: 20px; background: #fff; }
.gi-story-grid strong, .gi-scope-grid h3 { display: block; margin-bottom: 12px; font-family: "Montserrat"; font-size: 17px; }
.gi-story-grid p, .gi-scope-grid p { color: var(--gi-muted); font-size: 13px; }
.gi-scope-grid article > span { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 25px; color: var(--gi-green); border-radius: 12px; background: #e8f4ee; }
.gi-soft-section { background: var(--gi-stone); }
.gi-service-list { display: grid; gap: 10px; }
.gi-service-row { display: grid; grid-template-columns: 60px minmax(220px,.7fr) 1fr 46px; align-items: center; gap: 28px; padding: 25px 28px; border: 1px solid var(--gi-border); border-radius: 18px; transition: .25s; }
.gi-service-row > span { color: var(--gi-green); font-size: 11px; font-weight: 800; }
.gi-service-row h2 { margin: 0; font-size: 21px; }
.gi-service-row p { margin: 0; color: var(--gi-muted); font-size: 13px; }
.gi-service-row i { width: 42px; height: 42px; display: grid; place-items: center; color: var(--gi-green); border-radius: 50%; background: var(--gi-mist); }
.gi-service-row:hover { color: #fff; background: var(--gi-deep); transform: translateX(5px); }
.gi-service-row:hover p, .gi-service-row:hover > span { color: #bed5d0; }
.gi-service-row:hover i { color: #fff; background: rgba(255,255,255,.12); }
.gi-service-detail-layout { display: grid; grid-template-columns: minmax(0,1fr) 340px; align-items: start; gap: 80px; }
.gi-service-aside { position: sticky; top: 116px; padding: 28px; color: #fff; border-radius: 22px; background: var(--gi-deep); }
.gi-service-aside h3 { font-size: 22px; }
.gi-service-aside p { color: #c5d8d4; font-size: 13px; }
.gi-service-aside > a:last-child { display: flex; align-items: center; gap: 8px; margin-top: 20px; color: #bce6da; font-size: 13px; font-weight: 800; }

.gi-contact-section { background: var(--gi-stone); }
.gi-contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 22px; }
.gi-contact-panel, .gi-form-card { padding: 45px; border-radius: 26px; }
.gi-contact-panel { color: #fff; background: linear-gradient(145deg, var(--gi-navy), var(--gi-green)); }
.gi-contact-panel h2 { font-size: 34px; }
.gi-contact-panel > p { color: #c9dcda; }
.gi-contact-items { display: grid; gap: 12px; margin-top: 34px; }
.gi-contact-items a { display: grid; grid-template-columns: 42px 1fr; align-items: start; gap: 14px; padding: 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 15px; background: rgba(255,255,255,.07); }
.gi-contact-items .gi-icon { width: 22px; height: 22px; margin-top: 4px; color: #9bddc8; }
.gi-contact-items span { font-size: 14px; font-weight: 700; }
.gi-contact-items small { display: block; color: #a9c7c1; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.gi-form-card { border: 1px solid var(--gi-border); background: #fff; }
.gi-form-card form { display: grid; gap: 18px; }
.gi-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.gi-form-card label { display: grid; gap: 7px; color: var(--gi-ink); font-size: 12px; font-weight: 800; }
.gi-form-card input, .gi-form-card textarea, .gi-form-card select { width: 100%; padding: 14px 15px; color: var(--gi-ink); outline: 0; border: 1px solid #d9e1de; border-radius: 12px; background: #f9fbfa; font-size: 14px; font-weight: 500; transition: .2s; }
.gi-form-card textarea { resize: vertical; }
.gi-form-card input::placeholder, .gi-form-card textarea::placeholder { color: #a5b0b2; opacity: 1; }
.gi-form-card input:focus, .gi-form-card textarea:focus, .gi-form-card select:focus { border-color: var(--gi-green); box-shadow: 0 0 0 3px rgba(11,121,104,.1); background: #fff; }
.gi-consent { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 500 !important; line-height: 1.55; }
.gi-consent input { width: 17px; height: 17px; margin-top: 3px; accent-color: var(--gi-green); }
.gi-consent a { color: var(--gi-green); font-weight: 800; text-decoration: underline; }
.gi-honeypot { position: absolute !important; left: -9999px; }
.gi-alert { padding: 14px 17px; margin-bottom: 18px; border-radius: 12px; font-size: 13px; font-weight: 700; }
.gi-alert.success { color: #075846; background: #def4eb; }
.gi-alert.error { color: #8b2f31; background: #fde7e7; }
.gi-map-section { height: 480px; padding: 18px; background: var(--gi-stone); }
.gi-map-section iframe { width: 100%; height: 100%; border: 0; border-radius: 24px; filter: saturate(.8) contrast(.95); }

.gi-project-hero { min-height: 680px; position: relative; display: flex; align-items: flex-end; color: #fff; background: var(--gi-navy); }
.gi-project-hero-image, .gi-project-hero-shade { position: absolute; inset: 0; }
.gi-project-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.gi-project-hero-shade { background: linear-gradient(0deg, rgba(4,27,34,.94), rgba(4,27,34,.15) 70%); }
.gi-project-hero .gi-container { position: relative; z-index: 2; padding-bottom: 65px; }
.gi-back-link { display: inline-block; margin-bottom: 25px; color: #b5d6cf; font-size: 12px; font-weight: 800; }
.gi-project-hero h1 { max-width: 880px; font-size: clamp(36px, 3.6vw, 52px); }
.gi-project-hero p { max-width: 720px; color: #d2e0de; font-size: 17px; }
.gi-project-facts { background: var(--gi-stone); }
.gi-project-facts .gi-container { display: grid; grid-template-columns: repeat(4,1fr); }
.gi-project-facts div { min-height: 110px; display: flex; flex-direction: column; justify-content: center; padding: 20px 30px; border-right: 1px solid var(--gi-border); }
.gi-project-facts div:last-child { border: 0; }
.gi-project-facts small { color: var(--gi-muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.gi-project-facts strong { font-size: 14px; }
.gi-project-content { display: grid; grid-template-columns: .6fr 1fr; gap: 80px; }
.gi-project-content h2 { font-size: 32px; }
.gi-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.gi-gallery a { aspect-ratio: 1.35; overflow: hidden; border-radius: 18px; }
.gi-gallery img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.gi-gallery a:hover img { transform: scale(1.04); }

.gi-article-hero { position: relative; overflow: hidden; padding: 95px 0 120px; color: #fff; background: radial-gradient(circle at 84% 20%, rgba(19,165,120,.23), transparent 28%), linear-gradient(140deg, #0b303d, #07514c); }
.gi-article-hero::after { width: 420px; height: 420px; position: absolute; right: -170px; bottom: -250px; content: ""; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.025); }
.gi-article-hero .gi-container { position: relative; z-index: 1; }
.gi-article-head { max-width: 960px; }
.gi-article-head h1 { font-size: clamp(34px, 3.5vw, 50px); }
.gi-article-head > p { max-width: 760px; color: #c9dcda; font-size: 18px; }
.gi-article-meta { display: flex; gap: 22px; margin-top: 28px; color: #a7c7c1; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.gi-featured-wide { height: min(620px, 58vw); margin-top: -70px; position: relative; overflow: hidden; border: 8px solid #fff; border-radius: 28px; box-shadow: var(--gi-shadow); }
.gi-featured-wide img { width: 100%; height: 100%; object-fit: cover; }
.gi-article-body .gi-container { display: grid; grid-template-columns: minmax(0,760px) 280px; justify-content: center; align-items: start; gap: 75px; }
.gi-article-aside { position: sticky; top: 116px; padding: 24px; border: 1px solid var(--gi-border); border-radius: 18px; background: var(--gi-stone); }
.gi-article-aside strong { font-family: "Montserrat"; }
.gi-article-aside p { color: var(--gi-muted); font-size: 13px; }
.gi-pagination { margin-top: 45px; }
.gi-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.gi-pagination a, .gi-pagination span { min-width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--gi-border); border-radius: 10px; font-size: 12px; font-weight: 800; }
.gi-pagination .current { color: #fff; background: var(--gi-green); }

.gi-footer-cta { position: relative; overflow: hidden; padding: 66px 0; color: #fff; background: linear-gradient(120deg, #0e796a, #0a4a4e); }
.gi-footer-cta::after { width: 420px; height: 420px; position: absolute; right: -150px; top: -260px; content: ""; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.035); }
.gi-footer-cta .gi-container { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.gi-footer-cta .gi-container { position: relative; z-index: 1; }
.gi-footer-cta h2 { max-width: 780px; margin: 0; font-size: clamp(28px, 3vw, 40px); }
.home .gi-footer-cta { color: var(--gi-ink); border-top: 1px solid var(--gi-border); background: var(--gi-stone); }
.home .gi-footer-cta::after { border-color: rgba(11,121,104,.15); box-shadow: 0 0 0 70px rgba(11,121,104,.035); }
.home .gi-footer-cta .gi-eyebrow.light { color: var(--gi-green); }
.home .gi-footer-cta .gi-btn-light { color: #fff; background: var(--gi-green); box-shadow: 0 14px 35px rgba(11,121,104,.2); }
.home .gi-footer-cta .gi-btn-light:hover { background: var(--gi-deep); }
.gi-footer { position: relative; overflow: hidden; padding-top: 78px; color: #bfd0d0; background: #071f29; }
.gi-footer::before { position: absolute; inset: 0; content: ""; opacity: .16; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, transparent, #000); pointer-events: none; }
.gi-footer .gi-container { position: relative; z-index: 1; }
.gi-footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .85fr 1.2fr; gap: 55px; }
.gi-footer h3 { margin: 10px 0 24px; color: #fff; font-size: 16px; }
.gi-footer ul { display: grid; gap: 13px; margin: 0; padding: 0; list-style: none; }
.gi-footer li, .gi-footer p { font-size: 14px; line-height: 1.7; }
.gi-footer a { transition: color .2s; }
.gi-footer a:hover { color: #fff; }
.gi-footer-brand > a img { width: 230px; margin: -17px 0 16px; filter: brightness(0) invert(1); opacity: .94; }
.gi-footer-brand > p { max-width: 340px; }
.gi-footer-phone, .gi-footer-contact > a { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; }
.gi-footer-phone .gi-icon, .gi-footer-contact .gi-icon { width: 20px; height: 20px; margin-top: 3px; color: #8dd5c0; }
.gi-footer-phone span, .gi-footer-contact span { color: #fff; font-size: 15px; font-weight: 700; line-height: 1.65; }
.gi-footer small { display: block; margin-bottom: 2px; color: #9cb0b3; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.gi-footer-bottom { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 65px; border-top: 1px solid rgba(255,255,255,.1); }
.gi-footer-bottom p { margin: 0; }
.gi-footer-bottom div { display: flex; gap: 20px; font-size: 13px; }
.gi-404 { min-height: 620px; display: grid; place-items: center; padding: 80px 0; text-align: center; background: var(--gi-stone); }
.gi-404 .gi-container > span { color: rgba(11,121,104,.15); font-family: "Montserrat"; font-size: clamp(100px, 16vw, 220px); font-weight: 800; line-height: .8; }
.gi-404 h1 { max-width: 800px; margin-inline: auto; font-size: clamp(32px,3.4vw,46px); }
.gi-404 p:not(.gi-eyebrow) { max-width: 600px; margin-inline: auto; color: var(--gi-muted); }
.gi-404 .gi-actions { justify-content: center; }

.gi-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.gi-reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1120px) {
  :root { --gi-container: min(100% - 40px, 1080px); }
  .gi-header-inner { min-height: 76px; }
  .gi-brand { width: 195px; }
  .gi-nav > .gi-nav-list, .gi-nav > ul { gap: 18px; }
  .gi-nav a { min-height: 76px; font-size: 12px; }
  .gi-header-cta { display: none; }
  .gi-services-grid, .gi-project-grid, .gi-post-grid { gap: 16px; }
  .home .gi-projects-section .gi-project-grid { grid-template-columns: repeat(2,1fr); }
  .home .gi-projects-section .gi-project-card:first-child { grid-column: span 2; grid-row: auto; }
  .home .gi-projects-section .gi-project-card:first-child .gi-project-image { height: auto; min-height: 390px; aspect-ratio: 1.8; }
  .gi-service-card { min-height: 330px; padding: 25px; }
  .gi-footer-grid { grid-template-columns: 1.2fr .7fr .8fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  :root { --gi-container: min(100% - 32px, 800px); --gi-radius: 22px; }
  .gi-top-contact a:first-child { display: none; }
  .gi-header { background: #fff; backdrop-filter: none; }
  .gi-header-inner { min-height: 72px; }
  .gi-brand { width: 182px; }
  .gi-menu-toggle { width: 44px; height: 44px; display: grid; place-items: center; margin-left: auto; border: 0; border-radius: 12px; background: var(--gi-mist); cursor: pointer; }
  .gi-menu-toggle .gi-icon { width: 22px; height: 22px; }
  .gi-menu-toggle .close-icon { display: none; }
  .gi-menu-toggle[aria-expanded="true"] .open-icon { display: none; }
  .gi-menu-toggle[aria-expanded="true"] .close-icon { display: block; }
  .gi-nav { position: fixed; inset: 114px 0 0; padding: 20px 16px 35px; visibility: hidden; opacity: 0; overflow-y: auto; background: #fff; transform: translateY(-10px); transition: .2s; }
  .gi-nav.is-open { visibility: visible; opacity: 1; transform: none; }
  .gi-nav > .gi-nav-list, .gi-nav > ul { display: block; }
  .gi-nav li { border-bottom: 1px solid var(--gi-border); }
  .gi-nav a { min-height: 54px; justify-content: space-between; font-size: 15px; }
  .gi-nav .sub-menu { width: auto; position: static; display: none; visibility: visible; opacity: 1; padding: 0 0 10px 13px; border: 0; border-radius: 0; box-shadow: none; transform: none; }
  .gi-nav .menu-item-has-children.submenu-open > .sub-menu { display: block; }
  .gi-nav .sub-menu li { border: 0; }
  .gi-nav .sub-menu a { min-height: 44px; padding: 8px 10px; color: var(--gi-muted); font-size: 13px; }
  .gi-mobile-contact { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding-top: 22px; }
  .gi-mobile-contact a { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 8px; color: #fff; border-radius: 12px; background: var(--gi-green); font-size: 12px; font-weight: 800; }
  .gi-hero { min-height: 680px; }
  .gi-hero-shade { background: linear-gradient(90deg, rgba(5,31,39,.91), rgba(5,31,39,.56)), linear-gradient(0deg, rgba(4,33,38,.58), transparent); }
  .gi-trust-bar .gi-container { grid-template-columns: 1fr; }
  .gi-trust-bar .gi-container > div { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--gi-border); }
  .gi-section { padding: 82px 0; }
  .gi-split, .gi-split.reverse, .gi-section-head, .gi-contact-layout, .gi-service-detail-layout, .gi-project-content, .gi-article-body .gi-container { grid-template-columns: 1fr; gap: 42px; }
  .gi-media-card, .gi-quality-section .gi-media-card { min-height: 500px; }
  .gi-services-grid, .gi-project-grid, .gi-post-grid { grid-template-columns: repeat(2,1fr); }
  .gi-project-status-switcher { grid-template-columns: 1fr; margin: -34px 0 52px; }
  .gi-project-status-switcher button { min-height: 92px; }
  .gi-project-groups { gap: 45px; }
  .gi-project-status-group { padding: 27px; border-radius: 23px; }
  .gi-project-group-head { grid-template-columns: 1fr; gap: 14px; }
  .gi-process-grid { grid-template-columns: repeat(2,1fr); }
  .gi-process-grid article:nth-child(2) { border-right: 0; }
  .gi-process-grid article:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); }
  .gi-values-band .gi-container, .gi-story-grid, .gi-scope-grid { grid-template-columns: repeat(2,1fr); }
  .gi-values-band article:nth-child(2) { border-right: 0; }
  .gi-vision-section .gi-container { grid-template-columns: 1fr; }
  .gi-service-row { grid-template-columns: 48px 1fr 46px; }
  .gi-service-row p { grid-column: 2/4; grid-row: 2; }
  .gi-service-aside, .gi-article-aside { position: static; }
  .gi-project-facts .gi-container { grid-template-columns: repeat(2,1fr); }
  .gi-project-facts div:nth-child(2) { border-right: 0; }
  .gi-gallery { grid-template-columns: repeat(2,1fr); }
  .gi-footer-grid { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 620px) {
  :root { --gi-container: calc(100% - 28px); }
  .gi-topbar-inner { min-height: 40px; justify-content: center; }
  .gi-topbar p { overflow: hidden; font-size: 11px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
  .gi-top-contact { display: none; }
  .gi-nav { inset-block-start: 110px; }
  .gi-brand { width: 170px; }
  .gi-hero { min-height: 650px; }
  .gi-hero-content { padding-block: 90px 118px; }
  .gi-hero h1, .gi-hero-title { font-size: clamp(34px, 9.5vw, 40px); }
  .gi-hero-content > p, .gi-page-hero p, .gi-article-head > p { font-size: 15px; }
  .gi-actions { align-items: stretch; flex-direction: column; }
  .gi-actions .gi-btn { width: 100%; }
  .gi-scroll-hint { display: none; }
  .gi-hero-controls { right: auto; left: 14px; bottom: 15px; gap: 5px; padding: 5px; border-radius: 13px; }
  .gi-hero-controls > button { width: 38px; height: 38px; }
  .gi-hero-controls > .gi-hero-pause { width: 30px; height: 38px; }
  .gi-hero-count { min-width: 68px; gap: 6px; }
  .gi-hero-dots { right: auto; left: 18px; bottom: 70px; }
  .gi-hero-dots button { width: 20px; }
  .gi-hero-dots button[aria-selected="true"] { width: 38px; }
  .gi-trust-bar { margin-top: 0; padding-top: 14px; background: var(--gi-stone); }
  .gi-trust-bar .gi-container { border-radius: 18px; }
  .gi-trust-bar .gi-container > div { padding: 18px; }
  .gi-trust-bar span { font-size: 13px; }
  .gi-trust-bar strong { font-size: 15px; }
  .gi-expertise-set span { padding: 16px 19px; font-size: 10px; }
  .gi-expertise-set i { width: 6px; height: 6px; }
  .gi-section { padding: 66px 0; }
  .gi-media-card, .gi-quality-section .gi-media-card { min-height: 390px; }
  .gi-copy h2, .gi-section-head h2 { font-size: 28px; }
  .gi-section-head { margin-bottom: 35px; }
  .gi-services-grid, .gi-project-grid, .gi-post-grid { grid-template-columns: 1fr; }
  .home .gi-projects-section .gi-project-grid { grid-template-columns: 1fr; }
  .home .gi-projects-section .gi-project-card:first-child { grid-column: auto; }
  .home .gi-projects-section .gi-project-card:first-child .gi-project-image { min-height: 0; aspect-ratio: 1.38; }
  .gi-service-card { min-height: 310px; }
  .gi-service-card p, .gi-project-card p, .gi-post-card p { font-size: 14px; }
  .gi-process-grid { grid-template-columns: 1fr; }
  .gi-process-grid article { min-height: 220px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .gi-process-grid article > span { margin-bottom: 30px; }
  .gi-quality-points div { grid-template-columns: 1fr; gap: 4px; }
  .gi-page-hero { padding: 72px 0; }
  .gi-page-hero h1 { font-size: 32px; }
  .gi-breadcrumbs { margin-bottom: 20px; font-size: 10px; }
  .gi-values-band .gi-container, .gi-story-grid, .gi-scope-grid { grid-template-columns: 1fr; }
  .gi-values-band article { padding: 22px 8px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.13); }
  .gi-values-band h3 { margin-top: 14px; }
  .gi-vision-card, .gi-mission-card { min-height: 0; padding: 30px 24px; }
  .gi-service-row { grid-template-columns: 40px 1fr 38px; gap: 10px; padding: 20px 15px; }
  .gi-service-row h2 { font-size: 17px; }
  .gi-service-row p { font-size: 12px; }
  .gi-contact-panel, .gi-form-card { padding: 27px 20px; }
  .gi-contact-panel h2 { font-size: 28px; }
  .gi-field-row { grid-template-columns: 1fr; }
  .gi-map-section { height: 390px; padding: 10px; }
  .gi-project-hero { min-height: 590px; }
  .gi-project-hero .gi-container { padding-bottom: 42px; }
  .gi-project-hero h1 { font-size: 32px; }
  .gi-project-facts .gi-container { grid-template-columns: 1fr; }
  .gi-project-facts div { min-height: 86px; padding: 16px 4px; border-right: 0; border-bottom: 1px solid var(--gi-border); }
  .gi-gallery { grid-template-columns: 1fr; }
  .gi-article-hero { padding: 72px 0 100px; }
  .gi-article-head h1 { font-size: 32px; }
  .gi-featured-wide { height: 58vw; border-width: 5px; border-radius: 19px; }
  .gi-prose { font-size: 16px; }
  .gi-footer-cta .gi-container { align-items: stretch; flex-direction: column; }
  .gi-footer-cta h2 { font-size: 28px; }
  .gi-footer-grid { grid-template-columns: 1fr; }
  .gi-footer-bottom { min-height: 110px; align-items: flex-start; justify-content: center; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .gi-reveal { opacity: 1; transform: none; }
  .gi-expertise-track { width: auto; animation: none; }
  .gi-expertise-set[aria-hidden="true"] { display: none; }
  .gi-expertise-set { flex-wrap: wrap; justify-content: center; }
}
