/* YGS Teknoloji — Kurumsal site */

:root {
  --navy: #071c2c;
  --navy-2: #0b2538;
  --blue: #0077b6;
  --blue-2: #149bd7;
  --red: #d71920;
  --white: #ffffff;
  --gray: #f4f6f8;
  --ink: #17212b;
  --muted: #5a6a7a;
  --line: #e4e9ee;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --max: 1480px;
  --gutter: clamp(20px, 4vw, 56px);
  --topbar: 0px;
  --nav: 74px;
  --header: var(--nav);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 12px);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.site-corp {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.site-corp a { color: inherit; text-decoration: none; }
body.site-corp img { max-width: 100%; display: block; }
body.site-corp ul { list-style: none; }
body.site-corp button,
body.site-corp input,
body.site-corp select,
body.site-corp textarea { font: inherit; color: inherit; }

body.site-corp #particleCanvas,
body.site-corp .cursor-glow { display: none !important; }

.y-wrap {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

/* ========== HEADER ========== */
.y-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.y-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(7, 28, 44, 0.06);
}

.y-topbar { display: none !important; }

.y-header.scrolled .y-topbar {
  height: 0;
  opacity: 0;
  border-bottom-width: 0;
}

.y-topbar-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.y-topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.y-topbar-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

.y-topbar-links a:hover { color: var(--blue); }

.y-topbar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
}

.y-nav {
  height: var(--nav);
  display: flex;
  align-items: center;
  transition: height 0.25s ease;
}

.y-header.scrolled .y-nav { height: 64px; }

.y-nav-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.y-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.y-brand img {
  height: 48px;
  width: auto;
  transition: height 0.25s ease;
}

.y-header.scrolled .y-brand img { height: 42px; }

.y-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.y-brand-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.y-brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

.y-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.y-links a {
  padding: 8px 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 6px;
  transition: color 0.2s;
}

.y-links a:hover,
.y-links a.is-active { color: var(--blue); }

.y-links a.is-active {
  box-shadow: inset 0 -2px 0 var(--blue);
  border-radius: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  background: var(--navy);
  color: #fff !important;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--navy-2); }
.nav-cta svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.y-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.y-burger span {
  width: 16px;
  height: 1.5px;
  background: var(--navy);
  transition: 0.2s;
}

.y-burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.y-burger.active span:nth-child(2) { opacity: 0; }
.y-burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 980px) {
  .y-topbar-note { display: none; }
  .y-brand-text { display: none; }
  .y-burger { display: flex; }
  .nav-cta { display: none; }
  .y-header { position: sticky; }
  .y-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 8px max(var(--gutter), env(safe-area-inset-right)) 16px max(var(--gutter), env(safe-area-inset-left));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(7, 28, 44, 0.08);
    max-height: min(70vh, calc(100dvh - var(--header)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 120;
  }
  .y-links.open { display: flex; }
  .y-links a { padding: 14px 4px; font-size: 1rem; }
  .y-nav-inner { position: static; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
  .y-topbar { display: none; }
  :root { --topbar: 0px; --nav: 64px; --header: 64px; }
  .y-nav { height: 64px; }
  .y-header.scrolled .y-nav { height: 58px; }
  .y-brand img { height: 40px; }
  .y-header.scrolled .y-brand img { height: 36px; }
}

/* ========== HERO ========== */
.y-hero {
  background: var(--white);
  padding: 0;
}

.y-hero-bleed {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
  align-items: stretch;
  min-height: clamp(520px, 68vh, 720px);
  width: 100%;
}

.y-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px var(--gutter) 56px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.y-hero-kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.y-hero h1 {
  font-size: clamp(2.35rem, 4.6vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 18px;
  max-width: 15ch;
}

.y-hero h1 em {
  font-style: normal;
  color: var(--blue);
}

.y-hero-lead {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.y-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.y-hero-media {
  position: relative;
  min-height: 100%;
  background: #071c2c;
  overflow: hidden;
}

.y-ad-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.y-ad {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(1.03) translateX(2%);
  transition: opacity 0.75s var(--ease), transform 0.85s var(--ease);
  pointer-events: none;
  z-index: 0;
  padding: 0;
}

.y-ad.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
  pointer-events: auto;
  z-index: 1;
}

.y-ad.is-leaving {
  opacity: 0;
  transform: scale(1) translateX(-3%);
  z-index: 0;
  transition: opacity 0.65s ease, transform 0.75s var(--ease);
}

.y-ad img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #071c2c;
}

/* Görseldeki logo/yazılar kesilmesin diye güvenli çerçeve */
.y-ad-stage::after {
  content: none;
}

.y-ad-ui {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px 14px;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(7, 28, 44, 0.45));
}

.y-ad-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  pointer-events: auto;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(7, 28, 44, 0.45);
  backdrop-filter: blur(8px);
}

.y-ad-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s var(--ease), background 0.2s;
}

.y-ad-dots button.is-active {
  width: 22px;
  background: #fff;
}

.y-ad-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  z-index: 4;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.y-ad-progress > i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--blue-2);
}

.y-ad-progress.is-run > i {
  animation: yAdProgress 1.3s linear forwards;
}

@keyframes yAdProgress {
  from { width: 0; }
  to { width: 100%; }
}

/* ========== TRUST STRIP ========== */
.y-trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 28px 0;
}

.y-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.y-trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.y-trust-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: var(--blue);
}

.y-trust-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.y-trust-item .num {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
}

.y-trust-item h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.y-trust-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 900px) {
  .y-trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .y-trust-grid { grid-template-columns: 1fr; }
}

/* ========== SECTION HEADS ========== */
.y-sec {
  padding: 80px 0;
}

.y-sec-head {
  max-width: 44rem;
  margin-bottom: 44px;
}

.y-sec-head.center {
  text-align: center;
  margin-inline: auto;
}

.y-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}

.y-sec-head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 12px;
}

.y-sec-head p {
  font-size: 1.0625rem;
  color: var(--muted);
}

/* ========== SERVICES ========== */
.y-services { background: var(--white); }

.y-svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.y-svc {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.y-svc:hover {
  transform: translateY(-3px);
  border-color: #c9d4de;
  box-shadow: 0 10px 28px rgba(7, 28, 44, 0.06);
}

.y-svc-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray);
}

.y-svc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.y-svc:hover .y-svc-media img { transform: scale(1.03); }

.y-svc-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.y-svc-body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.y-svc-body p {
  font-size: 0.9375rem;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1;
}

.y-svc-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
}

.y-svc:hover .y-svc-link { color: var(--blue-2); }

@media (max-width: 900px) {
  .y-svc-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .y-svc-grid { grid-template-columns: 1fr; }
}

/* ========== BRANDS ========== */
.y-brands {
  background: var(--white);
  padding: 56px 0;
  border-top: 1px solid var(--line);
}

.y-brand-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}

.y-brand-row a,
.y-brand-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  opacity: 0.85;
  filter: grayscale(0.15);
  transition: opacity 0.2s, filter 0.2s;
}

.y-brand-row a:hover {
  opacity: 1;
  filter: none;
}

.y-brand-row img {
  max-height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.y-brand-note {
  text-align: center;
  margin-top: 18px;
  font-size: 0.8125rem;
  color: var(--muted);
}

/* ========== SOFTWARE ========== */
.y-soft { background: var(--gray); }

.y-soft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.y-soft-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.y-soft-copy {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.y-soft-copy .logo {
  height: 28px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
  object-position: left;
}

.y-soft-copy h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.y-soft-feats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.y-soft-feats li {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--gray);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 10px;
}

.y-soft-visual {
  background: linear-gradient(160deg, #e8eef3, #d5dee7);
  display: grid;
  place-items: center;
  padding: 20px;
}

.y-soft-visual img {
  max-height: 240px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 4px;
}

@media (max-width: 960px) {
  .y-soft-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .y-soft-card { grid-template-columns: 1fr; }
  .y-soft-visual { min-height: 200px; }
}

/* ========== PROJECTS ========== */
.y-projects { background: var(--white); }

.y-proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.y-proj {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.y-proj-media {
  aspect-ratio: 16 / 11;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}

.y-proj-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.y-proj-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 0.875rem;
  background:
    linear-gradient(135deg, #eef2f5 25%, transparent 25%) -20px 0 / 40px 40px,
    linear-gradient(225deg, #eef2f5 25%, transparent 25%) -20px 0 / 40px 40px,
    linear-gradient(315deg, #eef2f5 25%, transparent 25%) 0 0 / 40px 40px,
    linear-gradient(45deg, #eef2f5 25%, #f4f6f8 25%) 0 0 / 40px 40px;
}

.y-proj-placeholder strong {
  display: block;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 6px;
}

.y-proj-body { padding: 16px 16px 18px; }

.y-proj-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.y-proj-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--muted);
}

.y-proj-loc svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.75;
}

@media (max-width: 900px) {
  .y-proj-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .y-proj-grid { grid-template-columns: 1fr; }
}

/* ========== WHY ========== */
.y-why {
  background: var(--navy);
  color: #fff;
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}

.y-why::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(20, 155, 215, 0.12), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(0, 119, 182, 0.1), transparent 45%);
  pointer-events: none;
}

.y-why .y-wrap { position: relative; z-index: 1; }

.y-why .y-sec-head { margin-bottom: 36px; }
.y-why .y-eyebrow { color: var(--blue-2); }
.y-why h2 { color: #fff; }
.y-why .y-sec-head p { color: rgba(255, 255, 255, 0.7); }

.y-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.y-why-item {
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.y-why-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue-2);
  fill: none;
  stroke-width: 1.6;
  margin-bottom: 14px;
}

.y-why-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.y-why-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.y-why-item[data-stat]:not([data-stat=""]) .y-why-stat {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-2);
  margin-bottom: 6px;
}

.y-why-stat { display: none; }

@media (max-width: 900px) {
  .y-why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .y-why-grid { grid-template-columns: 1fr; }
}

/* ========== ABOUT ========== */
.y-about {
  background: var(--gray);
  padding: 0;
}

.y-about-bleed {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: stretch;
  min-height: clamp(420px, 52vh, 560px);
  width: 100%;
}

.y-about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px var(--gutter) 64px max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.y-about-copy h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 14px;
  max-width: 18ch;
}

.y-about-copy p {
  color: var(--muted);
  max-width: 38rem;
  font-size: 1.0625rem;
}

.y-about-media {
  overflow: hidden;
  background: #d7dee6;
  min-height: 100%;
  position: relative;
}

.y-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

@media (max-width: 900px) {
  .y-about-bleed {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .y-about-copy {
    padding: 48px var(--gutter);
  }
  .y-about-copy h2 { max-width: none; }
  .y-about-media {
    aspect-ratio: 16 / 11;
    min-height: 240px;
  }
}

/* ========== CTA + FORM + CONTACT ========== */
.y-contact {
  background: var(--navy-2);
  color: #fff;
  padding: 72px 0;
}

.y-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.y-cta-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.y-cta-copy p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  max-width: 28rem;
}

.y-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 280px;
}

.y-form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 24px;
}

.y-form-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.y-form {
  display: grid;
  gap: 12px;
}

.y-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.y-field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 5px;
}

.y-field input,
.y-field select,
.y-field textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s;
}

.y-field input:focus,
.y-field select:focus,
.y-field textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

.y-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.y-info-list {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.y-info-list span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 4px;
}

.y-info-list a,
.y-info-list p {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.y-info-list a:hover { color: #fff; }

.y-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.2);
  aspect-ratio: 16 / 11;
}

.y-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

.y-map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-2);
}

@media (max-width: 980px) {
  .y-contact-grid { grid-template-columns: 1fr 1fr; }
  .y-cta-copy { grid-column: 1 / -1; }
}

@media (max-width: 700px) {
  .y-contact-grid { grid-template-columns: 1fr; }
  .y-form-row { grid-template-columns: 1fr; }
}

/* ========== BUTTONS ========== */
.y-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-align: center;
}

.y-btn-red {
  background: var(--red);
  color: #fff;
}

.y-btn-red:hover { background: #b9141a; }

.y-btn-outline {
  background: transparent;
  border-color: #c5ced6;
  color: var(--navy);
}

.y-btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.y-btn-blue {
  background: var(--blue);
  color: #fff;
}

.y-btn-blue:hover { background: #066a9f; }

.y-btn-wa {
  background: #25d366;
  color: #fff;
}

.y-btn-wa:hover { background: #1fb855; }

.y-btn-navy {
  background: var(--navy);
  color: #fff;
}

.y-btn-navy:hover { background: #0a2a40; }

.y-btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.y-btn-ghost-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.y-btn-block { width: 100%; }

/* ========== FOOTER ========== */
.y-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 56px 0 0;
}

.y-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.y-footer .footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}

.y-footer-brand p {
  font-size: 0.9rem;
  max-width: 22rem;
  line-height: 1.55;
}

.y-footer h4 {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.y-footer-col a {
  display: block;
  font-size: 0.875rem;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s;
}

.y-footer-col a:hover { color: #fff; }

.y-social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.y-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  color: #fff;
}

.y-social a:hover { border-color: rgba(255, 255, 255, 0.4); }

.y-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.y-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0 88px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.8125rem;
}

@media (max-width: 900px) {
  .y-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .y-footer-grid { grid-template-columns: 1fr; }
}

/* ========== MOBILE BAR ========== */
.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.mobile-call-bar a {
  text-align: center;
  padding: 14px 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  min-height: 48px;
  display: grid;
  place-items: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-call-bar a:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--navy-2);
}

.mobile-call-bar a.wa { background: #1ea851; }

@media (max-width: 760px) {
  .mobile-call-bar { display: grid; }
  body.site-corp {
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  }
}

/* ========== HERO MOBILE ========== */
@media (max-width: 900px) {
  .y-hero-bleed {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .y-hero-copy {
    padding: 28px var(--gutter) 20px;
    order: 1;
  }
  .y-hero h1 {
    font-size: clamp(1.85rem, 7.2vw, 2.45rem);
    max-width: none;
    margin-bottom: 12px;
  }
  .y-hero-lead {
    font-size: 0.98rem;
    margin-bottom: 20px;
  }
  .y-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .y-hero-actions .y-btn {
    width: 100%;
    min-height: 48px;
  }
  .y-hero-media {
    order: 2;
    aspect-ratio: 16 / 11;
    min-height: 220px;
    max-height: min(52vh, 420px);
  }
  .y-ad {
    transition: opacity 0.4s var(--ease), transform 0.45s var(--ease);
  }
  .y-ad.is-leaving {
    transition: opacity 0.35s ease, transform 0.4s var(--ease);
  }
  .y-ad-ui {
    padding-bottom: 10px;
  }
  .y-sec {
    padding: 52px 0;
  }
  .y-sec-head {
    margin-bottom: 28px;
  }
  .y-contact {
    padding: 48px 0 calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .y-cta-actions {
    max-width: none;
  }
  .y-cta-actions .y-btn {
    width: 100%;
    min-height: 48px;
  }
  .y-form-card {
    padding: 18px;
  }
  .y-field input,
  .y-field select,
  .y-field textarea {
    font-size: 16px;
    min-height: 46px;
  }
  .y-map {
    aspect-ratio: 16 / 12;
    min-height: 200px;
  }
}

@media (max-width: 560px) {
  .y-hero-media {
    aspect-ratio: 4 / 3;
    min-height: 200px;
    max-height: min(48vh, 360px);
  }
  .y-trust-item {
    padding: 16px 14px;
  }
}

/* ========== REVEAL ========== */
.reveal { opacity: 1; transform: none; }
.reveal.is-pending {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}
.reveal.is-pending.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .reveal.is-pending,
  .y-svc,
  .y-svc-media img,
  .y-ad,
  .y-ad-progress > i {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .y-header,
  .y-topbar,
  .y-nav,
  .y-brand img { transition: none !important; }
}

/* Form status (main.js) */
.form-status {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: var(--radius);
  font-size: 0.875rem;
}
.form-status.success {
  background: #e8f7ee;
  color: #146c2e;
}
.form-status.error {
  background: #fdecec;
  color: #9b1c1c;
}
