/* =========================================================
   EMA Keçe — modern brand site
   Palette: navy + orange (logo'dan türetilmiş)
   ========================================================= */

:root {
  --navy-900: #0a1a3a;
  --navy-800: #122a55;
  --navy-700: #1b3f7c;
  --navy-600: #234d96;
  --navy-50:  #eef2f9;

  --orange-600: #d96f0e;
  --orange-500: #e8861a;
  --orange-400: #f29a3a;

  --ink:   #0a1326;
  --ink-2: #2b3450;
  --mute:  #5b6478;
  --line:  #e3e7ef;
  --bg:    #ffffff;
  --bg-2:  #f6f7fb;
  --bg-3:  #eef1f7;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(10,19,38,.05), 0 4px 14px rgba(10,19,38,.04);
  --shadow-md: 0 8px 24px rgba(10,19,38,.07), 0 2px 6px rgba(10,19,38,.04);
  --shadow-lg: 0 24px 60px rgba(10,19,38,.14);

  --container: 1240px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ================== TYPO ================== */
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
}
.section__title--light { color: #fff; }

.section__lede {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  color: var(--mute);
  max-width: 60ch;
  margin-top: 18px;
}

.section__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 18px;
}
.section__line {
  width: 32px;
  height: 1.5px;
  background: var(--orange-500);
  display: block;
}
.section__eyebrow--light { color: var(--orange-400); }
.section__eyebrow--light .section__line { background: var(--orange-400); }

.grad-text {
  background: linear-gradient(120deg, var(--orange-500) 0%, var(--orange-400) 50%, var(--navy-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}

/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--block { width: 100%; justify-content: center; }
.btn--primary {
  background: var(--orange-500);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 134, 26, 0.32);
}
.btn--primary:hover {
  background: var(--orange-600);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(217, 111, 14, .42);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* ================== NAV ================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 14px 0;
  transition: background .25s var(--ease), padding .25s var(--ease), backdrop-filter .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  padding: 8px 0;
  box-shadow: 0 1px 0 rgba(10,19,38,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy-700);
  font-weight: 700;
}
.nav__logo-img {
  height: 200px;
  width: auto;
  display: block;
  margin: -28px 0;
  transition: height .25s var(--ease), margin .25s var(--ease);
}
.nav.scrolled .nav__logo-img {
  height: 160px;
  margin: -24px 0;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__menu a {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__menu a:hover {
  background: var(--navy-50);
  color: var(--navy-700);
}
.nav__cta { box-shadow: 0 4px 14px rgba(232,134,26,.28); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================== HERO ================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 160px;
  padding-bottom: 80px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcfe 0%, #f1f4fa 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 63, 124, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 63, 124, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 70%);
}
.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
  animation: drift 18s ease-in-out infinite;
}
.hero__glow--1 {
  background: radial-gradient(circle, var(--orange-400), transparent 70%);
  top: -200px;
  right: -200px;
}
.hero__glow--2 {
  background: radial-gradient(circle, var(--navy-600), transparent 70%);
  bottom: -200px;
  left: -200px;
  animation-delay: -9s;
}
@keyframes drift {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px, -30px); }
}

.hero__inner {
  position: relative;
  z-index: 2;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(27,63,124,.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero__dot {
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(232,134,26,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,134,26,.18); }
  50% { box-shadow: 0 0 0 8px rgba(232,134,26,.04); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy-900);
  max-width: 14ch;
}

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--mute);
  max-width: 56ch;
  margin-top: 28px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--navy-700);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.02em;
}

/* ================== MARQUEE ================== */
.hero__marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  padding: 18px 0;
  background: var(--navy-900);
  z-index: 3;
}
.marquee__track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.marquee__track span:nth-child(even) { color: var(--orange-400); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================== INTRO ================== */
.intro {
  padding: 140px 0 120px;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro__text {
  font-size: 1.05rem;
  color: var(--mute);
  line-height: 1.8;
}
.intro__text strong {
  color: var(--ink);
  font-weight: 600;
}

/* ================== PRODUCTS ================== */
.products {
  padding: 120px 0;
  background: var(--bg-2);
}
.section__head {
  max-width: 760px;
  margin-bottom: 64px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product {
  position: relative;
  padding: 36px 32px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product--featured {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-color: transparent;
  color: #fff;
}
.product--featured .product__weight,
.product--featured .product__name { color: #fff; }
.product--featured .product__desc { color: rgba(255,255,255,.72); }
.product--featured .product__tags li {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  border-color: rgba(255,255,255,.12);
}
.product__badge {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange-500);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
}
.product__weight {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--navy-700);
}
.product__weight span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mute);
  margin-left: 4px;
}
.product--featured .product__weight span { color: rgba(255,255,255,.6); }
.product__name {
  margin-top: 20px;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.product__desc {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--mute);
  line-height: 1.6;
}
.product__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 24px;
}
.product__tags li {
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  background: var(--navy-50);
  color: var(--navy-700);
  border: 1px solid transparent;
  border-radius: 999px;
}

/* ================== APPS ================== */
.apps {
  padding: 140px 0;
  background: linear-gradient(180deg, var(--navy-900), var(--navy-800));
  color: #fff;
  position: relative;
  overflow: hidden;
}
.apps::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.apps .container { position: relative; z-index: 1; }

.apps__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.app {
  background: var(--navy-900);
  padding: 40px 28px;
  transition: background .3s var(--ease);
  cursor: default;
}
.app:hover {
  background: var(--navy-800);
}
.app__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(232,134,26,.12);
  color: var(--orange-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.app:hover .app__icon {
  background: var(--orange-500);
  color: #fff;
  transform: scale(1.05);
}
.app__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.app__desc {
  margin-top: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

/* ================== TECH ================== */
.tech {
  padding: 140px 0;
}
.tech__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.tech__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.cert {
  padding: 10px 18px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-700);
  letter-spacing: 0.05em;
  background: #fff;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.cert:hover {
  border-color: var(--orange-500);
  color: var(--orange-600);
}

.tech__table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.tech__row {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
  padding: 18px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.tech__row:last-child { border-bottom: 0; }
.tech__row > div:first-child {
  font-weight: 600;
  color: var(--ink);
}
.tech__row > div:not(:first-child) { color: var(--mute); }
.tech__row--head {
  background: var(--bg-3);
  font-size: 12px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.tech__row--head > div {
  color: var(--ink-2) !important;
  font-size: 12px;
}
.tech__row:not(.tech__row--head):hover { background: var(--bg-2); }

/* ================== WHY ================== */
.why {
  padding: 140px 0;
  background: var(--bg-2);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feat {
  padding: 36px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.feat:hover {
  transform: translateY(-4px);
  border-color: var(--orange-500);
  box-shadow: var(--shadow-md);
}
.feat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--orange-500);
  letter-spacing: -0.02em;
}
.feat__title {
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.feat__desc {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--mute);
  line-height: 1.6;
}

/* ================== CTA ================== */
.cta {
  padding: 100px 0;
}
.cta__inner {
  position: relative;
  padding: 80px 60px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.cta__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(232,134,26,.25), transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(35,77,150,.4), transparent 50%);
  z-index: -1;
}
.cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.cta__lede {
  margin-top: 20px;
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}
.cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cta .btn--ghost {
  border-color: rgba(255,255,255,.25);
  color: #fff;
}
.cta .btn--ghost:hover {
  background: #fff;
  color: var(--navy-900);
  border-color: #fff;
}

/* ================== CONTACT ================== */
.contact {
  padding: 140px 0;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__list {
  margin-top: 40px;
  display: grid;
  gap: 18px;
}
.contact__list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.contact__label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}
.contact__value {
  font-weight: 500;
  color: var(--ink);
}
a.contact__value:hover { color: var(--orange-500); }

.contact__form {
  background: var(--bg-2);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field-row .field { margin-bottom: 18px; }
.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 0 0 0 4px rgba(232,134,26,.12);
}
.field textarea { resize: vertical; min-height: 100px; }

/* ================== FOOTER ================== */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .nav__logo { color: #fff; }
.footer__brand .nav__logo-img {
  height: 144px;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}
.footer__brand p {
  margin-top: 18px;
  font-size: 0.9rem;
  max-width: 38ch;
  line-height: 1.7;
}
.footer__col h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  margin-bottom: 18px;
}
.footer__col a, .footer__col span {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 10px;
  color: rgba(255,255,255,.6);
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--orange-400); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ================== REVEAL ANIMATION ================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1024px) {
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .apps__grid { grid-template-columns: repeat(2, 1fr); }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
  .footer__brand { grid-column: span 3; }
  .intro__grid, .tech__inner, .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav__logo-img {
    height: 120px;
    margin: -20px 0;
  }
  .nav.scrolled .nav__logo-img {
    height: 96px;
    margin: -16px 0;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,.1);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu a {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
  }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding-top: 140px; }
  .hero__stats { gap: 24px; margin-top: 56px; }

  .intro, .products, .apps, .tech, .why, .contact { padding: 80px 0; }
  .products__grid, .why__grid { grid-template-columns: 1fr; }
  .apps__grid { grid-template-columns: 1fr; }

  .tech__row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .tech__row--head { display: none; }
  .tech__row > div:nth-child(2)::before { content: 'Birim: '; color: var(--mute); font-size: 11px; }
  .tech__row > div:nth-child(3)::before { content: 'Değer: '; color: var(--mute); font-size: 11px; }
  .tech__row > div:nth-child(4)::before { content: 'Standart: '; color: var(--mute); font-size: 11px; }
  .tech__row > div:first-child {
    grid-column: 1 / -1;
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .cta__inner { padding: 56px 28px; }
  .contact__form { padding: 28px; }
  .contact__list li { grid-template-columns: 1fr; gap: 4px; }
  .field-row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}
