/* t4-expertise-single.css — T4 Single Expertise (PM instanca), mereno 1:1 sa
   „T4 Single Expertise.html" (Direction B v2). Sve vrednosti su čitane iz inline
   style objekata IZVORA, ne iz build-spec-a.

   DVA OMOTAČA — izvor ih meša na istoj strani (isto kao T8):
     · hero        → <div maxW:1440; padding: 48px PAD 0>   ⇒ @1920 left 320, sadržaj 1280
     · sve ostalo  → <section padding: V PAD> + <div maxW:1440>  ⇒ @1920 left 240, sadržaj 1440
   Zato .t4-wrap (sa paddingom) NIJE isto što i .t4-inner (bez paddinga).

   base.css postavlja body { line-height: 1.6 }, a etalon body NEMA line-height →
   svaki element koji u izvoru nema lh mora eksplicitno dobiti `line-height: normal`. */

/* base.css daje body { line-height: 1.6 }; etalon body NEMA line-height, pa svaki
   kontejner u njemu nasleđuje `normal`. Postavljanjem na KOREN sekcije dobijamo
   isti model nasleđivanja — eksplicitne vrednosti niže u fajlu i dalje pobeđuju. */
.t4-hero, .t4-overview, .t4-services, .t4-process, .t4-deliverables,
.t4-track, .t4-work, .t4-clients, .t4-faq, .t4-contact { line-height: normal; }

.t4-wrap  { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.t4-inner { max-width: var(--maxw); margin: 0 auto; }
.dot { color: var(--red); }   /* crvena tačka u naslovima — ispala je pri prepisu T7, mere je ne hvataju */

.section-label--light60 { color: rgba(255,255,255,0.6); }
.section-label--light60::before { background: rgba(255,255,255,0.6); }
.section-label--light70 { color: rgba(255,255,255,0.7); }
.section-label--light70::before { background: rgba(255,255,255,0.7); }

/* ══ 1. HERO — breadcrumb + dijagonalni split ═════════════════════════════
   Izvor slaže PET apsolutnih slojeva pre sadržaja:
     A) ista slika, puna širina (biće izbledela)
     B) ravan veo rgba(250,250,247,0.82)
     C) horizontalni gradijent koji gasi levu stranu
     D) ista slika u punoj boji, clip-ovana desno od dijagonale
     E) plavi gradijent odozdo, isti clip
     F) <svg> sa jednom linijom = sama dijagonala (non-scaling-stroke) */
.t4-hero { position: relative; overflow: hidden; background: var(--bg); border-bottom: 1px solid var(--ink15); }
.t4-hero__layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.t4-hero__img { object-fit: cover; object-position: center 28%; }
.t4-hero__veil { background: rgba(250,250,247,0.82); }
.t4-hero__fade { background: linear-gradient(90deg, rgba(250,250,247,0.95) 0%, rgba(250,250,247,0.88) 26%, rgba(250,250,247,0.45) 42%, rgba(250,250,247,0) 54%); }
.t4-hero__img--color,
.t4-hero__tint { -webkit-clip-path: polygon(56% 0, 100% 0, 100% 100%, 42% 100%); clip-path: polygon(56% 0, 100% 0, 100% 100%, 42% 100%); }
.t4-hero__tint { background: linear-gradient(180deg, rgba(15,37,64,0) 52%, rgba(15,37,64,0.62) 100%); }
.t4-hero__rule { pointer-events: none; }

.t4-hero__inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 48px var(--pad) 0; }
.t4-breadcrumb { display: flex; align-items: center; gap: 10px; font-family: var(--font-mono); font-size: 12px; line-height: normal; color: var(--ink50); }
.t4-breadcrumb a { text-decoration: none; }
.t4-breadcrumb .sep { color: var(--ink30); }
.t4-breadcrumb .is-current { color: var(--ink); font-weight: 600; }

.t4-hero__text { display: flex; flex-direction: column; justify-content: center; min-height: 480px; max-width: 560px; padding-top: 40px; padding-bottom: 80px; }
.t4-hero__h1 { margin: 22px 0 0; font-family: var(--font-display); font-weight: 500; font-size: 76px; line-height: 0.98; letter-spacing: -0.04em; color: var(--ink); }
.t4-hero__body { margin: 26px 0 0; max-width: 440px; font-size: 18px; line-height: 1.55; color: var(--ink70); }

@media (max-width: 1024px) {
  .t4-hero__text { min-height: 400px; max-width: 420px; padding-bottom: 60px; }
  .t4-hero__h1 { font-size: 58px; }
  .t4-hero__body { font-size: 16px; }
}
/* Mobil: izvor potpuno napušta dijagonalu — složen tekst pa puna traka 260px ISPOD njega.
   Slojevi A–F se ne renderuju; sloj u boji postaje statična traka (order 2). */
@media (max-width: 600px) {
  .t4-hero { display: flex; flex-direction: column; }
  .t4-hero__layer:not(.t4-hero__img--color) { display: none; }
  .t4-hero__inner { order: 1; padding: 26px var(--pad) 6px; }
  .t4-breadcrumb { gap: 8px; flex-wrap: wrap; font-size: 11px; }
  .t4-hero__text { order: 2; display: block; min-height: 0; max-width: none; padding: 0; margin-top: 24px; }
  .t4-hero__h1 { margin: 16px 0 0; font-size: 44px; letter-spacing: -0.03em; }
  .t4-hero__body { margin: 18px 0 26px; max-width: none; font-size: 16px; }
  .t4-hero__img--color { order: 2; position: static; width: 100%; height: 260px; -webkit-clip-path: none; clip-path: none; }
}

/* ══ 2. OVERVIEW (dark) ═══════════════════════════════════════════════════ */
.t4-overview { background: var(--ink); color: #fff; padding: 120px var(--pad); }
.t4-overview__grid { display: grid; grid-template-columns: 380px 1fr; gap: 96px; align-items: flex-start; }
.t4-overview__lab { margin-bottom: 26px; }
.t4-overview__h2 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 42px; line-height: 1.04; letter-spacing: -0.03em; color: #fff; max-width: 520px; }
.t4-overview__body { display: flex; flex-direction: column; gap: 22px; max-width: 760px; }
.t4-overview__body p { margin: 0; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,0.72); }
@media (max-width: 1024px) { .t4-overview__grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 600px)  { .t4-overview { padding: 64px var(--pad); } .t4-overview__h2 { font-size: 30px; } .t4-overview__body p { font-size: 15.5px; } }

/* ══ 3. SERVICES — gusta lista ════════════════════════════════════════════ */
.t4-services { background: var(--bg-deep); padding: 110px var(--pad); }
.t4-services__lab { margin-bottom: 24px; }
.t4-services__h2 { margin: 0 0 56px; font-family: var(--font-display); font-weight: 500; font-size: 56px; line-height: 0.98; letter-spacing: -0.035em; max-width: 760px; }
.t4-svc-list { border-top: 2px solid var(--ink); }
.svc-row {
  display: grid; grid-template-columns: 64px 320px 1fr 36px; gap: 28px;
  align-items: baseline; padding: 26px 12px; cursor: default;
  border-bottom: 1px solid var(--ink15);
  transition: background .3s, padding-left .3s;
}
.svc-row:hover { background: rgba(26,26,26,0.035); }
.svc-row__cell { display: contents; }   /* desktop: omotač bez kutije → 4 grid-itema */
.svc-row__name, .svc-row__desc { display: block; }
.svc-row__num  { font-family: var(--font-mono); font-size: 13px; font-weight: 600; color: var(--red); letter-spacing: 0.06em; line-height: normal; }
.svc-row__name { font-family: var(--font-display); font-weight: 500; font-size: 22px; letter-spacing: -0.015em; line-height: 1.1; }
.svc-row__desc { font-size: 14.5px; color: var(--ink70); line-height: 1.55; }
.svc-row__arrow { font-family: var(--font-mono); font-size: 16px; color: var(--ink30); justify-self: end; line-height: normal; }
@media (max-width: 600px) {
  .t4-services { padding: 64px var(--pad); }
  .t4-services__h2 { margin: 0 0 36px; font-size: 32px; }
  /* Izvor na mobilu spaja naziv+opis u JEDNU ćeliju ('34px 1fr', bez strelice). */
  .svc-row { grid-template-columns: 34px 1fr; gap: 14px; padding: 20px 6px; }
  .svc-row__cell { display: block; }
  .svc-row__name { font-size: 19px; line-height: 1.15; }
  .svc-row__desc { font-size: 14px; margin-top: 7px; }
  .svc-row__arrow { display: none; }
}

/* ══ 4. PROCESS — 5 faza ══════════════════════════════════════════════════ */
.t4-process { background: var(--bg); padding: 110px var(--pad); }
.t4-process__lab { margin-bottom: 24px; }
.t4-process__h2 { margin: 0 0 64px; font-family: var(--font-display); font-weight: 500; font-size: 56px; line-height: 0.98; letter-spacing: -0.035em; max-width: 880px; }
.t4-process__grid { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.proc-step { position: relative; height: 100%; gap: 0; transition: transform .45s cubic-bezier(.2,.7,.2,1); }
.proc-step:hover { transform: translateY(-6px); }
/* Konektor: izvor ga emituje kao PRAVI <div> (pseudo-element se ne bi mogao izmeriti).
   Renderuje se samo na desktopu i samo do pretposlednjeg koraka; `right:-24` prelazi gap. */
.proc-conn { position: absolute; top: 29px; left: 60px; right: -24px; height: 2px; background: var(--ink15); z-index: 0; }
.proc-node {
  position: relative; z-index: 1; width: 60px; height: 60px;
  border: 1.5px solid var(--ink); background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: background .35s, border-color .35s;
}
.proc-step:hover .proc-node { background: var(--red); border-color: var(--red); }
.proc-node span { font-family: var(--font-display); font-weight: 500; font-size: 23px; color: var(--red); letter-spacing: 0.01em; line-height: normal; transition: color .35s; }
.proc-step:hover .proc-node span { color: #fff; }
.t4-stage__dur   { font-family: var(--font-mono); font-size: 10.5px; color: var(--ink50); letter-spacing: 0.08em; margin-top: 26px; text-transform: uppercase; line-height: normal; }
.t4-stage__title { font-family: var(--font-display); font-weight: 500; font-size: 21px; letter-spacing: -0.015em; margin-top: 8px; line-height: 1.1; }
.t4-stage__desc  { font-size: 13.5px; color: var(--ink70); line-height: 1.55; margin: 14px 0 0; }
@media (max-width: 1024px) {
  .t4-process__grid { grid-template-columns: repeat(3, 1fr); }
  .proc-conn { display: none; }   /* izvor crta liniju samo na bp === 'd' */
}
@media (max-width: 600px) {
  .t4-process { padding: 64px var(--pad); }
  .t4-process__h2 { margin: 0 0 44px; font-size: 32px; }
  .t4-process__grid { grid-template-columns: 1fr; gap: 32px; }
  /* izvor na mobilu pretvara korak u grid '60px 1fr' — broj levo, tekst desno */
  .proc-step { display: grid; grid-template-columns: 60px 1fr; gap: 18px; align-items: start; }
  .t4-stage__dur { margin-top: 6px; }
}

/* ══ 5. KEY DELIVERABLES (dark) ═══════════════════════════════════════════ */
.t4-deliverables { background: var(--ink); color: #fff; padding: 110px var(--pad); }
.t4-deliverables__lab { margin-bottom: 24px; }
.t4-deliverables__h2 { margin: 0 0 64px; font-family: var(--font-display); font-weight: 500; font-size: 56px; line-height: 0.98; letter-spacing: -0.035em; max-width: 820px; }
.t4-deliverables__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
/* `height:100%` na kartici radi samo ako je Reveal omotač razvučen grid-item — zato stretch. */
.t4-deliverables__grid > .rv { display: flex; }
.del-card {
  border: 1px solid rgba(255,255,255,0.18); padding: 28px;
  display: flex; flex-direction: column; gap: 14px; height: 100%; width: 100%;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), border-color .3s;
}
.del-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.45); }
.t4-deliv__badge { font-family: var(--font-mono); font-size: 10.5px; font-weight: 600; color: var(--red); letter-spacing: 0.08em; line-height: normal; }
.t4-deliv__title { font-family: var(--font-display); font-weight: 500; font-size: 21px; letter-spacing: -0.015em; line-height: 1.15; }
.t4-deliv__desc  { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0; }
@media (max-width: 1024px) { .t4-deliverables__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .t4-deliverables { padding: 64px var(--pad); }
  .t4-deliverables__h2 { margin: 0 0 40px; font-size: 32px; }
  .t4-deliverables__grid { grid-template-columns: 1fr; gap: 16px; }
  .del-card { padding: 22px; }
}

/* ══ 6. TRACK RECORD — statistika ═════════════════════════════════════════ */
.t4-track { background: var(--bg); padding: 80px var(--pad); border-top: 1px solid var(--ink15); border-bottom: 1px solid var(--ink15); }
.t4-track__lab { margin-bottom: 40px; }
.t4-track__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1.5px solid var(--ink); }
/* Ćelija JE Reveal omotač — u izvoru padding i ivice stoje na <Reveal style>, ne na detetu. */
.t4-track__grid > .rv { padding: 36px 0 4px; padding-left: 36px; border-left: 1px solid var(--ink15); }
.t4-track__grid > .rv:first-child { padding-left: 0; border-left: none; }
.t4-tstat__num   { font-family: var(--font-display); font-weight: 500; font-size: 60px; line-height: 0.9; letter-spacing: -0.03em; }
.t4-tstat__label { font-family: var(--font-mono); font-size: 11px; color: var(--ink50); margin-top: 20px; text-transform: uppercase; letter-spacing: 0.1em; line-height: normal; }
@media (max-width: 600px) {
  .t4-track { padding: 56px var(--pad); }
  .t4-track__grid { grid-template-columns: repeat(2, 1fr); }
  .t4-track__grid > .rv { padding-left: 20px; }
  /* perRow === 2 → izvor dodaje gornju ivicu svakoj ćeliji iz DRUGOG reda (i >= 2) */
  .t4-track__grid > .rv:nth-child(2n+1) { padding-left: 0; border-left: none; }
  .t4-track__grid > .rv:nth-child(n+3)  { border-top: 1px solid var(--ink15); }
  .t4-tstat__num { font-size: 42px; }
}

/* ══ 7. SEE OUR WORK — baner ══════════════════════════════════════════════ */
.t4-work { background: var(--bg); padding: 110px var(--pad); }
.proj-banner { position: relative; overflow: hidden; min-height: 420px; }
.proj-banner__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 45%; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.proj-banner:hover .proj-banner__img { transform: scale(1.06); }
.proj-banner__tint { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,37,64,0.92) 0%, rgba(15,37,64,0.72) 45%, rgba(15,37,64,0.20) 100%); }
.t4-work__inner { position: relative; display: flex; align-items: center; min-height: 420px; padding: 64px; }
.t4-work__col { color: #fff; max-width: 620px; display: flex; flex-direction: column; gap: 22px; }
.t4-work__h2 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 44px; line-height: 1.04; letter-spacing: -0.03em; }
.t4-work__body { margin: 0; font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.8); max-width: 500px; }
.t4-work__cta {
  align-self: flex-start; margin-top: 6px; font-family: var(--font-mono); font-size: 13px; font-weight: 600;
  color: #fff; letter-spacing: 0.04em; text-transform: uppercase; line-height: normal;
  border-bottom: 1.5px solid var(--red); padding-bottom: 5px; text-decoration: none;
}
@media (max-width: 600px) {
  .t4-work { padding: 64px var(--pad); }
  .proj-banner, .t4-work__inner { min-height: 360px; }
  .proj-banner__tint { background: linear-gradient(180deg, rgba(15,37,64,0.55) 0%, rgba(15,37,64,0.88) 100%); }
  .t4-work__inner { align-items: flex-end; padding: 36px 26px; }
  .t4-work__col { gap: 18px; }
  .t4-work__h2 { font-size: 28px; }
  .t4-work__body { font-size: 14.5px; }
}

/* ══ 8. SELECTED CLIENTS + TESTIMONIAL ════════════════════════════════════ */
.t4-clients { background: var(--bg-deep); padding: 100px var(--pad); }
.t4-clients__lab { margin-bottom: 48px; }
.t4-clients__strip {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 44px 56px; margin-bottom: 80px; padding-bottom: 72px; border-bottom: 1px solid var(--ink15);
}
.t4-clients__strip img { height: 38px; width: auto; max-width: 150px; object-fit: contain; filter: grayscale(1); opacity: 0.62; }
.t4-testimonial { background: var(--paper); border: 1px solid var(--ink15); padding: 56px; display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: center; }
/* lh 0.5 + height 24 su iz izvora — navodnik namerno „visi" iznad citata */
.t4-testimonial__mark { display: block; font-family: var(--font-mono); font-size: 40px; color: var(--red); line-height: 0.5; height: 24px; }
.t4-testimonial__quote { margin: 0; font-family: var(--font-display); font-weight: 400; font-size: 27px; line-height: 1.4; letter-spacing: -0.015em; color: var(--ink); }
.t4-testimonial__who { display: flex; align-items: center; gap: 16px; }
.t4-testimonial__avatar {
  width: 56px; height: 56px; border-radius: 50%; background: var(--bg-deep); border: 1px solid var(--ink15);
  flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 10px; color: var(--ink50); line-height: normal;
}
.t4-testimonial__name { font-family: var(--font-sans); font-size: 15px; font-weight: 700; color: var(--ink); line-height: normal; }
.t4-testimonial__role { font-family: var(--font-mono); font-size: 11px; color: var(--ink50); margin-top: 5px; letter-spacing: 0.04em; line-height: normal; }
@media (max-width: 1024px) { .t4-testimonial { grid-template-columns: 1fr; } }
@media (max-width: 600px) {
  .t4-clients { padding: 64px var(--pad); }
  .t4-clients__lab { margin-bottom: 36px; }
  .t4-clients__strip { justify-content: center; gap: 28px 36px; margin-bottom: 56px; padding-bottom: 48px; }
  .t4-clients__strip img { height: 28px; max-width: 110px; }
  .t4-testimonial { padding: 28px; gap: 28px; }
  .t4-testimonial__quote { font-size: 20px; }
}

/* ══ 9. FAQ — akordeon sa crvenim krugom ══════════════════════════════════ */
.t4-faq { background: var(--bg); padding: 110px var(--pad); }
.t4-faq__grid { display: grid; grid-template-columns: 380px 1fr; gap: 96px; align-items: flex-start; }
.t4-faq__lab { margin-bottom: 26px; }
.t4-faq__h2 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 42px; line-height: 1.04; letter-spacing: -0.03em; }
.t4-faq__list { border-top: 1px solid var(--ink); }
.faq-row { border-bottom: 1px solid var(--ink); transition: background .3s; }
.t4-faq__q {
  width: 100%; padding: 28px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  cursor: pointer; background: none; border: 0; text-align: left; color: inherit;
  font-family: var(--font-sans); font-size: 16px; line-height: normal;
}
.t4-faq__qwrap { display: flex; gap: 20px; align-items: baseline; flex: 1; }
.t4-faq__num   { font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--red); letter-spacing: 0.06em; line-height: normal; }
.t4-faq__qtext { font-family: var(--font-display); font-weight: 500; font-size: 23px; letter-spacing: -0.015em; line-height: 1.25; color: var(--ink); }
.faq-toggle {
  flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--ink30); background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s;
}
.faq-toggle .pm {
  font-size: 22px; font-weight: 300; line-height: 1; color: var(--ink);
  display: inline-block; margin-top: -2px; transition: transform .3s, color .3s;
  font-family: var(--font-sans);
}
/* izvor NE menja znak u „×" — isti „+" se rotira za 45° */
.faq-row.is-open .faq-toggle { border-color: var(--red); background: var(--red); }
.faq-row.is-open .faq-toggle .pm { color: #fff; transform: rotate(45deg); }
.t4-faq__panel { max-height: 0; overflow: hidden; transition: max-height .5s cubic-bezier(.2,.7,.2,1); }
.faq-row.is-open .t4-faq__panel { max-height: 400px; }
.t4-faq__a { margin: 0; padding-bottom: 30px; padding-left: 32px; padding-right: 56px; font-size: 16px; color: var(--ink70); line-height: 1.65; max-width: 760px; }
@media (max-width: 1024px) { .t4-faq__grid { grid-template-columns: 1fr; gap: 32px; } }
@media (max-width: 600px) {
  .t4-faq { padding: 64px var(--pad); }
  .t4-faq__h2 { font-size: 30px; }
  .t4-faq__q { padding: 22px 0; gap: 16px; }
  .t4-faq__qwrap { gap: 14px; }
  .t4-faq__qtext { font-size: 18px; }
  .t4-faq__a { padding-left: 26px; padding-right: 0; font-size: 15px; }
}

/* ══ 10. GET IN TOUCH (blue) + Capability kartica ═════════════════════════ */
.t4-contact { background: var(--blue); color: #fff; padding: 120px var(--pad); }
.t4-contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: flex-start; }
.t4-contact__lab { margin-bottom: 28px; }
.t4-contact__h2 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: 56px; line-height: 0.98; letter-spacing: -0.035em; max-width: 520px; }
.t4-contact__body { margin-top: 26px; font-size: 16.5px; line-height: 1.6; color: rgba(255,255,255,0.78); max-width: 460px; }

/* Kartica je <a> — odluka Stevan 2026-07-21: direktan download umesto etalonovog
   email-gate-a. Ceo blok je link pa geometrija (3 flex deteta → 2) ostaje netaknuta. */
.t4-cap-card {
  margin-top: 44px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.2);
  padding: 22px; display: flex; gap: 18px; align-items: center; max-width: 460px;
  text-decoration: none; color: inherit;
}
.t4-cap-card__badge {
  width: 58px; height: 74px; background: #fff; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; color: var(--blue); letter-spacing: 0.06em; line-height: normal;
}
.t4-cap-card__meta { display: flex; flex-direction: column; gap: 7px; }
.t4-cap-card__name { font-family: var(--font-sans); font-size: 14.5px; font-weight: 700; line-height: normal; }
/* izvor: zaseban <span> po segmentu, gap '4px 10px' — ne jedan string sa razmacima */
.t4-cap-card__sub  { display: flex; flex-wrap: wrap; gap: 4px 10px; font-family: var(--font-mono); font-size: 10.5px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; line-height: normal; }
.t4-cap-card__note { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; line-height: normal; }

/* ── Forma: etalon je MRTAV (divovi sa tekstom), ovde CF7. Kutije su izmerene
      1:1 — pozadina/ivica/padding/tipografija identični; tekst iz etalona postaje
      placeholder, pa je i boja teksta mapirana na ::placeholder. */
.t4-contact__form .wpcf7-form { display: flex; flex-direction: column; gap: 12px; }
/* CF7 autop obavija sadržaj SVAKOG reda u <p>, a base.css daje p { margin: 0 0 1em }
   → svaki red je bio tačno 16px viši. Zato margin mora pasti na SVE <p> u formi
   (ne samo na direktnu decu), a flex redovi moraju važiti i za taj umetnuti <p>. */
.t4-contact__form p { margin: 0; }
.t4-contact__form .wpcf7-form-control-wrap { display: block; }
.t4-form__row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.t4-contact__form input[type="text"],
.t4-contact__form input[type="email"],
.t4-contact__form textarea {
  width: 100%; display: block; border-radius: 0;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.22);
  padding: 15px 16px; font-family: var(--font-sans); font-size: 14px; line-height: normal; color: #fff;
}
.t4-contact__form input::placeholder,
.t4-contact__form textarea::placeholder { color: rgba(255,255,255,0.55); opacity: 1; }
.t4-contact__form textarea { min-height: 120px; height: 120px; resize: vertical; }
.t4-check, .t4-check > p { display: flex; align-items: center; gap: 12px; }
.t4-check { margin-top: 4px; }
/* CF7 gnezdi wrap>control>list-item kao INLINE-BLOCK — linija oko njega je viša
   od same kutije (22 umesto 18). Spuštamo ceo lanac na flex da nestane line-box. */
.t4-check .wpcf7-form-control-wrap,
.t4-check .wpcf7-checkbox,
.t4-check .wpcf7-acceptance,
.t4-check .wpcf7-list-item { display: flex; align-items: center; margin: 0; }
.t4-check label { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.t4-check input[type="checkbox"] {
  appearance: none; -webkit-appearance: none; margin: 0;
  width: 18px; height: 18px; border: 1.5px solid rgba(255,255,255,0.45); flex: 0 0 auto;
  background: rgba(255,255,255,0.12); border-radius: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; color: #fff; line-height: normal;
}
.t4-check input[type="checkbox"]:checked::before { content: "✓"; }
.t4-check .wpcf7-list-item-label,
.t4-check label > span:last-child { font-size: 13px; color: rgba(255,255,255,0.82); line-height: normal; }
.t4-form__send, .t4-form__send > p { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.t4-form__send { margin-top: 10px; }
.t4-contact__form .wpcf7-submit {
  display: inline-flex; align-items: center; gap: 12px; padding: 14px 24px; border-radius: 0;
  background: var(--red); border: 1.5px solid var(--red); color: #fff;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500; letter-spacing: 0.02em; line-height: normal; cursor: pointer;
}
.t4-form__call { font-family: var(--font-mono); font-size: 12px; color: rgba(255,255,255,0.55); line-height: normal; }
/* CF7 JS ubacuje spinner kao TREĆI flex element pored dugmeta i „or call" —
   na 390 to prelomi red (77 umesto 46). Etalon ga nema; zauzima prostor tek dok traje slanje. */
.t4-contact__form .wpcf7-spinner { display: none; margin: 0 0 0 8px; }
.t4-contact__form .wpcf7-form.submitting .wpcf7-spinner,
.t4-contact__form .wpcf7-form[data-status="submitting"] .wpcf7-spinner { display: inline-block; }
.t4-contact__form .wpcf7-response-output { border: 1px solid rgba(255,255,255,0.3) !important; color: #fff; padding: 12px 16px !important; margin: 16px 0 0 !important; }
.t4-contact__form .wpcf7-not-valid-tip { font-size: 12px; color: #ff9b9b; margin-top: 6px; }

@media (max-width: 1024px) { .t4-contact__grid { grid-template-columns: 1fr; gap: 44px; } }
@media (max-width: 600px) {
  .t4-contact { padding: 64px var(--pad); }
  .t4-contact__h2 { font-size: 34px; }
  .t4-contact__body { font-size: 15.5px; }
  .t4-cap-card { margin-top: 32px; }
  .t4-form__row2 { grid-template-columns: 1fr; }
}
