:root {
  --zf-navy: #052942;
  --zf-deep: #03243a;
  --zf-ink: #001b32;
  --zf-red: #dc202d;
  --zf-paper: #f8f7f3;
  --zf-copy: #526677;
  --zf-line: #dad7cf;
  --zf-card-bg: #ffffff;
}

.zf-page {
  width: 100%;
  overflow: hidden;
  color: var(--zf-ink);
  background: #fbfaf7;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.zf-page * {
  box-sizing: border-box;
}

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

.zf-page a {
  text-decoration: none;
  color: inherit;
}

.zf-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ==========================================================================
   01 — HERO
   ========================================================================== */
.zf-hero {
  position: relative;
  min-height: clamp(560px, calc(100vh - 76px), 880px);
  height: calc(100vh - 76px);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--zf-deep);
  display: flex;
  align-items: center;
}

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

.zf-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 29, 47, 0.95) 0%, rgba(1, 31, 51, 0.85) 36%, rgba(1, 32, 51, 0.4) 66%, rgba(1, 31, 50, 0.1) 100%),
              linear-gradient(180deg, rgba(0, 20, 34, 0.25) 0%, transparent 40%, rgba(0, 25, 40, 0.2) 100%);
}

.zf-hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  margin-left: clamp(20px, 2vw, 36px);
  margin-top: 10px;
}

.zf-hero-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.zf-hero h1 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(40px, 4.4vw, 70px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.06;
  text-transform: none;
}

.zf-hero-lead {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
  max-width: 580px;
}

.zf-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 50px;
  padding: 0 26px;
  color: #fff;
  border: 2px solid var(--zf-red);
  background: rgba(1, 31, 49, 0.35);
  font-size: 13.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}

.zf-outline-button:hover {
  background: var(--zf-red);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 32, 45, 0.4);
}

.zf-outline-button span {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.zf-outline-button:hover span {
  transform: translateX(4px);
}

/* ==========================================================================
   02 — PROCESS BAR
   ========================================================================== */
.zf-process {
  min-height: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fbfaf7;
  border-bottom: 1px solid var(--zf-line);
}

.zf-process > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 20px 12px;
  color: var(--zf-ink);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.zf-process svg {
  width: 32px;
  height: 32px;
  stroke: var(--zf-ink);
  stroke-width: 1.6;
  fill: none;
}

.zf-process > div:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background: var(--zf-line);
}

/* ==========================================================================
   03 — INTRO SECTION
   ========================================================================== */
.zf-intro {
  width: 100%;
  padding: 40px clamp(20px, 2vw, 36px) 30px;
  display: grid;
  grid-template-columns: 40% minmax(0, 60%);
  align-items: center;
  gap: 32px;
  background: linear-gradient(90deg, #faf9f6, #f7f6f2 55%, #faf9f7);
  border-bottom: 1px solid var(--zf-line);
}

.zf-intro h2 {
  margin: 0 0 10px;
  color: var(--zf-ink);
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: -0.01em;
}

.zf-intro > div p {
  margin: 0;
  color: var(--zf-copy);
  font-size: 14.5px;
  font-weight: 500;
}

.zf-intro nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  height: 80px;
}

.zf-intro nav a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  color: var(--zf-ink);
  border-left: 1px solid var(--zf-line);
  cursor: pointer;
  transition: all 0.25s ease;
}

.zf-intro nav b {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 900;
  color: var(--zf-ink);
  transition: color 0.2s ease;
}

.zf-intro nav span {
  font-size: 13.5px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--zf-ink);
  transition: color 0.2s ease;
}

.zf-intro nav a:hover span,
.zf-intro nav a:hover b {
  color: var(--zf-red);
}

.zf-intro nav a::after {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: var(--zf-red);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.zf-intro nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.zf-intro nav a:hover {
  background: rgba(220, 32, 45, 0.04);
}

/* ==========================================================================
   04 — DERİN TEMEL SİSTEMLERİ
   ========================================================================== */
.zf-deep {
  width: 100%;
  padding: 32px clamp(20px, 2vw, 36px) 44px;
}

.zf-sec-header {
  margin-bottom: 24px;
}

.zf-sec-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--zf-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.zf-sec-kicker::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--zf-red);
}

.zf-sec-title {
  margin: 0 0 8px;
  color: var(--zf-ink);
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.zf-sec-subtitle {
  margin: 0;
  color: var(--zf-copy);
  font-size: 14px;
  line-height: 1.5;
  max-width: 780px;
}

.zf-deep-grid {
  display: grid;
  grid-template-columns: 55% minmax(0, 45%);
  gap: 16px;
  align-items: stretch;
}

/* Fore Kazık Flagship Card */
.zf-fore {
  background: #ffffff;
  border: 1px solid rgba(0, 27, 50, 0.11);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 32% 39% 29%;
  height: clamp(400px, 31vw, 475px);
  box-shadow: 0 4px 20px rgba(0, 27, 50, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zf-fore:hover {
  box-shadow: 0 8px 30px rgba(0, 27, 50, 0.09);
}

.zf-fore-copy {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.zf-card-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 9px;
  background: rgba(220, 32, 45, 0.08);
  color: var(--zf-red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  border-radius: 4px;
  margin-bottom: 9px;
}

.zf-fore-copy h3 {
  margin: 0 0 8px;
  color: var(--zf-ink);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.zf-fore-copy p {
  margin: 0 0 12px;
  color: var(--zf-copy);
  font-size: 13.5px;
  line-height: 1.52;
}

.zf-spec-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0, 27, 50, 0.12);
}

.zf-spec-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1a3246;
}

.zf-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--zf-red);
  flex-shrink: 0;
}

.zf-fore-img-wrap {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.zf-photo-wrap {
  background: #becfe2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.zf-fore-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.zf-fore:hover .zf-fore-photo {
  transform: scale(1.02);
}

.zf-blueprint-wrap {
  background: #012037;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.zf-fore-blueprint {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: transparent;
  display: block;
}

.zf-img-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 3px 8px;
  background: rgba(0, 20, 36, 0.78);
  color: #ffffff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.zf-tag-blueprint {
  background: rgba(3, 36, 58, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Right 3 Cards Stack */
.zf-deep-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  gap: 12px;
  height: clamp(400px, 31vw, 475px);
}

.zf-list-card {
  background: #ffffff;
  border: 1px solid rgba(0, 27, 50, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 33% minmax(0, 67%);
  box-shadow: 0 3px 12px rgba(0, 27, 50, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  position: relative;
  min-height: 0;
}

.zf-list-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 27, 50, 0.08);
  border-color: rgba(220, 32, 45, 0.35);
}

.zf-list-thumb {
  position: relative;
  overflow: hidden;
  height: 100%;
}

.zf-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.zf-list-card:hover .zf-list-thumb img {
  transform: scale(1.05);
}

.zf-list-body {
  position: relative;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zf-mini-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--zf-red);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.zf-list-body h3 {
  margin: 0 0 5px;
  color: var(--zf-ink);
  font-size: 18px;
  font-weight: 800;
  transition: color 0.2s ease;
}

.zf-list-card:hover .zf-list-body h3 {
  color: var(--zf-red);
}

.zf-list-body p {
  margin: 0;
  color: var(--zf-copy);
  font-size: 13.5px;
  line-height: 1.5;
}

.zf-card-arrow {
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-size: 16px;
  color: var(--zf-red);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.zf-list-card:hover .zf-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Criteria Wrap */
.zf-criteria-wrap {
  margin-top: 32px;
  background: #ffffff;
  border: 1px solid rgba(0, 27, 50, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 27, 50, 0.04);
}

.zf-criteria-header {
  padding: 12px 22px;
  background: linear-gradient(90deg, #021a30, #042944);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 14px;
}

.zf-criteria-kicker {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #dc202d;
  background: rgba(220, 32, 45, 0.15);
  padding: 3px 8px;
  border-radius: 3px;
}

.zf-criteria-title {
  margin: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zf-criteria {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.zf-crit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-right: 1px solid rgba(0, 27, 50, 0.08);
  transition: background 0.2s ease;
}

.zf-crit-item:last-child {
  border-right: none;
}

.zf-crit-item:hover {
  background: rgba(0, 27, 50, 0.02);
}

.zf-crit-icon-box {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 10px;
  background: rgba(220, 32, 45, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--zf-red);
}

.zf-crit-icon-box svg {
  width: 24px;
  height: 24px;
  stroke: var(--zf-red);
  stroke-width: 1.6;
  fill: none;
}

.zf-crit-item h3 {
  margin: 0 0 4px;
  color: var(--zf-ink);
  font-size: 15px;
  font-weight: 800;
}

.zf-crit-item p {
  margin: 0;
  color: var(--zf-copy);
  font-size: 12px;
  line-height: 1.45;
}

/* ==========================================================================
   05 — ZEMİN İYİLEŞTİRME
   ========================================================================== */
.zf-improvement {
  width: 100%;
  padding: 32px clamp(24px, 2.8vw, 48px) 44px;
  border-top: 1px solid var(--zf-line);
}

.zf-improvement-grid {
  display: grid;
  grid-template-columns: 41% 32% 27%;
  gap: 18px;
  align-items: stretch;
}

/* Jet Grout Card */
.zf-jet {
  background: #ffffff;
  border: 1px solid rgba(0, 27, 50, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 48% 52%;
  height: clamp(380px, 28vw, 440px);
  box-shadow: 0 4px 20px rgba(0, 27, 50, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.zf-jet:hover {
  box-shadow: 0 8px 30px rgba(0, 27, 50, 0.09);
}

.zf-jet-copy {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zf-jet-copy h3 {
  margin: 0 0 8px;
  color: var(--zf-ink);
  font-size: 23px;
  font-weight: 900;
}

.zf-jet-copy p {
  margin: 0 0 14px;
  color: var(--zf-copy);
  font-size: 13.5px;
  line-height: 1.55;
}

.zf-jet-img-wrap {
  position: relative;
  background: #fbfaf7;
  overflow: hidden;
}

.zf-jet-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Improve List */
.zf-improve-list {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  height: clamp(380px, 28vw, 440px);
}

/* Goals Aside Box */
.zf-goals {
  background: linear-gradient(145deg, #021a30, #032b4a);
  color: #ffffff;
  border-radius: 12px;
  padding: 26px 22px;
  box-shadow: 0 4px 20px rgba(0, 27, 50, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zf-goals-head {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.zf-goals-kicker {
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #dc202d;
  display: block;
  margin-bottom: 4px;
}

.zf-goals-head h3 {
  margin: 0;
  color: #ffffff;
  font-size: 16.5px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.3;
}

.zf-goals ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zf-goals li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.zf-goals li svg {
  width: 22px;
  height: 22px;
  stroke: var(--zf-red);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}

/* ==========================================================================
   06 — İKSA VE STABİLİZASYON
   ========================================================================== */
.zf-shoring {
  width: 100%;
  padding: 32px clamp(20px, 2vw, 36px) 44px;
  border-top: 1px solid var(--zf-line);
}

.zf-nail {
  display: grid;
  grid-template-columns: 46% minmax(0, 54%);
  gap: 16px;
  margin-bottom: 16px;
}

.zf-nail-card {
  background: #ffffff;
  border: 1px solid rgba(0, 27, 50, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 50% 50%;
  box-shadow: 0 4px 20px rgba(0, 27, 50, 0.04);
  align-items: stretch;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.zf-nail-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 27, 50, 0.08);
}

.zf-nail-drawing {
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: left center;
  background: #2b1f16;
  padding: 0;
  margin: 0;
  display: block;
}

.zf-nail-info {
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zf-nail-info h3 {
  margin: 0 0 8px;
  color: var(--zf-ink);
  font-size: 19px;
  font-weight: 800;
}

.zf-nail-info p {
  margin: 0 0 12px;
  color: var(--zf-copy);
  font-size: 12.5px;
  line-height: 1.5;
}

.zf-nail-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  border-top: 1px solid rgba(0, 27, 50, 0.08);
  padding-top: 12px;
}

.zf-nail-features li {
  font-size: 12px;
  color: #3b5a72;
  line-height: 1.4;
}

.zf-nail-features li strong {
  color: var(--zf-ink);
  font-weight: 700;
}

.zf-nail-panorama {
  background: #ffffff;
  border: 1px solid rgba(0, 27, 50, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 27, 50, 0.04);
}

.zf-nail-panorama img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}

/* 3 Shoring Cards */
.zf-shoring-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.zf-shoring-cards article {
  background: #ffffff;
  border: 1px solid rgba(0, 27, 50, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 40% minmax(0, 60%);
  box-shadow: 0 3px 12px rgba(0, 27, 50, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.zf-shoring-cards article:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 27, 50, 0.08);
  border-color: rgba(220, 32, 45, 0.35);
}

.zf-shoring-cards img {
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.zf-shoring-cards article > div {
  position: relative;
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.zf-shoring-cards h3 {
  margin: 0 0 6px;
  color: var(--zf-ink);
  font-size: 15px;
  font-weight: 800;
}

.zf-shoring-cards p {
  margin: 0;
  color: var(--zf-copy);
  font-size: 12px;
  line-height: 1.45;
}

.zf-shoring-cards .zf-card-arrow {
  left: auto;
  right: 14px;
  bottom: 8px;
  font-size: 16px;
}

/* Çelik Destek İksa */
.zf-steel-support {
  background: #ffffff;
  border: 1px solid var(--zf-line);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 60px;
  align-items: center;
  box-shadow: 0 4px 18px rgba(0, 27, 50, 0.04);
}

.zf-steel-support img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.zf-steel-support > div {
  padding: 0 28px;
}

.zf-steel-support h3 {
  margin: 0 0 6px;
  color: var(--zf-ink);
  font-size: 16px;
  font-weight: 900;
}

.zf-steel-support p {
  margin: 0;
  color: var(--zf-copy);
  font-size: 13px;
}

.zf-steel-support .zf-card-arrow {
  position: static;
  color: var(--zf-red);
  font-size: 24px;
}

/* ==========================================================================
   07 — DELIVERY STRIP
   ========================================================================== */
.zf-delivery {
  width: 100%;
  background: #faf9f6;
  border-top: 1px solid var(--zf-line);
  border-bottom: 1px solid var(--zf-line);
  padding: 28px clamp(20px, 2vw, 36px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) 200px;
  gap: 20px;
  align-items: center;
}

.zf-delivery article {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--zf-line);
  padding-right: 16px;
}

.zf-delivery svg {
  width: 38px;
  height: 38px;
  stroke: var(--zf-ink);
  stroke-width: 1.5;
  fill: none;
}

.zf-delivery h3 {
  margin: 0 0 4px;
  color: var(--zf-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.zf-delivery p {
  margin: 0;
  color: var(--zf-copy);
  font-size: 12px;
  line-height: 1.4;
}

.zf-delivery .zf-machine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: #ffffff;
  border: 1px solid var(--zf-line);
  border-radius: 6px;
  color: var(--zf-ink);
  transition: all 0.25s ease;
}

.zf-delivery .zf-machine:hover {
  border-color: var(--zf-red);
  background: #fff;
  transform: translateX(3px);
}

.zf-delivery .zf-machine h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.zf-delivery .zf-machine span {
  color: var(--zf-red);
  font-size: 20px;
  font-weight: 700;
}

/* ==========================================================================
   08 — CTA SECTION
   ========================================================================== */
.zf-cta {
  display: grid;
  grid-template-columns: 50% minmax(0, 50%);
  background: #fbfaf7;
  overflow: hidden;
}

.zf-cta > div {
  padding: 64px clamp(24px, 3.5vw, 64px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.zf-cta h2 {
  margin: 0 0 16px;
  color: var(--zf-ink);
  font-size: clamp(24px, 2.2vw, 36px);
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.zf-cta p {
  max-width: 580px;
  margin: 0 0 28px;
  color: var(--zf-copy);
  font-size: 15px;
  line-height: 1.55;
}

.zf-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  padding: 0 32px;
  color: #fff;
  background: var(--zf-red);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(220, 32, 45, 0.35);
}

.zf-cta a:hover {
  background: #bd1b26;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(220, 32, 45, 0.45);
}

.zf-cta a span {
  font-size: 20px;
  font-weight: 300;
  transition: transform 0.25s ease;
}

.zf-cta a:hover span {
  transform: translateX(4px);
}

.zf-cta > img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  object-position: center 50%;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
  .zf-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .zf-deep-grid,
  .zf-improvement-grid,
  .zf-nail {
    grid-template-columns: 1fr;
  }
  .zf-fore {
    grid-template-columns: 1fr 1fr;
  }
  .zf-blueprint-wrap {
    display: none;
  }
  .zf-criteria {
    grid-template-columns: 1fr;
  }
  .zf-crit-item {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 27, 50, 0.08);
  }
  .zf-crit-item:last-child {
    border-bottom: 0;
  }
  .zf-shoring-cards {
    grid-template-columns: 1fr;
  }
  .zf-delivery {
    grid-template-columns: repeat(2, 1fr);
  }
  .zf-delivery article:nth-child(2) {
    border-right: 0;
  }
  .zf-delivery .zf-machine {
    grid-column: 1 / -1;
  }
  .zf-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .zf-process {
    grid-template-columns: repeat(2, 1fr);
  }
  .zf-process > div:nth-child(2)::after {
    display: none;
  }
  .zf-intro nav {
    grid-template-columns: 1fr;
    height: auto;
  }
  .zf-intro nav a {
    padding: 16px 0;
    border-left: 0;
    border-bottom: 1px solid var(--zf-line);
  }
  .zf-fore {
    grid-template-columns: 1fr;
  }
  .zf-deep-list article,
  .zf-list-card,
  .zf-jet,
  .zf-improve-list article,
  .zf-nail-card,
  .zf-shoring-cards article {
    grid-template-columns: 1fr;
  }
  .zf-steel-support {
    grid-template-columns: 1fr;
  }
  .zf-steel-support img {
    height: 140px;
  }
  .zf-steel-support > div {
    padding: 20px;
  }
  .zf-delivery {
    grid-template-columns: 1fr;
  }
  .zf-delivery article {
    border-right: 0;
    border-bottom: 1px solid var(--zf-line);
    padding-bottom: 16px;
  }
}

.zf-page .vln-cta-visual img {
  object-position: center bottom;
}

