:root {
  --blue-900: #053766;
  --blue-700: #064a8f;
  --blue-500: #0d74c9;
  --cyan: #25b8e8;
  --ink: #172235;
  --muted: #64748b;
  --line: #d9e5f2;
  --soft: #eef6fb;
  --white: #ffffff;
  --shadow: 0 18px 46px rgba(5, 55, 102, .12);
}

/* Privacy-first analytics consent */
.analytics-consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
  padding: 20px 22px;
  color: #f8fbff;
  background: linear-gradient(135deg, #073b73 0%, #0a559b 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(3, 34, 68, 0.34);
}

.analytics-consent-banner[hidden] {
  display: none;
}

.analytics-consent-copy {
  max-width: 760px;
}

.analytics-consent-copy strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.04rem;
}

.analytics-consent-copy p {
  margin: 0;
  color: rgba(248, 251, 255, 0.88);
  font-size: 0.91rem;
  line-height: 1.55;
}

.analytics-consent-copy a {
  display: inline-block;
  margin-top: 7px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.analytics-consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(112px, 1fr));
  gap: 10px;
  min-width: 254px;
}

.analytics-consent-actions button {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid #fff;
  border-radius: 9px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.analytics-consent-actions [data-consent-reject] {
  color: #fff;
  background: transparent;
}

.analytics-consent-actions [data-consent-accept] {
  color: #073b73;
  background: #fff;
}

.analytics-consent-actions button:focus-visible,
.analytics-consent-copy a:focus-visible {
  outline: 3px solid #ffd166;
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .analytics-consent-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    padding: 17px;
    overflow: auto;
    border-radius: 13px;
  }

  .analytics-consent-actions {
    min-width: 0;
  }
}

@media (max-width: 390px) {
  .analytics-consent-actions {
    grid-template-columns: 1fr;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 12px; background: var(--blue-900); color: white; padding: 10px 14px; z-index: 5; }
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--blue-900); }
.brand-logo { max-height: 78px; max-width: 320px; width: auto; object-fit: contain; }
.brand-mark { width: 54px; height: 54px; display: grid; place-items: center; background: var(--blue-700); color: white; border-radius: 8px; font-weight: 800; }
.brand strong, .brand small { display: block; line-height: 1.05; }
.brand small { color: var(--muted); font-size: 13px; margin-top: 3px; }
.admin-brand { gap: 10px; }
.admin-brand-logo { width: 54px; height: 54px; object-fit: contain; object-position: center; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-item.has-dropdown::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 18px; display: block; }
.site-nav > .nav-link, .nav-trigger { position: relative; min-height: 40px; display: inline-flex; align-items: center; gap: 6px; text-decoration: none; color: #334155; padding: 10px 11px; border: 0; border-radius: 6px; background: transparent; font: inherit; font-size: 14px; font-weight: 700; line-height: 1; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s ease; }
.site-nav > .nav-link::after, .nav-trigger::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px; background: var(--cyan); transform: scaleX(0); transform-origin: left; transition: transform .22s ease; }
.site-nav > .nav-link:hover, .site-nav > .nav-link[aria-current="page"], .nav-item:hover > .nav-trigger, .nav-item.is-open > .nav-trigger, .nav-item.is-current > .nav-trigger { background: var(--soft); color: var(--blue-700); }
.site-nav > .nav-link:hover, .nav-trigger:hover { transform: translateY(-1px); }
.site-nav > .nav-link:hover::after, .site-nav > .nav-link[aria-current="page"]::after, .nav-item:hover > .nav-trigger::after, .nav-item.is-open > .nav-trigger::after, .nav-item.is-current > .nav-trigger::after { transform: scaleX(1); }
.mega-menu { position: absolute; top: 100%; left: 0; z-index: 300; width: min(340px, calc(100vw - 40px)); display: grid; gap: 18px; padding: 22px 20px; border: 1px solid rgba(217,229,242,.92); border-radius: 12px; background: rgba(255,255,255,.98); box-shadow: 0 24px 56px rgba(5,55,102,.16); opacity: 0; visibility: hidden; transform: translateY(6px); pointer-events: none; transition: opacity .16s ease, transform .16s ease, visibility 0s linear .12s; }
.nav-item:hover > .mega-menu, .nav-item:focus-within > .mega-menu, .nav-item.is-open > .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; transition-delay: 0s; }
.mega-menu-wide { left: 50%; width: min(920px, calc(100vw - 44px)); grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr); gap: 20px; transform: translateX(-50%) translateY(6px); }
.nav-item:hover > .mega-menu-wide, .nav-item:focus-within > .mega-menu-wide, .nav-item.is-open > .mega-menu-wide { transform: translateX(-50%) translateY(0); }
.mega-menu-compact, .mega-menu-contact, .language-menu { left: auto; right: 0; }
.mega-column { min-width: 0; display: grid; gap: 7px; align-content: start; }
.mega-column + .mega-column { padding-left: 18px; border-left: 1px solid rgba(217,229,242,.9); }
.mega-services-column, .mega-products-column { grid-template-rows: auto minmax(0, 1fr) auto; align-content: stretch; }
.mega-services-links { min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2px 10px; align-content: start; }
.mega-services-links-column, .mega-products-links { min-width: 0; display: grid; gap: 2px; align-content: start; }
.mega-column h3 { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 8px; color: var(--blue-900); font-size: 14px; font-weight: 700; text-transform: uppercase; }
.mega-heading-link { display: inline-flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; padding: 0; border-radius: 0; font: inherit; text-transform: inherit; }
.mega-heading-link:hover { color: var(--blue-700); background: transparent; transform: none; }
.mega-column h3 svg, .mega-note svg, .mega-contact-card svg { width: 20px; height: 20px; color: var(--blue-700); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mega-column a, .language-menu a { position: relative; display: grid; gap: 3px; padding: 10px 11px; border-radius: 8px; color: #1f2f46; text-decoration: none; font-size: 15px; font-weight: 500; line-height: 1.42; transition: background .2s ease, color .2s ease, transform .2s ease; }
.mega-column a:hover, .language-menu a:hover, .language-menu a.is-active { background: #f2f8ff; color: var(--blue-700); transform: translateX(3px); }
.mega-column h3 .mega-heading-link { display: inline-flex; align-items: center; gap: 10px; padding: 0; border-radius: 0; color: inherit; font: inherit; line-height: inherit; text-transform: inherit; }
.mega-column h3 .mega-heading-link:hover { background: transparent; color: var(--blue-700); transform: none; }
.mega-services-column .mega-service-link { grid-template-columns: 18px 1fr; align-items: center; gap: 8px; }
.mega-menu-wide .mega-service-link { padding: 8px; font-size: 14px; line-height: 1.32; }
.mega-service-link > span { width: 18px; height: 18px; display: grid; place-items: center; color: var(--blue-700); }
.mega-service-link > span svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mega-column a.mega-nav-link { grid-template-columns: 18px minmax(0, 1fr); align-items: center; gap: 8px; }
.mega-nav-link-icon { width: 18px; height: 18px; display: grid; place-items: center; color: var(--blue-700); }
.mega-nav-link-icon svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mega-nav-link-copy { min-width: 0; display: grid; gap: 3px; }
.mega-column a small { color: #64748b; font-size: 13px; font-weight: 400; line-height: 1.35; }
.mega-column a strong { color: inherit; font-size: 15px; font-weight: 600; line-height: 1.3; }
.mega-all-link { margin-top: 8px; color: var(--blue-700) !important; font-size: 15px !important; font-weight: 600 !important; border-top: 1px solid rgba(217,229,242,.9); padding-top: 13px !important; }
.mega-link-arrow { display: inline-block; transition: transform .2s ease; }
.mega-all-link:hover .mega-link-arrow { transform: translateX(3px); }
.mega-note { display: flex; align-items: flex-start; gap: 10px; margin: 12px 0 0; padding: 14px; border-radius: 10px; background: #f8fbff; color: #334155; font-size: 13px; font-weight: 500; line-height: 1.45; }
.mega-contact-card { display: grid; gap: 9px; margin-top: 10px; padding: 14px; border-radius: 10px; background: #f8fbff; color: #334155; font-size: 13px; font-weight: 500; line-height: 1.4; }
.mega-contact-card span { display: grid; grid-template-columns: 20px 1fr; gap: 8px; align-items: start; }
.language-select { margin-left: 4px; padding-left: 8px; border-left: 1px solid rgba(217,229,242,.9); }
.language-trigger { gap: 6px; white-space: nowrap; }
.language-menu { width: 178px; gap: 4px; padding: 10px; border-radius: 10px; }
.language-menu a { display: flex; align-items: center; gap: 8px; }
.flag-icon { flex: 0 0 18px; width: 18px; height: 12px; display: inline-block; overflow: hidden; border-radius: 2px; background-size: cover; background-position: center; box-shadow: 0 0 0 1px rgba(15,23,42,.12); }
.flag-tr { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'%3E%3Cpath fill='%23e30a17' d='M0 0h36v24H0z'/%3E%3Ccircle cx='15' cy='12' r='6.2' fill='%23fff'/%3E%3Ccircle cx='17' cy='12' r='5' fill='%23e30a17'/%3E%3Cpath fill='%23fff' d='m23.7 8.5.7 2.1h2.2l-1.8 1.3.7 2.1-1.8-1.3-1.8 1.3.7-2.1-1.8-1.3H23z'/%3E%3C/svg%3E"); }
.flag-gb { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'%3E%3Cpath fill='%23012169' d='M0 0h36v24H0z'/%3E%3Cpath stroke='%23fff' stroke-width='5' d='m0 0 36 24M36 0 0 24'/%3E%3Cpath stroke='%23c8102e' stroke-width='3' d='m0 0 36 24M36 0 0 24'/%3E%3Cpath fill='%23fff' d='M15 0h6v24h-6zM0 9h36v6H0z'/%3E%3Cpath fill='%23c8102e' d='M16.4 0h3.2v24h-3.2zM0 10.4h36v3.2H0z'/%3E%3C/svg%3E"); }
.flag-ru { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 24'%3E%3Cpath fill='%23fff' d='M0 0h36v8H0z'/%3E%3Cpath fill='%230039a6' d='M0 8h36v8H0z'/%3E%3Cpath fill='%23d52b1e' d='M0 16h36v8H0z'/%3E%3C/svg%3E"); }
.nav-toggle { display: none; border: 1px solid var(--line); background: white; width: 42px; height: 42px; border-radius: 6px; font-size: 22px; }

.hero { position: relative; min-height: 600px; display: grid; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; animation: heroZoom 16s ease-out both; will-change: transform; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 38%, rgba(255,255,255,.36) 68%, rgba(255,255,255,.12) 100%); }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 680px) 220px; gap: 34px; align-items: center; padding: 86px 0 116px; }
.kicker, .section-head span, .page-hero span, .project-card span, .library-item span { color: var(--blue-500); font-weight: 800; text-transform: uppercase; letter-spacing: 0; font-size: 13px; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 { font-size: 58px; line-height: 1.02; margin-bottom: 22px; color: var(--blue-900); letter-spacing: 0; }
.hero p { font-size: 19px; max-width: 650px; color: #334155; }
.hero-copy .kicker { display: inline-block; animation: fadeIn .55s ease both; }
.hero-copy h1 { animation: fadeIn .75s ease .1s both; }
.hero-copy p { animation: fadeDown .75s ease .22s both; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-actions .btn { animation: fadeUp .65s ease .36s both; }
.hero-actions .btn:nth-child(2) { animation-delay: .48s; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 12px 18px; border-radius: 6px; text-decoration: none; border: 1px solid var(--blue-700); font-weight: 800; cursor: pointer; }
.btn.primary { background: var(--blue-700); color: white; }
.btn.ghost { background: white; color: var(--blue-700); }
.btn.small { min-height: 38px; padding: 8px 12px; font-size: 14px; }
.hero-panel { display: grid; gap: 10px; background: rgba(255,255,255,.92); border: 1px solid var(--line); box-shadow: var(--shadow); border-radius: 8px; padding: 22px; }
.hero-panel strong { font-size: 34px; color: var(--blue-700); line-height: 1; }
.hero-panel span { color: var(--muted); font-weight: 700; padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.hero-panel span:last-child { border: 0; }

.band, .split, .assistant-band { padding: 86px 0; }
.band.light { background: var(--soft); }
.section-head { max-width: 720px; margin-bottom: 30px; }
.section-head h2, .page-hero h1 { font-size: 38px; line-height: 1.12; color: var(--blue-900); margin: 6px 0 12px; letter-spacing: 0; }
.section-head p, .page-hero p { color: var(--muted); font-size: 18px; }
.service-grid, .project-grid, .cert-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.card, .project-card, .contact-box, .assistant-form, .assistant-result {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(5, 55, 102, .07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(5, 55, 102, .12); }
.project-card:hover { transform: translateY(-4px) scale(1.012); box-shadow: 0 22px 46px rgba(5, 55, 102, .16); }
.card-media { overflow: hidden; border-radius: 8px; margin: -6px -6px 18px; aspect-ratio: 16 / 10; background: var(--soft); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card { min-height: 100%; display: flex; flex-direction: column; }
.product-card .card-media { height: 220px; aspect-ratio: auto; display: grid; place-items: center; background: #f8fbff; padding: 16px; }
.product-card .card-media img { width: 100%; height: 100%; max-width: 100%; max-height: 100%; object-fit: contain; object-position: center; }
.product-card:hover .card-media img { transform: scale(1.055); }
.product-card h3 { font-size: clamp(20px, 1.55vw, 24px); line-height: 1.16; }
.product-card p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card.wide { min-height: 100%; }
.card-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 8px; background: var(--soft); color: var(--blue-700); font-weight: 900; margin-bottom: 16px; }
.card h2, .card h3, .project-card h2, .project-card h3, .library-item h2 { color: var(--blue-900); line-height: 1.2; margin-bottom: 10px; }
.card p, .project-card p, .library-item p { color: var(--muted); }
.card ul { padding-left: 20px; color: #334155; margin-bottom: 0; }
.split-grid, .assistant-layout, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.metric-list { display: grid; gap: 12px; }
.metric-list div { display: grid; grid-template-columns: 64px 1fr; align-items: center; padding: 18px; border: 1px solid var(--line); border-radius: 8px; }
.metric-list b { color: var(--cyan); font-size: 24px; }
.metric-list span { font-weight: 800; }
.text-link { color: var(--blue-700); font-weight: 800; text-decoration: none; border-bottom: 2px solid var(--cyan); }
.project-card small { color: var(--muted); font-weight: 800; }
.product-brand { display: inline-block; color: var(--blue-500); font-weight: 900; font-size: 12px; text-transform: uppercase; margin-bottom: 10px; }
.partners-band { padding: 76px 0; }
.partner-marquee { overflow: hidden; background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; }
.partner-track { display: flex; align-items: center; gap: 62px; width: max-content; animation: partnerMarquee 34s linear infinite; }
.partner-marquee:hover .partner-track { animation-play-state: paused; }
.partner-logo { min-width: 205px; height: 96px; display: grid; place-items: center; opacity: .94; transition: opacity .2s ease, transform .2s ease; }
.partner-logo:hover, .cert-card:hover { opacity: 1; transform: translateY(-3px); }
.partner-logo img { max-height: 70px; max-width: 190px; object-fit: contain; }
.partner-logo strong { color: var(--blue-900); font-size: 22px; }
.home-hero { min-height: 620px; background: #f7fbff; }
.home-hero .hero-media { background-size: min(1180px, 78vw) auto; background-position: 68% 55%; background-repeat: no-repeat; }
.home-hero .hero-media::after { background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 35%, rgba(241,248,254,.34) 61%, rgba(241,248,254,.12) 100%); }
.home-hero-grid { grid-template-columns: minmax(0, 700px) minmax(280px, 360px); gap: 54px; padding: 92px 0 88px; }
.home-hero .kicker { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border: 1px solid rgba(13,116,201,.16); border-radius: 999px; background: rgba(255,255,255,.76); color: var(--blue-700); box-shadow: 0 8px 22px rgba(5,55,102,.06); }
.home-hero h1 { max-width: 720px; font-size: clamp(42px, 5vw, 62px); letter-spacing: 0; }
.home-hero p { max-width: 660px; color: #2f4058; }
.home-hero .btn { border-radius: 8px; box-shadow: 0 10px 24px rgba(5,55,102,.08); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.home-hero .btn:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(5,55,102,.14); }
.home-hero-panel { position: relative; gap: 0; padding: 12px; border-radius: 14px; border-color: rgba(217,229,242,.86); background: rgba(255,255,255,.9); backdrop-filter: blur(14px); box-shadow: 0 24px 60px rgba(5,55,102,.16); }
.home-hero-panel::before { content: ""; position: absolute; inset: 0; border-radius: inherit; border: 1px solid rgba(255,255,255,.72); pointer-events: none; }
.home-hero-panel span { border: 0; padding: 0; color: inherit; }
.home-stat-item { display: grid; grid-template-columns: 46px 1fr; gap: 12px; align-items: center; padding: 14px 12px; border-bottom: 1px solid rgba(217,229,242,.82); }
.home-stat-item:last-child { border-bottom: 0; }
.home-stat-icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-700); background: linear-gradient(180deg, #f7fbff, #eef6fb); border: 1px solid rgba(13,116,201,.13); }
.home-stat-icon svg, .why-icon svg, .home-service-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.home-stat-copy { display: grid; gap: 4px; }
.home-stat-copy strong { font-size: 17px; color: var(--blue-900); line-height: 1.15; }
.home-stat-copy span { color: var(--muted); font-size: 12px; font-weight: 800; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.home-search-band { position: relative; z-index: 3; margin-top: -42px; padding: 0 0 18px; }
.home-search-shell { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(360px, .9fr); gap: 18px; align-items: stretch; padding: 18px; border: 1px solid rgba(217,229,242,.92); border-radius: 12px; background: rgba(255,255,255,.96); box-shadow: 0 18px 42px rgba(5,55,102,.12); }
.home-search-form { display: grid; grid-template-columns: minmax(260px, 1fr) 190px 112px; gap: 10px; align-items: stretch; align-self: center; min-height: 52px; }
.home-search-input { min-width: 0; display: grid; grid-template-columns: 24px 1fr; gap: 10px; align-items: center; height: 52px; align-self: stretch; padding: 0 14px; border: 1px solid rgba(178,199,222,.78); border-radius: 8px; background: #fff; color: var(--blue-700); transition: border-color .2s ease, box-shadow .2s ease; }
.home-search-input:focus-within { border-color: rgba(13,116,201,.55); box-shadow: 0 0 0 3px rgba(13,116,201,.1); }
.home-search-input svg, .home-search-submit svg, .home-quick-links svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.home-search-input input { width: 100%; border: 0; outline: 0; color: #1f2f46; font: inherit; font-size: 14px; font-weight: 400; background: transparent; }
.home-search-input input::placeholder { color: #98a2b3; font-weight: 400; }
.home-search-form select { height: 52px; align-self: stretch; min-width: 0; margin: 0; padding: 0 14px; border: 1px solid rgba(178,199,222,.78); border-radius: 8px; background: #fff; color: #334155; font-size: 13px; font-weight: 500; outline: 0; }
.home-search-form select:focus { border-color: rgba(13,116,201,.55); box-shadow: 0 0 0 3px rgba(13,116,201,.1); }
.home-search-submit { gap: 8px; min-height: 52px; height: 52px; align-self: stretch; margin: 0; padding-top: 0; padding-bottom: 0; border-radius: 8px; font-weight: 700; }
.home-quick-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; min-height: 64px; border-left: 1px solid rgba(217,229,242,.86); }
.home-quick-links a { display: grid; justify-items: center; align-content: center; gap: 7px; min-height: 64px; padding: 8px 10px; color: var(--blue-700); text-decoration: none; border-right: 1px solid rgba(217,229,242,.86); transition: background .2s ease, color .2s ease; }
.home-quick-links a:last-child { border-right: 0; }
.home-quick-links a:hover { background: #f8fbff; color: var(--blue-900); }
.home-quick-links span { color: var(--blue-900); font-size: 12px; font-weight: 600; text-align: center; line-height: 1.15; }
.home-partners { position: relative; z-index: 2; padding: 14px 0; background: rgba(255,255,255,.96); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); box-shadow: 0 12px 34px rgba(5,55,102,.06); }
.home-partners-shell { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: 22px; align-items: center; }
.home-partners-label { color: var(--blue-900); font-size: 13px; font-weight: 800; text-transform: uppercase; white-space: nowrap; letter-spacing: 0; }
.home-partner-marquee { padding: 0; border: 0; background: transparent; }
.home-partner-marquee .partner-track { gap: 46px; animation-duration: 42s; }
.home-partner-logo { min-width: 150px; height: 58px; opacity: 1; filter: none; }
.home-partner-logo img { max-height: 44px; max-width: 136px; }
.home-partners-link { display: inline-flex; align-items: center; gap: 8px; min-height: 42px; padding: 10px 14px; border: 1px solid rgba(217,229,242,.92); border-radius: 8px; background: #fff; color: var(--blue-700); font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.home-partners-link:hover { transform: translateY(-1px); border-color: rgba(13,116,201,.35); box-shadow: 0 10px 22px rgba(5,55,102,.08); }
.home-why { padding: 74px 0 78px; background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.why-card { min-height: 218px; padding: 24px; border: 1px solid rgba(217,229,242,.92); border-radius: 10px; background: rgba(255,255,255,.92); box-shadow: 0 12px 30px rgba(5,55,102,.06); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.why-card:hover { transform: translateY(-5px); border-color: rgba(13,116,201,.28); box-shadow: 0 22px 48px rgba(5,55,102,.13); }
.why-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 14px; color: var(--blue-700); background: linear-gradient(180deg, #f8fbff, #edf7ff); border: 1px solid rgba(13,116,201,.12); margin-bottom: 16px; }
.why-card h3, .home-service-card h3 { color: var(--blue-900); margin: 0 0 10px; line-height: 1.18; }
.home-service-card h3 a { color: inherit; text-decoration: none; }
.home-service-card h3 a:hover { color: var(--blue-700); }
.why-card p, .home-service-card p { color: #52657c; margin-bottom: 0; }
.home-services { padding-top: 82px; }
.home-service-grid { gap: 20px; }
.home-service-card { position: relative; min-height: 100%; padding: 0; overflow: hidden; border-radius: 10px; background: linear-gradient(180deg, #fff, #fbfdff); }
.home-service-media { aspect-ratio: 20 / 9; margin: 0; overflow: hidden; background: #eaf3f9; }
.home-service-media img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.home-service-body { min-height: 226px; padding: 22px 24px 26px; }
.home-service-card::after { content: ""; position: absolute; right: -42px; bottom: -42px; width: 126px; height: 126px; border-radius: 50%; background: rgba(37,184,232,.08); transition: transform .28s ease; }
.home-service-card:hover::after { transform: scale(1.25); }
.home-service-card:hover .home-service-media img { transform: scale(1.035); }
.home-references { background: linear-gradient(180deg, #eef6fb 0%, #f8fbff 100%); }
.home-reference-row { overflow: hidden; margin-top: 4px; }
.home-reference-track { display: flex; gap: 20px; align-items: stretch; }
.home-reference-row.is-static .home-reference-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.home-reference-row.is-carousel .home-reference-track { width: max-content; animation: homeReferenceSlide 34s linear infinite; }
.home-reference-row.is-carousel:hover .home-reference-track { animation-play-state: paused; }
.home-reference-row.is-carousel .home-project-card { flex: 0 0 320px; }
.home-project-card { min-width: 0; padding: 0; overflow: hidden; border-radius: 10px; background: white; }
.home-project-media, .home-project-fallback { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: linear-gradient(135deg, #e8f4fb, #ffffff); }
.home-project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.home-project-fallback { display: grid; place-items: center; min-height: 192px; }
.home-project-fallback::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(13,116,201,.16); border-radius: 8px; }
.home-project-fallback::after { content: "Referans Projesi"; position: relative; z-index: 1; color: rgba(5,55,102,.72); font-weight: 900; text-transform: uppercase; letter-spacing: 0; font-size: 13px; }
.home-project-overlay, .home-project-fallback span { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(5,55,102,.72); color: white; font-weight: 900; opacity: 0; transition: opacity .28s ease; }
.home-project-card:hover .home-project-media img { transform: scale(1.07); }
.home-project-card:hover .home-project-overlay, .home-project-card:hover .home-project-fallback span { opacity: 1; }
.home-project-card:hover .home-project-fallback::after { opacity: 0; }
.home-project-body { padding: 22px; }
.home-project-meta { display: flex; flex-wrap: wrap; gap: 8px 12px; margin-bottom: 12px; color: var(--blue-700); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.home-project-card h3 { font-size: 22px; margin-bottom: 10px; }
@keyframes homeReferenceSlide { from { transform: translateX(0); } to { transform: translateX(calc(-50% - 10px)); } }
.home-section-footer { margin-top: 26px; display: flex; justify-content: center; }
.home-products { padding: 82px 0 40px; background: white; }
.product-listing-band { padding-bottom: 40px; }
.home-product-card { border-radius: 10px; padding: 18px; box-shadow: 0 12px 30px rgba(5,55,102,.07); }
.home-product-card .card-media { height: 246px; margin: 0 0 18px; border: 1px solid rgba(217,229,242,.85); border-radius: 10px; background: linear-gradient(180deg, #f8fbff, #ffffff); }
.home-product-card .product-brand { font-size: 11px; letter-spacing: 0; margin-bottom: 8px; }
.home-product-card h3 { font-size: clamp(19px, 1.45vw, 23px); }
.home-certificates { padding: 66px 0; background: linear-gradient(180deg, #f8fbff 0%, #eef6fb 100%); }
.certificate-mini-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.certificate-mini-card { display: grid; grid-template-columns: 74px 1fr; gap: 14px; align-items: center; min-height: 116px; padding: 14px; border: 1px solid rgba(217,229,242,.95); border-radius: 10px; background: white; box-shadow: 0 10px 26px rgba(5,55,102,.06); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.certificate-mini-card:hover { transform: translateY(-3px); border-color: rgba(13,116,201,.28); box-shadow: 0 16px 34px rgba(5,55,102,.1); }
.certificate-mini-preview { width: 74px; height: 74px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 9px; background: linear-gradient(180deg, #f8fbff, #ffffff); }
.certificate-mini-preview img { width: 100%; height: 100%; object-fit: cover; }
.certificate-mini-card span, .certificate-card-brand { display: block; color: var(--blue-500); font-weight: 900; font-size: 11px; text-transform: uppercase; margin-bottom: 5px; }
.certificate-mini-card h3 { color: var(--blue-900); font-size: 16px; line-height: 1.18; margin-bottom: 5px; }
.certificate-mini-card small { color: var(--muted); font-weight: 800; }
.certificate-pdf-icon, .certificate-placeholder-icon { width: 52px; height: 52px; display: grid !important; place-items: center; border-radius: 10px; background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); color: white !important; font-size: 12px !important; letter-spacing: 0; margin: 0 !important; }
.certificate-placeholder-icon { background: linear-gradient(135deg, #eaf4fb, #ffffff); color: var(--blue-700) !important; border: 1px solid rgba(13,116,201,.18); }
.certificate-list-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 20px; align-items: stretch; }
.certificate-card { --certificate-accent: var(--blue-700); position: relative; display: flex; width: 100%; height: 430px; min-width: 0; overflow: hidden; border: 1px solid rgba(197,216,232,.95); border-radius: 14px; background: #fff; box-shadow: 0 12px 32px rgba(5,55,102,.075); isolation: isolate; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.certificate-card:hover { transform: translateY(-4px); border-color: rgba(13,116,201,.28); box-shadow: 0 20px 42px rgba(5,55,102,.12); }
.certificate-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 50% 5%, color-mix(in srgb, var(--certificate-accent) 9%, transparent), transparent 42%), linear-gradient(180deg, #fff 0%, #fbfdff 100%); }
.certificate-card-accent { position: absolute; inset: 0 0 auto; height: 4px; background: var(--certificate-accent); }
.certificate-card-inner { width: 100%; min-width: 0; display: flex; flex-direction: column; align-items: stretch; padding: 28px 22px 22px; text-align: center; }
.certificate-card-mark { height: 82px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; }
.certificate-card-mark img { width: auto; max-width: min(160px, 88%); height: auto; max-height: 64px; object-fit: contain; }
.certificate-card-emblem { width: 50px; height: 50px; display: grid; place-items: center; border: 1px solid color-mix(in srgb, var(--certificate-accent) 24%, #d7e5ef); border-radius: 14px; color: var(--certificate-accent); background: color-mix(in srgb, var(--certificate-accent) 7%, #fff); }
.certificate-card-emblem svg { width: 27px; height: 27px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.certificate-card-monogram { max-width: 100%; overflow: hidden; color: var(--blue-900); font-size: 12px; font-weight: 900; letter-spacing: .055em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.certificate-brand-lockup { min-width: 0; max-width: 100%; color: var(--certificate-accent); display: flex; align-items: center; justify-content: center; gap: 8px; }
.certificate-brand-lockup svg { flex: 0 0 auto; width: 43px; height: 43px; fill: currentColor; stroke: currentColor; }
.certificate-brand-lockup span { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.certificate-brand-lockup strong { color: currentColor; font-size: 24px; font-weight: 950; letter-spacing: -.035em; line-height: .95; }
.certificate-brand-lockup small { max-width: 112px; color: currentColor; font-size: 7px; font-weight: 900; letter-spacing: .015em; line-height: 1.15; margin-top: 5px; text-transform: uppercase; }
.certificate-lockup-myk svg path + path { opacity: .65; }
.certificate-lockup-izocam { flex-direction: column; gap: 2px; color: #171717; }
.certificate-lockup-izocam svg { width: 72px; height: 16px; fill: none; color: #f0b400; stroke-width: 5; stroke-linecap: round; }
.certificate-lockup-izocam strong { font-size: 22px; letter-spacing: -.055em; }
.certificate-lockup-yeditepe svg { width: 46px; fill: #11559a; stroke: #fff; stroke-width: 1.3; }
.certificate-lockup-yeditepe strong { font-size: 15px; letter-spacing: -.025em; }
.certificate-lockup-yeditepe small { font-size: 8px; margin-top: 3px; }
.certificate-lockup-uks { position: relative; min-height: 50px; color: #173579; }
.certificate-lockup-uks strong { position: relative; z-index: 1; font-size: 42px; font-style: italic; letter-spacing: -.08em; }
.certificate-lockup-uks i { position: absolute; width: 92px; height: 15px; left: 50%; top: 25px; border-top: 5px solid #0596ca; border-radius: 50%; transform: translateX(-50%) rotate(-7deg); }
.certificate-lockup-etbis { flex-direction: column; gap: 3px; }
.certificate-lockup-etbis svg { width: 44px; height: 49px; fill: #1e5fae; stroke: #fff; stroke-width: 3; }
.certificate-lockup-etbis strong { color: #1e5fae; font-size: 12px; letter-spacing: .08em; }
.certificate-lockup-ytong { flex-direction: column; gap: 5px; color: #151515; }
.certificate-lockup-ytong strong { font-size: 29px; letter-spacing: -.055em; }
.certificate-lockup-ytong i { width: 84px; height: 4px; background: #efa900; }
.certificate-iso-mark { position: relative; width: 86px; height: 70px; display: grid; place-items: center; color: var(--certificate-accent); }
.certificate-iso-mark svg { position: absolute; inset: 0 2px auto; width: 82px; height: 58px; fill: none; stroke: currentColor; stroke-width: 1.5; opacity: .8; }
.certificate-iso-mark strong { position: relative; margin-top: 4px; color: currentColor; font-size: 27px; font-weight: 950; letter-spacing: -.06em; }
.certificate-iso-mark small { position: absolute; bottom: 0; color: currentColor; font-size: 12px; font-weight: 950; }
.certificate-award-plaque { position: relative; width: 74px; height: 80px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; color: var(--certificate-accent); }
.certificate-award-plaque > svg { position: absolute; inset: 0; width: 100%; height: 100%; fill: rgba(238,247,249,.72); stroke: #a8c2c7; stroke-width: 1.5; }
.certificate-award-plaque img { position: relative; z-index: 1; width: auto; max-width: 34px; height: auto; max-height: 37px; object-fit: contain; }
.certificate-award-plaque strong { position: relative; z-index: 1; color: #173579; font-size: 20px; font-style: italic; font-weight: 950; letter-spacing: -.05em; }
.certificate-award-plaque small { position: relative; z-index: 1; color: #51636d; font-size: 8px; font-weight: 900; }
.certificate-card-divider { width: 58px; height: 1px; margin: 22px auto 20px; background: color-mix(in srgb, var(--certificate-accent) 42%, #d8e4ed); }
.certificate-card-copy { min-height: 144px; display: flex; flex: 1 1 auto; flex-direction: column; align-items: center; }
.certificate-card-brand { margin-bottom: 10px; color: var(--certificate-accent); letter-spacing: .065em; }
.certificate-card-copy h2 { display: -webkit-box; overflow: hidden; color: var(--blue-900); font-size: 19px; line-height: 1.32; margin: 0; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }
.certificate-card-copy p { display: -webkit-box; overflow: hidden; margin: 12px 0 0; color: #607286; font-size: 13px; line-height: 1.55; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.certificate-card-action { min-height: 44px; display: flex; align-items: stretch; justify-content: center; margin-top: 18px; }
.certificate-card-action .btn, .certificate-document-pending { width: 100%; min-height: 42px; display: inline-flex; align-items: center; justify-content: center; margin: 0; padding: 10px 13px; border-radius: 9px; font-size: 12px; font-weight: 900; line-height: 1.25; text-align: center; }
.certificate-document-pending { border: 1px solid #dbe5ed; color: #66788a; background: #f3f6f8; cursor: default; }
.certificate-theme-award { --certificate-accent: #b68422; }
.certificate-theme-education, .certificate-theme-university { --certificate-accent: #4b65a7; }
.certificate-theme-verification { --certificate-accent: #267d72; }
.certificate-theme-quality { --certificate-accent: #245f9e; }
.certificate-theme-environment { --certificate-accent: #3f8460; }
.certificate-theme-safety { --certificate-accent: #d71920; }
.certificate-brand-myk { --certificate-accent: #0d63a8; }
.certificate-brand-koster { --certificate-accent: #22a447; }
.certificate-brand-sika { --certificate-accent: #df101b; }
.certificate-brand-onduline { --certificate-accent: #df1f2d; }
.certificate-brand-izocam { --certificate-accent: #edae00; }
.certificate-brand-yeditepe { --certificate-accent: #11559a; }
.certificate-brand-uks { --certificate-accent: #6f7f86; }
.certificate-brand-etbis { --certificate-accent: #1e5fae; }
.certificate-brand-ytong { --certificate-accent: #efa900; }
.certificate-brand-iso-9001 { --certificate-accent: #0759aa; }
.certificate-brand-iso-14001 { --certificate-accent: #159447; }
.certificate-brand-iso-45001 { --certificate-accent: #d71920; }
.corporate-hero { position: relative; overflow: hidden; padding: 68px 0 62px; background: linear-gradient(112deg, #ffffff 0%, #f6fbff 48%, #eaf6fc 100%); border-bottom: 1px solid var(--line); }
.corporate-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 14% 8%, rgba(37,184,232,.14), transparent 34%), linear-gradient(90deg, rgba(255,255,255,.92), rgba(255,255,255,.38)); pointer-events: none; }
.corporate-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(340px, .8fr); gap: 50px; align-items: center; }
.corporate-hero-copy h1 { color: var(--blue-900); font-size: clamp(42px, 5vw, 66px); line-height: 1.02; margin: 18px 0; }
.corporate-hero-text { max-width: 700px; color: #334155; font-size: 18px; line-height: 1.75; }
.corporate-hero-text p { margin: 0; }
.corporate-hero-text p + p { margin-top: 14px; }
.corporate-anchor-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.corporate-anchor-nav a { text-decoration: none; color: var(--blue-700); background: rgba(255,255,255,.82); border: 1px solid rgba(13,116,201,.14); border-radius: 999px; padding: 9px 13px; font-weight: 900; font-size: 13px; box-shadow: 0 8px 20px rgba(5,55,102,.06); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.corporate-anchor-nav a:hover { transform: translateY(-2px); border-color: rgba(13,116,201,.32); background: white; }
.corporate-hero-media { min-height: 340px; margin: 0; border: 1px solid rgba(217,229,242,.95); border-radius: 14px; overflow: hidden; background: white; box-shadow: 0 24px 60px rgba(5,55,102,.14); }
.corporate-hero-media > img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; object-position: center; display: block; transition: transform .7s ease; }
.corporate-hero-media:hover > img { transform: scale(1.035); }
.corporate-hero-placeholder { height: 100%; min-height: 340px; display: grid; place-items: center; gap: 12px; padding: 34px; background: linear-gradient(135deg, #f8fbff, #eef8ff); }
.corporate-hero-placeholder img { width: min(280px, 80%); max-height: 124px; object-fit: contain; }
.corporate-hero-placeholder span { color: var(--blue-700); font-weight: 900; }
.corporate-split { display: block; }
.corporate-split > div { width: 100%; max-width: 980px; }
.corporate-lead { color: #334155; font-size: 18px; line-height: 1.82; max-width: none; margin: 0; }
.corporate-lead p { margin: 0; }
.corporate-lead p + p { margin-top: 16px; }
.corporate-timeline { display: flex; flex-wrap: wrap; justify-content: center; align-items: stretch; gap: 18px; }
.timeline-item { position: relative; flex: 0 1 calc((100% - 54px) / 4); display: flex; flex-direction: column; padding: 24px; border: 1px solid rgba(217,229,242,.95); border-radius: 12px; background: white; box-shadow: 0 10px 26px rgba(5,55,102,.065); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.timeline-item:hover { transform: translateY(-4px); border-color: rgba(13,116,201,.28); box-shadow: 0 20px 42px rgba(5,55,102,.12); }
.timeline-item > span { display: inline-grid; place-items: center; align-self: flex-start; min-width: 70px; height: 36px; margin-bottom: 17px; border-radius: 999px; background: var(--blue-700); color: white; font-weight: 900; }
.timeline-item h3 { color: var(--blue-900); font-size: 18px; line-height: 1.3; margin-bottom: 9px; }
.timeline-item p { color: #52657c; line-height: 1.65; margin: 0; }
.vision-mission-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.corporate-panel { min-height: 100%; display: flex; flex-direction: column; padding: 30px; border: 1px solid rgba(217,229,242,.95); border-radius: 12px; background: linear-gradient(180deg, #fff, #fbfdff); box-shadow: 0 10px 28px rgba(5,55,102,.065); }
.corporate-panel-icon, .corporate-why-card span { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 18px; border-radius: 13px; color: var(--blue-700); background: linear-gradient(180deg, #f8fbff, #edf7ff); border: 1px solid rgba(13,116,201,.14); }
.corporate-panel svg, .corporate-why-card svg { width: 27px; height: 27px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.corporate-panel h2 { color: var(--blue-900); margin-bottom: 12px; }
.corporate-panel p { color: #52657c; line-height: 1.75; margin: 0; }
.corporate-panel-copy p + p { margin-top: 14px; }
.corporate-values-panel { grid-column: 1 / -1; }
.corporate-values-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 22px; }
.corporate-value-item { height: 100%; display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 13px; align-items: start; padding: 20px; border: 1px solid rgba(13,116,201,.14); border-radius: 10px; background: #fff; }
.corporate-value-item > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; color: var(--blue-700); background: white; border: 1px solid rgba(13,116,201,.14); }
.corporate-value-item svg { width: 17px; height: 17px; }
.corporate-value-item h3 { color: var(--blue-900); font-size: 17px; line-height: 1.25; margin: 1px 0 7px; }
.corporate-value-item p { font-size: 14px; line-height: 1.65; }
.corporate-why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: stretch; }
.corporate-why-card { height: 100%; display: flex; flex-direction: column; padding: 26px; border: 1px solid rgba(217,229,242,.95); border-radius: 12px; background: white; box-shadow: 0 11px 28px rgba(5,55,102,.075); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.corporate-why-card:hover { transform: translateY(-4px); border-color: rgba(13,116,201,.28); box-shadow: 0 20px 42px rgba(5,55,102,.12); }
.corporate-why-card h3 { color: var(--blue-900); font-size: 20px; line-height: 1.2; margin-bottom: 10px; }
.corporate-why-card p { color: #52657c; line-height: 1.65; margin: 0; }
.corporate-approach { max-width: 980px; }
.corporate-approach .section-head { max-width: 100%; }
.corporate-approach-copy { padding: 24px 28px; border: 1px solid rgba(217,229,242,.95); border-left: 3px solid var(--blue-500); border-radius: 10px; background: linear-gradient(180deg, #fff, #f8fbff); box-shadow: 0 9px 26px rgba(5,55,102,.06); color: #334155; font-size: 18px; line-height: 1.8; }
.corporate-approach-copy p { margin: 0; }
.corporate-approach-copy p + p { margin-top: 16px; }
.corporate-partner-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 12px; }
.corporate-partner-card { min-height: 108px; display: grid; place-items: center; padding: 20px; border: 1px solid rgba(217,229,242,.95); border-radius: 12px; background: white; box-shadow: 0 8px 22px rgba(5,55,102,.055); transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.corporate-partner-card:hover { transform: translateY(-3px); border-color: rgba(13,116,201,.3); box-shadow: 0 18px 38px rgba(5,55,102,.11); }
.corporate-partner-card img { max-width: min(160px, 100%); max-height: 58px; object-fit: contain; }
.corporate-partner-card strong { color: var(--blue-900); font-size: 18px; }
.corporate-certificates-section .section-head { margin-bottom: 26px; }
.corporate-certificates-section .certificate-list-grid { align-items: stretch; }
.corporate-certificates-section .certificate-card { box-shadow: 0 10px 28px rgba(5,55,102,.07); }
.page-corporate main > .band { padding: 72px 0; }
.page-corporate main > .band .section-head { margin-bottom: 26px; }
.page-corporate main > .band .section-head h2 { font-size: 36px; }
.corporate-cta-band { padding: 48px 0 56px !important; }
.corporate-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 22px 26px; border-radius: 12px; color: white; background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); box-shadow: 0 16px 36px rgba(5,55,102,.15); }
.corporate-cta span { color: rgba(255,255,255,.72); font-weight: 900; text-transform: uppercase; font-size: 12px; }
.corporate-cta h2 { max-width: 830px; color: white; font-size: clamp(22px, 1.8vw, 24px); line-height: 1.32; margin: 6px 0 0; }
.corporate-cta .btn { flex: 0 0 auto; background: white; color: var(--blue-900); border-color: white; }
.service-tree { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.tree-card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 24px; box-shadow: 0 10px 28px rgba(5,55,102,.07); }
.tree-card h2 { color: var(--blue-900); }
.tree-card ul { padding-left: 20px; margin-bottom: 0; color: #334155; }

.services-page-hero { position: relative; overflow: hidden; padding: 76px 0 60px; background: linear-gradient(110deg, #ffffff 0%, #f5fbff 48%, #e9f5fc 100%); border-bottom: 1px solid var(--line); }
.services-page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 12%, rgba(37,184,232,.12), transparent 34%), linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.36)); pointer-events: none; }
.services-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 520px); gap: 44px; align-items: center; }
.services-hero-copy { max-width: 720px; }
.services-hero-copy .kicker { display: inline-flex; align-items: center; padding: 7px 11px; border: 1px solid rgba(13,116,201,.16); border-radius: 999px; background: rgba(255,255,255,.78); color: var(--blue-700); box-shadow: 0 8px 22px rgba(5,55,102,.06); }
.services-page-hero h1 { color: var(--blue-900); font-size: clamp(38px, 4.4vw, 56px); line-height: 1.05; margin: 18px 0 18px; letter-spacing: 0; }
.services-page-hero p { max-width: 650px; color: #334155; font-size: 18px; margin-bottom: 0; }
.services-hero-media { margin: 0; min-height: 330px; border: 1px solid rgba(217,229,242,.9); border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, #f8fbff 0%, #eaf6fc 100%); box-shadow: 0 24px 60px rgba(5,55,102,.14); display: grid; place-items: center; }
.services-hero-media img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: center; transition: transform .7s ease; }
.services-hero-media:hover img { transform: scale(1.035); }
.services-hero-media svg { width: min(210px, 52%); height: auto; stroke: rgba(6,74,143,.34); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.services-trust { position: relative; z-index: 2; margin-top: -28px; }
.services-trust-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; padding: 14px; border: 1px solid rgba(217,229,242,.9); border-radius: 14px; background: rgba(255,255,255,.96); box-shadow: 0 18px 44px rgba(5,55,102,.1); }
.services-trust-strip article { display: grid; grid-template-columns: 46px 1fr; gap: 12px; align-items: center; min-height: 78px; padding: 12px 14px; border-right: 1px solid rgba(217,229,242,.86); }
.services-trust-strip article:last-child { border-right: 0; }
.services-trust-strip span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-700); background: linear-gradient(180deg, #f8fbff, #edf7ff); border: 1px solid rgba(13,116,201,.12); }
.services-trust-strip svg { width: 23px; height: 23px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.services-trust-strip strong { color: var(--blue-900); font-size: 13px; line-height: 1.35; }
.services-showcase { padding-top: 62px; background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); }
.services-card-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.services-card { position: relative; min-height: 100%; overflow: hidden; border: 1px solid rgba(217,229,242,.95); border-radius: 10px; background: white; box-shadow: 0 12px 34px rgba(5,55,102,.07); transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease; }
.services-card-overlay { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.services-card-media, .services-card-body { position: relative; z-index: 2; pointer-events: none; }
.services-card h2 a, .service-card-link { pointer-events: auto; }
.services-card:hover { transform: translateY(-5px); border-color: rgba(13,116,201,.3); box-shadow: 0 22px 46px rgba(5,55,102,.13); }
.services-card-media { aspect-ratio: 20 / 9; display: grid; place-items: center; margin: 14px 14px 0; border: 1px solid rgba(217,229,242,.78); border-radius: 9px; overflow: hidden; background: linear-gradient(180deg, #f8fbff, #ffffff); }
.services-card-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s ease; }
.services-card:hover .services-card-media img { transform: scale(1.045); }
.services-card-media svg { width: 58px; height: 58px; stroke: var(--blue-700); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; opacity: .72; }
.services-card-body { padding: 18px 18px 20px; display: flex; min-height: 300px; flex-direction: column; }
.services-card-number { color: var(--blue-500); font-weight: 900; font-size: 14px; }
.services-card h2 { color: var(--blue-900); font-size: clamp(18px, 1.45vw, 22px); line-height: 1.18; margin: 4px 0 10px; }
.services-card h2 a { color: inherit; text-decoration: none; }
.services-card h2 a:hover { color: var(--blue-700); }
.services-card p { color: #52657c; margin-bottom: 14px; }
.services-card ul { margin: 0 0 18px; padding-left: 18px; color: #334155; font-size: 14px; }
.services-card li + li { margin-top: 4px; }
.service-card-link { margin-top: auto; color: var(--blue-700); font-weight: 900; text-decoration: none; font-size: 14px; }
.service-card-link:hover { color: var(--cyan); }
.services-cta { margin-top: 28px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; align-items: center; padding: 22px 24px; border-radius: 12px; background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); color: white; box-shadow: 0 18px 42px rgba(5,55,102,.18); }
.services-cta strong, .services-cta span { display: block; }
.services-cta strong { font-size: 18px; line-height: 1.35; }
.services-cta span { color: rgba(255,255,255,.78); margin-top: 4px; }
.services-cta .btn.ghost { background: rgba(255,255,255,.08); color: white; border-color: rgba(255,255,255,.48); white-space: nowrap; }
.service-detail-hero { position: relative; overflow: hidden; padding: 48px 0 56px; background: linear-gradient(110deg, #ffffff 0%, #f4faff 54%, #e8f5fc 100%); border-bottom: 1px solid var(--line); }
.service-detail-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 10%, rgba(37,184,232,.13), transparent 34%), linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.48)); pointer-events: none; }
.service-detail-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 520px); gap: 38px; align-items: center; }
.service-detail-hero-copy h1 { color: var(--blue-900); font-size: clamp(36px, 4vw, 52px); line-height: 1.08; margin: 14px 0 16px; font-weight: 700; letter-spacing: 0; }
.service-detail-hero-copy p { max-width: 680px; color: #334155; font-size: 18px; line-height: 1.65; margin: 0 0 22px; }
.service-detail-media { margin: 0; min-height: 330px; border: 1px solid rgba(217,229,242,.9); border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, #f8fbff 0%, #eaf6fc 100%); box-shadow: 0 24px 60px rgba(5,55,102,.14); display: grid; place-items: center; }
.service-detail-media img { width: 100%; height: 100%; min-height: 330px; object-fit: cover; object-position: center; }
.service-detail-media svg { width: min(210px, 52%); height: auto; stroke: rgba(6,74,143,.34); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.service-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(310px, 380px); gap: 24px; align-items: start; }
.service-detail-main, .service-detail-side article, .service-note { border: 1px solid rgba(217,229,242,.95); border-radius: 10px; background: white; box-shadow: 0 12px 32px rgba(5,55,102,.06); }
.service-detail-main { padding: 30px; }
.section-kicker { display: inline-flex; color: var(--blue-700); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; margin-bottom: 10px; }
.service-detail-main h2, .service-detail-side h2 { color: var(--blue-900); font-weight: 600; line-height: 1.22; margin: 0 0 14px; }
.service-detail-main p, .service-detail-side p { color: #42566d; line-height: 1.72; margin: 0; }
.service-detail-side { display: grid; gap: 16px; }
.service-detail-side article { padding: 24px; }
.service-detail-side ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.service-detail-side li { position: relative; padding-left: 24px; color: #334155; line-height: 1.5; }
.service-detail-side li::before { content: ""; position: absolute; left: 0; top: .55em; width: 9px; height: 9px; border-radius: 50%; background: var(--blue-600); box-shadow: 0 0 0 4px rgba(13,116,201,.1); }
.service-note { margin-top: 22px; padding: 20px; background: linear-gradient(180deg, #f8fbff, #ffffff); }
.service-note strong { display: block; color: var(--blue-900); font-weight: 600; margin-bottom: 8px; }
.service-products-band { padding: 72px 0; background: linear-gradient(180deg, #f8fbff, #eef6fb); }
.service-linked-products .product-card .card-media { aspect-ratio: 16 / 9; height: auto; }
.service-detail-cta { padding: 0 0 76px; background: #eef6fb; }
.service-detail-cta-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 28px 30px; border-radius: 12px; color: white; background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); box-shadow: 0 18px 42px rgba(5,55,102,.18); }
.service-detail-cta span { display: block; color: rgba(255,255,255,.72); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; margin-bottom: 7px; }
.service-detail-cta h2 { margin: 0 0 6px; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.18; font-weight: 700; }
.service-detail-cta p { margin: 0; color: rgba(255,255,255,.78); max-width: 760px; }
.service-detail-hero-cover { min-height: 390px; display: flex; align-items: center; padding: 54px 0 46px; color: white; background: linear-gradient(90deg, rgba(2,23,45,.96) 0%, rgba(2,23,45,.84) 38%, rgba(2,23,45,.22) 72%, rgba(2,23,45,.1) 100%), var(--service-hero-image, linear-gradient(135deg, #06335e, #0d74c9)); background-size: cover; background-position: center; border-bottom: 0; }
.service-detail-hero-cover::before { display: none; }
.service-detail-hero-cover .container { position: relative; z-index: 1; }
.service-detail-hero-cover .service-detail-hero-copy { max-width: 600px; }
.service-detail-hero-cover .breadcrumb { margin: 0 0 16px; color: rgba(255,255,255,.78); }
.service-detail-hero-cover .breadcrumb a { color: white; }
.service-detail-hero-cover .breadcrumb strong { color: rgba(255,255,255,.88); }
.service-detail-hero-cover h1 { color: white; font-size: clamp(40px, 5vw, 64px); line-height: .98; margin: 0 0 18px; font-weight: 700; letter-spacing: 0; }
.service-detail-hero-cover p { max-width: 560px; color: rgba(255,255,255,.86); font-size: 17px; line-height: 1.6; margin-bottom: 22px; }
.service-detail-hero-cover .btn { box-shadow: 0 14px 28px rgba(0,79,155,.24); }
.service-detail-trust { margin-top: 0; background: white; border-bottom: 1px solid rgba(217,229,242,.9); box-shadow: 0 10px 28px rgba(5,55,102,.06); }
.service-detail-trust-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); align-items: stretch; }
.service-detail-trust article { min-height: 92px; display: grid; justify-items: center; align-content: center; gap: 8px; text-align: center; padding: 14px 12px; border-right: 1px solid rgba(217,229,242,.9); }
.service-detail-trust article:last-child { border-right: 0; }
.service-detail-trust span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; background: rgba(13,116,201,.08); color: var(--blue-700); }
.service-detail-trust svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service-detail-trust strong { color: var(--blue-900); font-size: 12px; line-height: 1.28; font-weight: 700; }
.service-detail-reference-layout { padding: 34px 0 26px; background: #f5f9fd; }
.service-detail-shell { display: grid; grid-template-columns: 170px minmax(0, 1fr) 320px; gap: 20px; align-items: start; }
.service-content-nav { position: sticky; top: 98px; display: grid; overflow: hidden; border: 1px solid rgba(217,229,242,.95); border-radius: 8px; background: white; box-shadow: 0 10px 26px rgba(5,55,102,.06); }
.service-content-nav a { display: block; padding: 14px 16px; color: #41566d; text-decoration: none; font-size: 13px; font-weight: 700; border-bottom: 1px solid rgba(217,229,242,.74); }
.service-content-nav a:last-child { border-bottom: 0; }
.service-content-nav a.is-active, .service-content-nav a:hover { background: var(--blue-700); color: white; }
.service-detail-main-column { display: grid; gap: 26px; min-width: 0; }
.service-detail-panel { padding: 26px 28px; border: 1px solid rgba(217,229,242,.95); border-radius: 8px; background: white; box-shadow: 0 10px 28px rgba(5,55,102,.06); }
.service-detail-text-block + .service-detail-text-block { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(217,229,242,.82); }
.service-detail-text-block h2 { margin: 0 0 12px; color: var(--blue-900); font-size: 22px; line-height: 1.25; font-weight: 650; }
.service-detail-text-block p { margin: 0; color: #42566d; line-height: 1.75; font-size: 15px; }
.service-read-more { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; color: var(--blue-700); text-decoration: none; font-weight: 800; }
.service-process-section { scroll-margin-top: 110px; }
.service-process-section h2, .service-products-inline h2, .similar-services-band h2 { margin: 0 0 16px; color: var(--blue-900); font-size: 22px; line-height: 1.25; font-weight: 700; }
.service-process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.service-process-grid article { min-width: 0; border: 1px solid rgba(217,229,242,.95); border-radius: 8px; overflow: hidden; background: white; box-shadow: 0 10px 26px rgba(5,55,102,.06); }
.service-process-grid figure { height: 126px; margin: 0; display: grid; place-items: center; overflow: hidden; background: #eaf3fb; }
.service-process-grid figure img { width: 100%; height: 100%; object-fit: cover; }
.service-process-grid figure svg { width: 42px; height: 42px; color: var(--blue-700); stroke: currentColor; fill: none; stroke-width: 2; }
.service-process-grid article > span { display: inline-grid; place-items: center; width: 34px; height: 34px; margin: -17px 0 8px 16px; position: relative; border-radius: 999px; background: white; color: var(--blue-700); border: 1px solid rgba(13,116,201,.24); font-size: 11px; font-weight: 800; }
.service-process-grid h3 { margin: 0 16px 8px; color: var(--blue-900); font-size: 15px; font-weight: 700; }
.service-process-grid p { margin: 0 16px 18px; color: #52657c; font-size: 13px; line-height: 1.55; }
.service-detail-section-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.service-detail-section-head h2 { margin-bottom: 4px; }
.service-detail-section-head p { margin: 0; color: #64748b; font-size: 13px; font-weight: 600; }
.service-detail-section-head a { color: var(--blue-700); text-decoration: none; font-weight: 800; font-size: 13px; }
.service-products-toggle { display: none; align-items: center; justify-content: center; min-height: 38px; padding: 9px 13px; border: 1px solid rgba(13,116,201,.22); border-radius: 8px; background: #fff; color: var(--blue-700); font-weight: 800; font-size: 13px; cursor: pointer; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.service-products-toggle:hover { background: rgba(13,116,201,.08); border-color: rgba(13,116,201,.36); }
.service-products-toggle .hide-text { display: none; }
.service-products-toggle[aria-expanded="true"] .show-text { display: none; }
.service-products-toggle[aria-expanded="true"] .hide-text { display: inline; }
.service-detail-section-head:has(+ .service-products-accordion.has-desktop-extra) .service-products-toggle { display: inline-flex; }
.service-product-strip { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.service-products-accordion:not(.is-expanded) .service-mini-product.is-hidden-desktop { display: none; }
.service-mini-product { min-width: 0; display: grid; gap: 6px; padding: 12px; border: 1px solid rgba(217,229,242,.95); border-radius: 8px; background: white; color: inherit; text-decoration: none; box-shadow: 0 10px 26px rgba(5,55,102,.06); transition: transform .2s ease, box-shadow .2s ease; }
.service-mini-product:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(5,55,102,.12); }
.service-mini-product figure { height: 96px; margin: 0; display: grid; place-items: center; border-radius: 7px; background: #f8fbff; overflow: hidden; }
.service-mini-product figure img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.service-mini-product figure.is-placeholder { border: 1px dashed rgba(13,116,201,.28); background: linear-gradient(135deg, #f8fbff, #eef6ff); color: #6b86a2; }
.service-mini-product figure.is-placeholder::before { content: 'Ürün görseli'; display: block; padding: 8px; font-size: 11px; font-weight: 700; letter-spacing: .02em; text-align: center; }
.service-mini-product small { color: var(--blue-700); font-size: 11px; font-weight: 800; }
.service-mini-product strong { color: var(--blue-900); font-size: 13px; line-height: 1.25; overflow-wrap: anywhere; }
.service-mini-product span { color: #64748b; font-size: 11px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-local-section, .service-local-faq { padding: 26px 28px; border: 1px solid rgba(217,229,242,.95); border-radius: 8px; background: white; box-shadow: 0 10px 28px rgba(5,55,102,.06); }
.service-local-section > h2, .service-local-faq > h2 { margin: 0 0 14px; color: var(--blue-900); font-size: 24px; line-height: 1.24; font-weight: 700; }
.service-local-intro { color: #42566d; font-size: 15px; line-height: 1.78; }
.service-local-problems-head { margin-top: 24px; padding-top: 22px; border-top: 1px solid rgba(217,229,242,.82); }
.service-local-problems-head h3 { margin: 0 0 14px; color: var(--blue-900); font-size: 18px; line-height: 1.3; }
.service-local-problem-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.service-local-problem-grid article { display: grid; grid-template-columns: 34px minmax(0, 1fr); gap: 12px; align-items: start; padding: 16px; border: 1px solid rgba(217,229,242,.92); border-radius: 8px; background: #f8fbff; }
.service-local-problem-grid article > span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 999px; background: rgba(13,116,201,.1); color: var(--blue-700); }
.service-local-problem-grid svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
.service-local-problem-grid h3 { margin: 0 0 5px; color: var(--blue-900); font-size: 15px; line-height: 1.35; }
.service-local-problem-grid p { margin: 0; color: #52657c; font-size: 13px; line-height: 1.55; }
.service-local-faq-list { display: grid; gap: 10px; }
.service-local-faq details { overflow: hidden; border: 1px solid rgba(217,229,242,.95); border-radius: 8px; background: #f8fbff; }
.service-local-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 16px; color: var(--blue-900); font-weight: 700; line-height: 1.4; cursor: pointer; list-style: none; }
.service-local-faq summary::-webkit-details-marker { display: none; }
.service-local-faq summary span { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 999px; background: rgba(13,116,201,.1); color: var(--blue-700); transition: transform .2s ease; }
.service-local-faq details[open] summary span { transform: rotate(45deg); }
.service-local-faq details p { margin: 0; padding: 0 16px 16px; color: #52657c; font-size: 14px; line-height: 1.65; }
.service-local-hub-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.service-local-hub-links a { min-width: 0; display: grid; grid-template-columns: 36px minmax(0, 1fr) auto; gap: 12px; align-items: center; padding: 15px 16px; border: 1px solid rgba(13,116,201,.18); border-radius: 8px; background: white; color: var(--blue-900); text-decoration: none; font-weight: 700; line-height: 1.4; box-shadow: 0 8px 22px rgba(5,55,102,.05); }
.service-local-hub-links a > svg { width: 36px; height: 36px; padding: 8px; border-radius: 999px; background: rgba(13,116,201,.09); color: var(--blue-700); stroke: currentColor; fill: none; }
.service-local-hub-links a strong { color: var(--blue-700); font-size: 20px; }
.service-local-discovery-cta { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 20px; align-items: center; padding: 24px 26px; border-radius: 8px; color: white; background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); box-shadow: 0 16px 36px rgba(5,55,102,.16); }
.service-local-discovery-cta span { display: block; margin-bottom: 6px; color: rgba(255,255,255,.72); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.service-local-discovery-cta h2 { margin: 0 0 6px; color: white; font-size: 22px; line-height: 1.25; }
.service-local-discovery-cta p { margin: 0; max-width: 680px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.6; }
.service-local-discovery-cta .btn { white-space: nowrap; }
.service-detail-sidebar { position: sticky; top: 98px; display: grid; gap: 16px; }
.service-quick-card, .service-sidebar-cta { border-radius: 8px; box-shadow: 0 12px 30px rgba(5,55,102,.08); }
.service-quick-card { padding: 22px; border: 1px solid rgba(217,229,242,.95); background: white; }
.service-quick-card h2 { margin: 0 0 18px; color: var(--blue-900); font-size: 20px; font-weight: 700; }
.service-quick-card div + div { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(217,229,242,.82); }
.service-quick-card h3 { display: flex; align-items: center; gap: 8px; margin: 0 0 10px; color: var(--blue-900); font-size: 14px; font-weight: 700; }
.service-quick-card h3 svg { width: 18px; height: 18px; color: var(--blue-700); stroke: currentColor; fill: none; stroke-width: 2; }
.service-quick-card ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.service-quick-card li, .service-quick-card p { margin: 0; color: #52657c; font-size: 13px; line-height: 1.5; }
.service-quick-card li { position: relative; padding-left: 18px; }
.service-quick-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; border-radius: 50%; background: var(--blue-600); }
.service-sidebar-cta { padding: 24px; color: white; background: linear-gradient(180deg, #063a70, #03264c); }
.service-sidebar-cta h2 { margin: 0 0 10px; color: white; font-size: 21px; line-height: 1.2; }
.service-sidebar-cta p { margin: 0 0 18px; color: rgba(255,255,255,.82); font-size: 14px; line-height: 1.55; }
.service-sidebar-cta a { display: flex; align-items: center; gap: 10px; min-height: 44px; margin-top: 10px; padding: 11px 13px; border-radius: 7px; background: rgba(255,255,255,.09); color: white; text-decoration: none; font-size: 13px; font-weight: 700; border: 1px solid rgba(255,255,255,.15); }
.service-sidebar-cta a:hover { background: rgba(37,184,232,.22); }
.service-sidebar-cta svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2; }
.similar-services-band { padding: 20px 0 70px; background: #f5f9fd; }
.similar-services-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.similar-services-grid a { min-height: 82px; display: grid; place-items: center; gap: 8px; padding: 12px; text-align: center; color: var(--blue-900); text-decoration: none; border: 1px solid rgba(217,229,242,.95); border-radius: 8px; background: white; box-shadow: 0 10px 24px rgba(5,55,102,.05); font-size: 12px; font-weight: 700; }
.similar-services-grid svg { width: 22px; height: 22px; color: var(--blue-700); stroke: currentColor; fill: none; stroke-width: 2; }
.similar-services-grid a:hover { border-color: rgba(13,116,201,.28); transform: translateY(-2px); }

.page-hero { padding: 76px 0 54px; background: linear-gradient(180deg, #f7fbff 0%, #fff 100%); border-bottom: 1px solid var(--line); }
.page-hero .container { max-width: 880px; }
.products-hero { position: relative; overflow: hidden; padding: 74px 0 54px; background: radial-gradient(circle at 14% 18%, rgba(34,166,219,.14), transparent 30%), linear-gradient(110deg, #f8fbff 0%, #ffffff 48%, #eaf6ff 100%); border-bottom: 1px solid rgba(217,229,242,.9); }
.products-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.94) 0%, rgba(255,255,255,.76) 46%, rgba(255,255,255,.16) 100%); pointer-events: none; }
.products-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1fr); gap: 46px; align-items: center; }
.products-hero-copy .kicker { display: inline-flex; width: fit-content; margin-bottom: 14px; color: var(--blue-700); font-weight: 900; font-size: 13px; letter-spacing: .01em; text-transform: uppercase; }
.products-hero-copy h1 { max-width: 660px; margin: 0; color: var(--blue-900); font-size: clamp(36px, 4.05vw, 52px); line-height: 1.08; letter-spacing: 0; }
.products-hero-copy p { max-width: 620px; margin: 18px 0 0; color: #334155; font-size: 18px; line-height: 1.62; }
.products-hero-advantages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px; }
.products-hero-advantage { display: grid; grid-template-columns: 42px 1fr; gap: 10px; align-items: center; min-height: 76px; padding: 12px; border: 1px solid rgba(217,229,242,.9); border-radius: 12px; background: rgba(255,255,255,.76); box-shadow: 0 14px 34px rgba(5,55,102,.07); }
.products-hero-advantage span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; color: var(--blue-700); background: linear-gradient(180deg, #f8fbff, #eef8ff); border: 1px solid rgba(13,116,201,.13); }
.products-hero-advantage svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.products-hero-advantage strong { display: block; color: var(--blue-900); font-size: 13px; line-height: 1.22; }
.products-hero-advantage small { display: block; margin-top: 3px; color: #64748b; font-size: 11px; line-height: 1.3; }
.products-hero-visual { position: relative; min-height: 420px; display: grid; align-items: end; padding-right: 16px; }
.products-hero-image { height: 420px; margin: 0; border-radius: 18px; overflow: hidden; border: 1px solid rgba(217,229,242,.9); background: linear-gradient(135deg, #eaf6ff 0%, #ffffff 100%); box-shadow: 0 30px 70px rgba(5,55,102,.16); }
.products-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.products-hero-image.is-empty { display: grid; place-items: center; gap: 12px; color: rgba(6,74,143,.55); text-align: center; padding: 28px; }
.products-hero-image.is-empty svg { width: min(260px, 58%); height: auto; stroke: rgba(6,74,143,.35); fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.products-hero-image.is-empty span, .products-group-image.is-empty span { color: var(--blue-700); font-weight: 900; font-size: 13px; }
.products-group-image { position: absolute; right: 16px; bottom: 16px; width: min(34%, 238px); min-height: 118px; margin: 0; display: grid; place-items: center; overflow: hidden; border-radius: 14px; border: 1px solid rgba(255,255,255,.78); background: rgba(255,255,255,.78); box-shadow: 0 18px 44px rgba(5,55,102,.16); backdrop-filter: blur(12px); }
.products-group-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; padding: 10px; display: block; }
.products-filter-band { padding: 22px 0 0; background: white; border-bottom: 1px solid var(--line); }
.products-filter-shell { display: grid; gap: 16px; }
.products-filter-top { display: grid; grid-template-columns: auto minmax(340px, 1fr); gap: 22px; align-items: center; }
.product-filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.product-filter-tabs a { min-height: 48px; display: inline-flex; align-items: center; gap: 10px; padding: 12px 16px; border: 1px solid var(--line); border-radius: 10px; background: white; color: var(--blue-900); font-weight: 900; text-decoration: none; box-shadow: 0 10px 26px rgba(5,55,102,.06); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease; }
.product-filter-tabs a:hover { transform: translateY(-2px); border-color: rgba(13,116,201,.35); box-shadow: 0 16px 34px rgba(5,55,102,.1); }
.product-filter-tabs a.is-active { color: white; background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); border-color: var(--blue-700); }
.product-filter-tabs svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.product-search.products-search { max-width: none; margin-top: 0; }
.product-search.products-search input { min-height: 52px; border: 1px solid rgba(155,181,207,.75); outline: 0; border-radius: 10px; background: white; color: var(--blue-900); box-shadow: 0 10px 28px rgba(5,55,102,.045); transition: border-color .2s ease, box-shadow .2s ease; }
.product-search.products-search input:focus { border-color: rgba(13,116,201,.58); box-shadow: 0 0 0 3px rgba(13,116,201,.11), 0 12px 28px rgba(5,55,102,.07); }
.product-search.products-search .btn { min-height: 52px; border-radius: 10px; }
.brand-filter.products-brand-filter { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 12px; margin-top: 0; padding-bottom: 22px; align-items: stretch; }
.products-brand-filter .brand-filter-item { min-height: 118px; height: 100%; flex-direction: column; justify-content: center; gap: 10px; border-radius: 10px; padding: 12px 10px; text-align: center; }
.products-brand-filter .brand-filter-icon { flex: 0 0 56px; width: 86px; height: 56px; }
.products-brand-filter .brand-filter-icon img { max-width: 76px; max-height: 44px; }
.products-brand-filter .brand-filter-text { justify-items: center; align-content: center; gap: 3px; text-align: center; }
.products-brand-filter .brand-filter-text strong { text-transform: uppercase; font-size: 13px; line-height: 1.12; }
.products-brand-filter .brand-filter-text small { font-size: 12px; line-height: 1.15; }
.products-brand-filter .brand-filter-text em { display: block; color: var(--muted); font-size: 11px; font-style: normal; font-weight: 800; line-height: 1.18; }
.supplemental-filter-icon { color: var(--blue-700); background: #f8fbff; }
.supplemental-filter-icon svg { width: 38px; height: 38px; fill: currentColor; }
.featured-product-categories { padding: 24px 0 0; background: white; }
.featured-product-categories-head span { color: var(--blue-700); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.product-category-chip-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.product-category-chip { display: inline-flex; align-items: center; min-height: 42px; padding: 10px 14px; border: 1px solid rgba(217,229,242,.95); border-radius: 999px; background: #f8fbff; color: var(--blue-900); font-weight: 800; font-size: 13px; }
.product-search { display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 560px; margin-top: 22px; }
.brand-filter { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; margin-top: 22px; }
.brand-filter-item { display: flex; align-items: center; gap: 13px; min-height: 78px; padding: 10px 12px; border: 1px solid var(--line); border-radius: 8px; background: white; text-decoration: none; box-shadow: 0 8px 22px rgba(5,55,102,.06); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.brand-filter-item:hover { transform: translateY(-2px); border-color: rgba(13,116,201,.42); box-shadow: 0 14px 30px rgba(5,55,102,.1); }
.brand-filter-item.is-active { border-color: var(--blue-700); box-shadow: 0 0 0 3px rgba(13,116,201,.12), 0 14px 30px rgba(5,55,102,.1); }
.brand-filter-icon { flex: 0 0 86px; width: 86px; height: 56px; display: grid; place-items: center; border-radius: 8px; background: #f8fbff; color: var(--blue-700); border: 1px solid var(--line); font-size: 13px; font-weight: 900; overflow: hidden; }
.brand-filter-icon img { width: auto; height: auto; max-width: 74px; max-height: 42px; object-fit: contain; object-position: center; padding: 0; margin: auto; }
.brand-filter-all { background: var(--blue-700); color: white !important; border-color: var(--blue-700); }
.reference-hero-container { max-width: 1160px !important; }
.reference-filter { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.reference-filter-item { min-height: 72px; gap: 10px; padding: 9px 10px; border-radius: 10px; }
.reference-filter-item.is-active { background: linear-gradient(135deg, var(--blue-700), var(--blue-900)); border-color: var(--blue-700); box-shadow: 0 16px 34px rgba(5,55,102,.18); }
.reference-filter-item.is-active .brand-filter-text strong, .reference-filter-item.is-active .brand-filter-text small { color: white; }
.reference-filter-item.is-active .reference-filter-icon { background: rgba(255,255,255,.13); border-color: rgba(255,255,255,.28); color: white; }
.reference-filter-item .brand-filter-icon { flex-basis: 68px; width: 68px; height: 52px; }
.reference-filter-item .brand-filter-text strong { display: block; overflow-wrap: anywhere; font-size: 14px; line-height: 1.08; }
.reference-filter-icon { font-size: 24px; line-height: 1; }
.reference-filter-icon svg { width: 27px; height: 27px; fill: currentColor; }
.reference-filter-icon.is-all { color: white; }
.reference-filter-icon.is-hotel { color: #c94f0b; background: #ffedd5; border-color: #fb923c; }
.reference-filter-icon.is-home { color: #087b4a; background: #dcfce7; border-color: #4ade80; }
.reference-filter-icon.is-public { color: #4c1d95; background: #ede9fe; border-color: #8b5cf6; }
.reference-filter-icon.is-commercial { color: #064a8f; background: #dbeafe; border-color: #3b82f6; }
.references-hero { position: relative; overflow: hidden; padding: 76px 0 34px; background: linear-gradient(112deg, #ffffff 0%, #f4faff 52%, #e8f4fc 100%); border-bottom: 1px solid var(--line); }
.references-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.48)); pointer-events: none; }
.references-hero .reference-hero-container { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, .95fr); gap: 24px; align-items: center; }
.references-hero-copy { max-width: 760px; }
.references-hero-copy h1 { margin: 8px 0 14px; color: var(--blue-900); font-size: clamp(36px, 4.1vw, 54px); line-height: 1.06; letter-spacing: 0; }
.references-hero-copy p { max-width: 680px; margin: 0; color: #334155; font-size: 18px; line-height: 1.62; }
.references-hero-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; max-width: 760px; }
.references-hero-stats article { min-height: 142px; display: grid; justify-items: center; align-content: center; padding: 18px; border: 1px solid rgba(217,229,242,.92); border-radius: 10px; background: rgba(255,255,255,.86); box-shadow: 0 14px 34px rgba(5,55,102,.08); text-align: center; }
.reference-stat-icon { width: 44px; height: 44px; display: grid !important; place-items: center; margin-bottom: 12px !important; color: var(--blue-700) !important; }
.reference-stat-icon svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }
.references-hero-stats strong { display: block; color: var(--blue-700); font-size: 32px; line-height: 1; }
.references-hero-stats article > span:not(.reference-stat-icon) { display: block; margin-top: 8px; color: #334155; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.references-hero .reference-filter { grid-column: 1 / -1; margin-top: 14px; }
.references-band { background: linear-gradient(180deg, var(--soft), #ffffff); }
.references-list-head { max-width: 720px; margin-bottom: 24px; }
.references-list-head span { color: var(--blue-500); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.references-list-head h2 { margin: 6px 0 8px; color: var(--blue-900); font-size: 34px; line-height: 1.14; }
.references-list-head p { margin: 0; color: var(--muted); font-weight: 800; }
.reference-project-grid { align-items: stretch; }
.reference-project-card { display: grid; grid-template-rows: auto 1fr; padding: 0; overflow: hidden; min-height: 100%; border-radius: 10px; box-shadow: 0 12px 30px rgba(5,55,102,.08); }
.reference-project-media { margin: 0; border-radius: 0; aspect-ratio: 16 / 9; }
.reference-project-card:hover .reference-project-media img { transform: scale(1.055); }
.reference-project-placeholder { min-height: 172px; display: grid; place-items: center; background: linear-gradient(135deg, #f8fbff, #e9f5fc); border-bottom: 1px solid var(--line); }
.reference-project-placeholder span { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 12px; background: white; color: var(--blue-700); border: 1px solid rgba(13,116,201,.18); box-shadow: 0 10px 24px rgba(5,55,102,.08); font-size: 26px; font-weight: 900; }
.reference-project-body { display: grid; align-content: start; padding: 22px; }
.reference-project-body h2 { font-size: 22px; margin: 8px 0 16px; }
.project-card .reference-category { width: fit-content; min-height: 28px; display: inline-flex; align-items: center; padding: 7px 11px; border-radius: 7px; color: #fff; font-size: 12px; font-weight: 950; line-height: 1; letter-spacing: .02em; text-transform: uppercase; box-shadow: 0 6px 14px rgba(5,55,102,.12); }
.reference-category.is-hotel { background: #e65f14; }
.reference-category.is-home { background: #14965f; }
.reference-category.is-public { background: #5b35a5; }
.reference-category.is-commercial { background: #0d74c9; }
.reference-project-meta { display: grid; gap: 12px; margin: 0; }
.reference-project-meta div { display: grid; gap: 3px; padding-top: 12px; border-top: 1px solid var(--line); }
.reference-project-meta dt { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-700); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.reference-project-meta dt svg { width: 15px; height: 15px; fill: currentColor; }
.reference-project-meta dd { margin: 0; color: #334155; font-weight: 700; line-height: 1.45; }
.reference-project-link { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--blue-700); font-weight: 900; font-size: 14px; text-decoration: none; transition: color .2s ease, gap .2s ease; }
.reference-project-link span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
.reference-project-card:hover .reference-project-link { color: var(--blue-500); }
.reference-project-card:hover .reference-project-link span { transform: translateX(4px); }
.brand-filter-text { min-width: 0; display: grid; gap: 2px; align-content: center; }
.brand-filter-text strong { color: var(--blue-900); line-height: 1.1; }
.brand-filter-text small { color: var(--muted); font-weight: 800; }
.empty-state { border: 1px dashed var(--line); border-radius: 8px; padding: 28px; color: var(--muted); background: #f8fbff; font-weight: 800; }
.library-filter { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)) auto; gap: 10px; margin-top: 22px; }
.library-list { display: grid; gap: 14px; }
.library-item { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.library-item:first-child { border-top: 1px solid var(--line); }
.library-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.library-card { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 24px; box-shadow: 0 10px 28px rgba(5, 55, 102, .07); }
.library-card span, .doc-download span { color: var(--blue-500); font-weight: 900; font-size: 12px; text-transform: uppercase; }
.library-card h2 { color: var(--blue-900); font-size: 22px; line-height: 1.2; }
.library-card p { color: #334155; margin-bottom: 10px; }
.product-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: auto; padding-top: 14px; }
.product-detail-page { background: #f8fbff; padding: 24px 0 86px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 800; margin-bottom: 22px; }
.breadcrumb a { color: var(--blue-700); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb strong { color: var(--blue-900); }
.product-detail-top { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr); gap: 26px; align-items: start; }
.product-gallery-panel, .product-summary-panel, .info-box { background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 10px 28px rgba(5,55,102,.06); }
.product-side-column { display: grid; gap: 14px; }
.product-gallery-panel { padding: 18px; }
.product-gallery-main { position: relative; height: 470px; display: grid; place-items: center; overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 8px; }
.product-gallery-main img { width: auto !important; height: auto !important; max-width: calc(100% - 36px); max-height: calc(100% - 36px); object-fit: contain; object-position: center; padding: 0; cursor: zoom-in; }
.gallery-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--line); background: white; color: var(--blue-700); font-size: 26px; cursor: pointer; box-shadow: 0 8px 18px rgba(5,55,102,.12); z-index: 2; }
.gallery-nav.prev { left: 14px; }
.gallery-nav.next { right: 14px; }
.product-gallery-thumbs { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; margin-top: 10px; }
.gallery-thumb { border: 1px solid var(--line); background: white; border-radius: 6px; padding: 0; height: 74px; overflow: hidden; cursor: pointer; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; background: #f8fbff; }
.gallery-thumb.is-active { border-color: var(--blue-700); box-shadow: 0 0 0 2px rgba(13,116,201,.15); }
.image-lightbox { position: fixed; inset: 0; z-index: 80; display: none; place-items: center; background: rgba(5, 20, 36, .82); padding: 28px; }
.image-lightbox.is-open { display: grid; }
.image-lightbox img { max-width: min(1120px, 94vw); max-height: 88vh; object-fit: contain; background: white; border-radius: 8px; padding: 14px; box-shadow: 0 24px 70px rgba(0,0,0,.34); }
.image-lightbox button { position: fixed; top: 18px; right: 18px; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.38); border-radius: 999px; background: white; color: var(--blue-900); font-size: 28px; line-height: 1; cursor: pointer; }
.product-summary-panel { padding: 26px; }
.product-summary-panel h1 { color: var(--blue-900); font-size: 34px; line-height: 1.12; margin: 8px 0 12px; }
.product-summary-panel p { color: #334155; }
.product-document-actions { display: grid; gap: 10px; margin-top: 22px; }
.product-side-info { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.product-info-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.info-box { padding: 18px; }
.info-box.wide { grid-column: 1 / -1; }
.info-box h2 { color: var(--blue-900); font-size: 15px; letter-spacing: 0; margin-bottom: 12px; }
.info-box p { color: #334155; margin-bottom: 0; }
.doc-panel { background: white; border: 1px solid var(--line); border-radius: 8px; padding: 24px; box-shadow: 0 10px 28px rgba(5,55,102,.07); }
.doc-panel h2 { color: var(--blue-900); }
.doc-download { display: block; text-decoration: none; border: 1px solid var(--line); border-radius: 8px; padding: 14px; margin-top: 10px; transition: transform .2s ease, box-shadow .2s ease; }
.doc-download:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(5,55,102,.1); }
.doc-download strong { display: block; color: var(--blue-900); margin-top: 4px; }
.assistant-band { background: var(--soft); }
label { display: grid; gap: 7px; font-weight: 800; color: var(--blue-900); margin-bottom: 14px; }
input, select, textarea {
  width: 100%;
  border: 1px solid #cfddec;
  border-radius: 6px;
  min-height: 44px;
  padding: 10px 12px;
  font: inherit;
  color: var(--ink);
  background: white;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
input::placeholder, textarea::placeholder { color: #98a2b3; font-weight: 400; }
input:focus, select:focus, textarea:focus { outline: 0; border-color: rgba(13,116,201,.55); box-shadow: 0 0 0 3px rgba(13,116,201,.1); background: #fff; }
textarea { resize: vertical; }
.assistant-result h2 { color: var(--blue-900); }
.assistant-result { transition: opacity .25s ease, transform .25s ease; }
.assistant-result.is-updating { opacity: .35; transform: translateY(8px); }
.assistant-result ul { padding-left: 20px; }
.contact-form { border: 1px solid var(--line); padding: 24px; border-radius: 8px; }
.form-notice { background: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; border-radius: 6px; padding: 12px 14px; font-weight: 800; }
.form-grid.two { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-hero { position: relative; overflow: hidden; min-height: 352px; padding: 58px 0 24px; background: linear-gradient(105deg, #ffffff 0%, #f4faff 44%, #e8f4fc 100%); border-bottom: 1px solid var(--line); }
.contact-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.48) 68%, rgba(255,255,255,.24) 100%); pointer-events: none; }
.contact-hero-media { position: absolute; inset: 0 0 0 42%; background-size: cover; background-position: center; opacity: .92; }
.contact-hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1fr); gap: 24px; align-items: start; }
.contact-hero-copy { max-width: 610px; }
.contact-hero-copy h1 { margin: 8px 0 14px; color: var(--blue-900); font-size: clamp(31px, 3.25vw, 44px); font-weight: 700; line-height: 1.1; letter-spacing: 0; }
.contact-hero-copy p { max-width: 560px; margin: 0; color: #334155; font-size: 16px; font-weight: 400; line-height: 1.65; }
.contact-hero-note { min-height: 176px; display: grid; align-content: center; gap: 12px; padding: 22px; border: 1px solid rgba(217,229,242,.86); border-radius: 12px; background: rgba(255,255,255,.9); box-shadow: 0 18px 44px rgba(5,55,102,.13); }
.contact-hero-note span, .quick-contact-icon, .contact-info-list span, .contact-trust-grid article > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue-700); }
.contact-hero-note svg, .quick-contact-icon svg, .contact-info-list svg, .contact-trust-grid svg, .contact-submit svg, .contact-privacy-note svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-hero-note p { margin: 0; color: #334155; font-weight: 800; }
.contact-hero-note strong { color: var(--blue-700); }
.quick-contact-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 8px; }
.quick-contact-card { min-height: 96px; display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto auto; gap: 3px 12px; align-items: center; padding: 16px 18px; border: 1px solid rgba(217,229,242,.92); border-radius: 10px; background: rgba(255,255,255,.94); box-shadow: 0 10px 24px rgba(5,55,102,.075); text-decoration: none; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.quick-contact-card:hover { transform: translateY(-2px); border-color: rgba(13,116,201,.28); box-shadow: 0 14px 28px rgba(5,55,102,.1); }
.quick-contact-card strong { color: var(--blue-900); font-size: 13px; font-weight: 600; }
.quick-contact-card small { color: #0f2f59; font-weight: 500; line-height: 1.35; }
.quick-contact-card em { grid-column: 2; color: #64748b; font-size: 12px; font-style: normal; font-weight: 400; line-height: 1.35; }
.quick-contact-icon { grid-row: 1 / 4; border-radius: 999px; background: #eef6fb; }
.quick-contact-icon.is-whatsapp { color: #0f9f6e; background: #ecfdf5; }
.quick-contact-icon.is-mail { color: #0d74c9; background: #eff6ff; }
.quick-contact-icon.is-pin { color: #064a8f; background: #f8fbff; }
.contact-main-band { padding: 28px 0 70px; background: linear-gradient(180deg, #f8fbff, #ffffff); }
.contact-page-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 22px; align-items: stretch; }
.contact-info-panel, .contact-page-form { background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 26px rgba(5,55,102,.065); }
.contact-info-panel { padding: 24px; }
.contact-info-panel h2, .contact-page-form h2 { color: var(--blue-900); font-size: 23px; font-weight: 700; line-height: 1.22; margin-bottom: 14px; }
.contact-info-list { display: grid; gap: 10px; margin-bottom: 20px; }
.contact-info-list p { display: grid; grid-template-columns: 30px 1fr; gap: 10px; align-items: start; margin: 0; color: #334155; font-weight: 400; }
.contact-info-list small { color: #64748b; font-size: 12px; font-weight: 400; }
.contact-info-list span { width: 24px; height: 24px; }
.contact-info-list svg { width: 18px; height: 18px; }
.contact-info-list a { color: #334155; text-decoration: none; }
.contact-map { overflow: hidden; min-height: 300px; border-radius: 10px; border: 1px solid var(--line); background: #f8fbff; }
.contact-map > a { display: block; padding: 18px; color: var(--blue-700); font-weight: 700; text-decoration: none; }
.map-consent-placeholder { min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 28px 24px; text-align: center; background: radial-gradient(circle at 50% 0%, #fff 0, #f4f8ff 72%); }
.map-consent-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: #fff; background: var(--blue-700); box-shadow: 0 10px 22px rgba(13, 78, 149, .18); }
.map-consent-icon svg { width: 22px; height: 22px; }
.map-consent-placeholder h3 { margin: 2px 0 0; color: var(--blue-900); font-size: 20px; font-weight: 700; line-height: 1.25; }
.map-consent-placeholder > p { max-width: 560px; margin: 0; color: #526174; font-size: 14px; line-height: 1.6; }
.map-consent-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 16px; margin-top: 4px; }
.map-consent-button { min-height: 44px; border: 0; cursor: pointer; }
.map-consent-button:focus-visible, .map-consent-policy:focus-visible { outline: 3px solid rgba(24, 119, 242, .34); outline-offset: 3px; }
.map-consent-policy { color: var(--blue-700); font-size: 14px; font-weight: 600; text-underline-offset: 3px; }
.map-consent-noscript { margin-top: 4px !important; font-size: 13px !important; }
.map-consent-noscript a { color: var(--blue-700); }
.contact-map-frame { display: block; width: 100%; min-height: 300px; height: 100%; border: 0; }
.contact-page-form header { margin-bottom: 18px; }
.contact-page-form header p { margin: 0; color: var(--muted); font-weight: 400; line-height: 1.55; }
.contact-page-form label { font-weight: 500; }
.contact-page-form input, .contact-page-form select, .contact-page-form textarea { font-weight: 400; }
.contact-submit { width: 100%; gap: 8px; border-radius: 8px; font-weight: 700; }
.contact-submit svg { width: 18px; height: 18px; }
.contact-privacy-note { display: inline-flex; align-items: center; gap: 8px; margin: 12px 0 0; color: #334155; font-size: 13px; font-weight: 400; }
.contact-privacy-note svg { width: 16px; height: 16px; color: var(--blue-700); }
.contact-privacy-note a, .discovery-privacy a { color: var(--blue-700); font-weight: 700; text-underline-offset: 2px; }
.contact-trust-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin-top: 22px; }
.contact-trust-grid article { display: grid; grid-template-columns: 52px 1fr; gap: 12px; align-items: center; min-height: 92px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: white; box-shadow: 0 10px 26px rgba(5,55,102,.07); }
.contact-trust-grid article > span { border-radius: 999px; background: #eef6fb; }
.contact-trust-grid strong { color: var(--blue-900); font-weight: 600; }
.contact-trust-grid p { margin: 4px 0 0; color: #334155; font-size: 13px; font-weight: 400; line-height: 1.45; }
.discovery-hero { position: relative; overflow: hidden; min-height: 360px; padding: 58px 0 24px; background: linear-gradient(105deg, #ffffff 0%, #f5fbff 46%, #e8f4fc 100%); border-bottom: 1px solid var(--line); }
.discovery-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.9) 42%, rgba(255,255,255,.52) 70%, rgba(255,255,255,.22) 100%); pointer-events: none; }
.discovery-hero-media { position: absolute; inset: 0 0 0 42%; background-size: cover; background-position: center; opacity: .92; }
.discovery-hero-inner { position: relative; z-index: 2; display: grid; gap: 28px; }
.discovery-hero-copy { max-width: 640px; }
.discovery-hero-copy h1 { margin: 8px 0 14px; color: var(--blue-900); font-size: clamp(32px, 3.3vw, 46px); font-weight: 700; line-height: 1.1; letter-spacing: 0; }
.discovery-hero-copy p { max-width: 580px; margin: 0; color: #334155; font-size: 16px; font-weight: 400; line-height: 1.65; }
.discovery-advantage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.discovery-advantage-grid article { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; min-height: 86px; padding: 16px 20px; border: 1px solid rgba(217,229,242,.92); border-radius: 10px; background: rgba(255,255,255,.94); box-shadow: 0 10px 24px rgba(5,55,102,.075); }
.discovery-advantage-grid span, .discovery-timeline article > span { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 999px; color: var(--blue-700); background: #eef6fb; }
.discovery-advantage-grid svg, .discovery-timeline svg, .discovery-before-box svg, .discovery-why-box svg, .discovery-note svg, .discovery-submit svg, .discovery-privacy svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.discovery-advantage-grid strong { color: var(--blue-900); font-size: 14px; font-weight: 600; }
.discovery-advantage-grid p { margin: 3px 0 0; color: #334155; font-size: 13px; font-weight: 400; line-height: 1.45; }
.discovery-main-band { padding: 28px 0 70px; background: linear-gradient(180deg, #f8fbff, #ffffff); }
.discovery-layout { display: grid; grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); gap: 22px; align-items: start; }
.discovery-process-panel, .discovery-form-panel { background: white; border: 1px solid var(--line); border-radius: 12px; box-shadow: 0 10px 26px rgba(5,55,102,.065); }
.discovery-process-panel { min-height: 100%; display: flex; flex-direction: column; padding: 24px; }
.discovery-process-panel h2, .discovery-form-panel h2 { color: var(--blue-900); font-size: 23px; font-weight: 700; line-height: 1.22; margin: 0 0 20px; }
.discovery-timeline { position: relative; display: grid; gap: 12px; margin-bottom: 18px; }
.discovery-timeline::before { content: ""; position: absolute; left: 27px; top: 54px; bottom: 54px; width: 1px; background: repeating-linear-gradient(to bottom, rgba(13,116,201,.34), rgba(13,116,201,.34) 6px, transparent 6px, transparent 12px); }
.discovery-timeline article { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 14px; align-items: center; min-height: 92px; padding: 14px 16px 14px 0; border: 1px solid rgba(217,229,242,.9); border-radius: 12px; background: linear-gradient(180deg, #ffffff, #f8fbff); box-shadow: 0 8px 20px rgba(5,55,102,.045); }
.discovery-timeline article > span { position: relative; z-index: 1; width: 54px; height: 54px; margin-left: 0; background: #eef6fb; border: 1px solid rgba(13,116,201,.16); box-shadow: 0 8px 18px rgba(13,116,201,.08); }
.discovery-timeline article > span svg { width: 26px; height: 26px; }
.discovery-timeline strong { color: var(--blue-900); font-size: 14px; font-weight: 600; }
.discovery-timeline p { margin: 5px 0 0; color: #334155; font-size: 13px; font-weight: 400; line-height: 1.55; }
.discovery-before-box { margin: 2px 0 18px; padding: 18px; border: 1px solid rgba(13,116,201,.14); border-radius: 12px; background: linear-gradient(180deg, #ffffff, #f8fbff); box-shadow: 0 8px 18px rgba(5,55,102,.04); }
.discovery-before-box h3 { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 14px; color: var(--blue-900); font-size: 16px; font-weight: 600; }
.discovery-before-box h3 svg { color: var(--blue-700); }
.discovery-before-box > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.discovery-before-box article { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: center; min-height: 72px; padding: 12px; border: 1px solid rgba(217,229,242,.88); border-radius: 10px; background: #fff; }
.discovery-before-box article span { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 9px; color: var(--blue-700); background: #eef6fb; }
.discovery-before-box article svg { width: 18px; height: 18px; }
.discovery-before-box article p { margin: 0; color: #334155; font-size: 12px; font-weight: 400; line-height: 1.45; }
.discovery-why-box { margin-top: auto; padding: 22px; border: 1px solid rgba(13,116,201,.16); border-radius: 12px; background: linear-gradient(180deg, #f8fbff, #ffffff); box-shadow: inset 0 0 0 1px rgba(255,255,255,.65); }
.discovery-why-box h3 { display: inline-flex; align-items: center; gap: 10px; margin: 0 0 16px; color: var(--blue-900); font-size: 16px; font-weight: 650; }
.discovery-why-box h3 svg { color: var(--blue-700); }
.discovery-why-box > div { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.discovery-why-box span { min-height: 48px; display: inline-flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 9px; background: #fff; color: #334155; font-size: 13px; font-weight: 500; line-height: 1.35; border: 1px solid rgba(217,229,242,.86); }
.discovery-why-box span svg { flex: 0 0 17px; width: 17px; height: 17px; color: var(--blue-700); }
.discovery-note { display: flex; align-items: center; gap: 12px; margin: 18px 0 0; padding: 18px; border: 1px solid rgba(13,116,201,.16); border-radius: 12px; background: #f8fbff; color: #334155; font-size: 13px; font-weight: 500; line-height: 1.5; }
.discovery-note svg { flex: 0 0 24px; width: 24px; height: 24px; color: var(--blue-700); }
.discovery-form-panel { padding: 24px; }
.discovery-form-panel label { font-weight: 500; }
.discovery-form-panel label b { color: #d93025; font-weight: 600; }
.discovery-form-panel input, .discovery-form-panel select, .discovery-form-panel textarea { font-weight: 400; }
.discovery-submit { width: 100%; gap: 8px; border-radius: 8px; font-weight: 700; }
.discovery-submit svg { width: 18px; height: 18px; }
.discovery-privacy { display: inline-flex; align-items: center; gap: 8px; margin: 12px 0 0; color: #334155; font-size: 13px; font-weight: 400; }
.discovery-privacy svg { width: 16px; height: 16px; color: var(--blue-700); }
.discovery-privacy > span, .contact-privacy-note > span { min-width: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .62s ease, transform .62s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.045); }
}

@keyframes partnerMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.site-footer { position: relative; background: radial-gradient(circle at 14% 12%, rgba(15,129,215,.26) 0%, transparent 32%), radial-gradient(circle at 88% 6%, rgba(0,166,255,.16) 0%, transparent 30%), linear-gradient(135deg, #02172d 0%, #052949 48%, #011427 100%); color: white; padding: 28px 0 0; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 96px 96px; opacity: .16; }
.footer-main { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .76fr 1.1fr .82fr; gap: 28px; align-items: stretch; padding-bottom: 28px; }
.site-footer .container, .footer-main > *, .footer-legal-links > *, .footer-strip-inner > * { min-width: 0; }
.footer-brand { padding-right: 28px; border-right: 1px solid rgba(255,255,255,.22); }
.footer-logo { width: min(260px, 100%); max-height: 104px; object-fit: contain; object-position: left center; margin-bottom: 12px; filter: drop-shadow(0 12px 22px rgba(0,0,0,.18)); }
.footer-brand p { color: rgba(255,255,255,.86); font-size: 15px; line-height: 1.58; margin: 0; max-width: 410px; }
.footer-brand .footer-slogan { color: rgba(214,238,255,.9); font-size: 16px; font-weight: 500; letter-spacing: .04em; line-height: 1.35; margin: 0 0 11px; max-width: 410px; }
.footer-brand .footer-slogan-line { display: block; }
.footer-brand .footer-slogan-line-primary { font-size: 15px; font-weight: 500; }
.footer-brand .footer-slogan-line-secondary { font-size: 17px; font-weight: 600; }
.footer-trust { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(55,199,255,.38); }
.footer-trust span { display: grid; grid-template-columns: 30px 1fr; align-items: center; column-gap: 8px; margin: 0; min-width: 0; }
.footer-trust svg { grid-row: 1 / 3; width: 26px; height: 26px; color: #25b8e8; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.footer-trust strong { color: #9ed8ff; font-size: 16px; font-weight: 700; line-height: 1.1; margin: 0; }
.footer-trust small { color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.18; }
.footer-col { min-height: 220px; padding-left: 6px; }
.footer-col + .footer-col { border-left: 1px solid rgba(255,255,255,.18); padding-left: 28px; }
.footer-col h3 { position: relative; margin: 0 0 18px; color: white; font-size: 17px; font-weight: 700; text-transform: uppercase; letter-spacing: 0; }
.footer-col h3::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 44px; height: 2px; background: #25b8e8; border-radius: 999px; box-shadow: 0 0 14px rgba(37,184,232,.42); }
.footer-col a, .footer-col span, .footer-col strong { color: rgba(255,255,255,.84); text-decoration: none; font-size: 14px; line-height: 1.42; }
.footer-menu a { position: relative; display: flex; align-items: center; gap: 9px; padding: 3px 6px 3px 0; margin: 2px 0; border-radius: 8px; transition: color .2s ease, transform .2s ease, background .2s ease, padding .2s ease; }
.footer-menu a::before { content: "›"; flex: 0 0 14px; color: #25b8e8; font-size: 21px; font-weight: 800; line-height: 1; transform: translateY(-1px); }
.footer-menu a:hover { color: white; background: rgba(55,199,255,.08); padding-left: 8px; transform: translateX(2px); }
.footer-contact .footer-contact-line { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 10px; color: rgba(255,255,255,.86); transition: color .2s ease; }
.footer-contact .footer-contact-line:hover { color: white; transform: none; }
.footer-contact .footer-contact-line > svg { flex: 0 0 32px; width: 32px; height: 32px; padding: 7px; border: 1px solid rgba(37,184,232,.62); border-radius: 50%; color: #25b8e8; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; background: rgba(37,184,232,.08); }
.footer-contact .footer-contact-line span { margin: 0; color: inherit; font-size: inherit; line-height: 1.42; }
.footer-contact .footer-contact-line span, .footer-copy, .footer-strip small { min-width: 0; overflow-wrap: anywhere; }
.footer-social { display: grid; grid-template-columns: repeat(2, 54px); gap: 10px; }
.footer-social .social-icon { width: 54px; height: 54px; display: inline-grid; place-items: center; border: 1px solid rgba(255,255,255,.26); border-radius: 10px; background: rgba(255,255,255,.055); color: white; text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease; margin: 0; }
.footer-social .social-icon svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.footer-social .social-icon:hover { transform: translateY(-2px); background: rgba(37,184,232,.16); border-color: rgba(37,184,232,.82); box-shadow: 0 14px 28px rgba(0,0,0,.16); }
.footer-link-strip { position: relative; z-index: 1; border-top: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.14); background: rgba(1,17,34,.42); }
.footer-link-strip-inner { min-height: 72px; display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 22px; align-items: center; padding-top: 8px; padding-bottom: 8px; }
.footer-legal-links { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.footer-legal-links a { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 8px 14px; color: rgba(255,255,255,.9); text-decoration: none; text-align: center; font-size: 14px; font-weight: 600; border-right: 1px solid rgba(255,255,255,.17); transition: color .2s ease, background .2s ease; }
.footer-legal-links a:first-child { border-left: 1px solid rgba(255,255,255,.17); }
.footer-legal-links a:hover { color: white; background: rgba(37,184,232,.08); }
.footer-legal-links svg { flex: 0 0 22px; width: 22px; height: 22px; color: #b7d8f5; stroke: currentColor; fill: none; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.footer-strip { position: relative; z-index: 1; background: rgba(0,12,25,.34); }
.footer-strip-inner { min-height: 64px; display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 20px; align-items: center; color: rgba(255,255,255,.78); font-size: 13px; }
.footer-copy { white-space: normal; }
.footer-strip small { color: rgba(255,255,255,.74); text-align: left; font-size: 12px; line-height: 1.35; }
.footer-strip small span { color: #25b8e8; font-size: 14px; }
.footer-personnel-link { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,.68); text-decoration: none; font-size: 12px; font-weight: 700; white-space: nowrap; transition: color .2s ease, opacity .2s ease; }
.footer-personnel-link svg { width: 15px; height: 15px; color: #9bb7d3; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-personnel-link:hover { color: rgba(255,255,255,.92); }
.footer-wa-button { justify-self: end; display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: white; border-radius: 999px; padding: 8px 14px; background: #18a93d; box-shadow: 0 14px 28px rgba(23,168,58,.24); white-space: nowrap; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.footer-wa-button:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(23,168,58,.32); }
.footer-wa-button svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-wa-button span { font-weight: 700; font-size: 14px; margin: 0; color: white; }
.footer-wa-button strong { font-size: 13px; font-weight: 500; padding-left: 10px; border-left: 1px solid rgba(255,255,255,.34); margin: 0; color: white; }
.back-to-top { position: fixed; right: 24px; bottom: 82px; z-index: 75; width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.28); border-radius: 999px; background: linear-gradient(135deg, var(--blue-700), #053766); color: white; box-shadow: 0 16px 34px rgba(5,55,102,.28); cursor: pointer; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(12px); transition: opacity .22s ease, transform .22s ease, visibility .22s ease, box-shadow .22s ease; }
.back-to-top.is-visible { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { box-shadow: 0 18px 40px rgba(5,55,102,.36); transform: translateY(-2px); }
.back-to-top svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.map-box iframe { width: 100%; min-height: 260px; border: 0; border-radius: 8px; }
.narrow-content { max-width: 780px; }
.legal-hero p { max-width: 820px; margin: 18px 0 0; color: rgba(255,255,255,.86); font-size: 17px; line-height: 1.7; }
.legal-band { background: linear-gradient(180deg, #f5f9fd 0%, #fff 100%); }
.legal-content { max-width: 980px; padding: 40px 44px; border: 1px solid var(--line); border-radius: 14px; background: #fff; box-shadow: 0 20px 55px rgba(5,55,102,.08); color: var(--text); }
.legal-content .legal-updated { margin: 0 0 28px; padding: 10px 14px; border-left: 3px solid var(--blue-500); background: #f3f8fd; color: var(--muted); font-size: 13px; }
.legal-content h2 { margin: 34px 0 12px; color: var(--blue-900); font-size: 24px; line-height: 1.3; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { margin: 24px 0 10px; color: var(--blue-800); font-size: 18px; line-height: 1.4; }
.legal-content p, .legal-content li { color: #33485d; font-size: 15px; line-height: 1.78; }
.legal-content p { margin: 0 0 16px; }
.legal-content ul { margin: 8px 0 20px; padding-left: 22px; }
.legal-content li + li { margin-top: 8px; }
.legal-table-wrap { width: 100%; margin: 18px 0 28px; overflow-x: auto; border: 1px solid var(--line); border-radius: 10px; }
.legal-table-wrap table { width: 100%; min-width: 720px; border-collapse: collapse; background: #fff; }
.legal-table-wrap th, .legal-table-wrap td { padding: 13px 14px; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); text-align: left; vertical-align: top; color: #33485d; font-size: 13px; line-height: 1.55; }
.legal-table-wrap th { background: #edf5fc; color: var(--blue-900); font-weight: 700; }
.legal-table-wrap th:last-child, .legal-table-wrap td:last-child { border-right: 0; }
.legal-table-wrap tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav { position: absolute; left: 20px; right: 20px; top: 92px; display: none; flex-direction: column; align-items: stretch; background: white; border: 1px solid var(--line); border-radius: 8px; padding: 10px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .nav-item { display: grid; align-items: stretch; }
  .nav-item.has-dropdown::after { display: none; }
  .site-nav > .nav-link, .nav-trigger { width: 100%; justify-content: space-between; min-height: 42px; text-align: left; }
  .site-nav > .nav-link::after, .nav-trigger::after { display: none; }
  .mega-menu, .mega-menu-wide, .mega-menu-compact, .mega-menu-contact, .language-menu { position: static; width: 100%; display: none; grid-template-columns: 1fr; gap: 12px; margin: 4px 0 8px; padding: 12px; border-radius: 8px; box-shadow: none; opacity: 1; visibility: visible; transform: none; pointer-events: auto; background: #f8fbff; }
  .nav-item:hover > .mega-menu, .nav-item:focus-within > .mega-menu { display: none; transform: none; }
  .nav-item.is-open > .mega-menu { display: grid; transform: none; }
  .mega-column + .mega-column { padding-left: 0; padding-top: 10px; border-left: 0; border-top: 1px solid rgba(217,229,242,.9); }
  .language-select { margin-left: 0; padding-left: 0; border-left: 0; border-top: 1px solid rgba(217,229,242,.9); padding-top: 8px; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 64px 0 84px; }
  .hero h1 { font-size: 42px; }
  .hero-panel { max-width: 320px; }
  .home-search-band { margin-top: -34px; }
  .home-search-shell { grid-template-columns: 1fr; gap: 14px; }
  .home-search-form { grid-template-columns: minmax(0, 1fr) 190px 112px; }
  .home-quick-links { border-left: 0; border-top: 1px solid rgba(217,229,242,.86); padding-top: 10px; }
  .home-partners-shell { grid-template-columns: auto minmax(0, 1fr); }
  .home-partners-link { grid-column: 1 / -1; justify-self: start; }
  .products-hero { padding: 58px 0 42px; }
  .products-hero::before { background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.64)); }
  .products-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .products-hero-copy h1 { font-size: 41px; }
  .products-hero-advantages { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .products-hero-visual { min-height: auto; padding-right: 0; }
  .products-hero-image { height: 340px; border-radius: 14px; }
  .products-filter-top { grid-template-columns: 1fr; }
  .brand-filter.products-brand-filter { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; padding-bottom: 18px; scroll-snap-type: none; }
  .products-brand-filter .brand-filter-item { min-width: 0; scroll-snap-align: none; }
  .references-hero { padding: 60px 0 30px; }
  .references-hero .reference-hero-container { grid-template-columns: 1fr; align-items: start; }
  .references-hero-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: none; }
  .reference-filter { display: flex; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x proximity; }
  .reference-filter .reference-filter-item { min-width: 178px; scroll-snap-align: start; }
  .service-grid, .product-grid, .project-grid, .cert-grid, .split-grid, .assistant-layout, .contact-grid, .footer-grid, .service-tree, .library-card-grid, .product-detail, .product-detail-top, .product-info-grid, .product-side-info { grid-template-columns: 1fr; }
  .services-hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-page-hero { padding: 60px 0 54px; }
  .services-hero-media, .services-hero-media img { min-height: 280px; }
  .services-trust { margin-top: 0; }
  .services-trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .services-trust-strip article { border: 1px solid rgba(217,229,242,.86); border-radius: 10px; }
  .services-trust-strip article:last-child { border-right: 1px solid rgba(217,229,242,.86); }
  .services-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-card-body { min-height: 260px; }
  .services-cta { grid-template-columns: 1fr; }
  .service-detail-hero-grid, .service-detail-layout, .service-detail-cta-inner { grid-template-columns: 1fr; }
  .service-detail-media, .service-detail-media img { min-height: 280px; }
  .service-detail-cta-inner .btn { justify-self: start; }
  .service-detail-hero-cover { min-height: 340px; }
  .service-detail-trust-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-detail-shell { grid-template-columns: 1fr; }
  .service-content-nav, .service-detail-sidebar { position: static; }
  .service-content-nav { display: flex; overflow-x: auto; }
  .service-content-nav a { white-space: nowrap; border-bottom: 0; border-right: 1px solid rgba(217,229,242,.74); }
  .service-process-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-product-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .similar-services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .certificate-mini-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .certificate-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-hero { padding: 54px 0 28px; }
  .contact-hero-media { inset: 0; opacity: .2; }
  .contact-hero-inner, .contact-page-grid { grid-template-columns: 1fr; }
  .contact-hero-note { max-width: 420px; min-height: auto; }
  .quick-contact-grid, .contact-trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discovery-hero { padding: 54px 0 28px; }
  .discovery-hero-media { inset: 0; opacity: .22; }
  .discovery-layout { grid-template-columns: 1fr; }
  .discovery-advantage-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .corporate-hero-grid, .corporate-split { grid-template-columns: 1fr; }
  .corporate-hero { padding: 60px 0 54px; }
  .corporate-hero-media, .corporate-hero-media > img, .corporate-hero-placeholder { min-height: 280px; }
  .corporate-timeline, .corporate-why-grid, .corporate-values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline-item { flex-basis: calc((100% - 18px) / 2); }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .page-corporate main > .band { padding: 62px 0; }
  .page-corporate main > .band .section-head h2 { font-size: 34px; }
  .corporate-cta { align-items: flex-start; flex-direction: column; gap: 18px; padding: 20px 22px; }
  .corporate-cta h2 { font-size: 21px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { border-right: 0; padding-right: 0; }
  .footer-col + .footer-col { padding-left: 20px; }
  .footer-link-strip-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 14px; padding-top: 12px; padding-bottom: 12px; }
  .footer-legal-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-legal-links a { justify-content: flex-start; text-align: left; border: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .footer-legal-links a:first-child { border-left: 0; }
  .footer-strip-inner { grid-template-columns: minmax(0, 1fr) auto; gap: 10px 18px; padding: 14px 0; }
  .footer-copy { grid-column: 1 / -1; }
  .footer-strip small { text-align: left; }
  .footer-link-strip .footer-wa-button { justify-self: end; }
  .library-filter { grid-template-columns: 1fr 1fr; }
  .product-gallery-main { height: 360px; }
}

@media (min-width: 641px) and (max-width: 920px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .product-card .card-media { height: 240px; }
  .certificate-list-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 921px) and (max-width: 1080px) {
  .home-search-shell { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .home-quick-links { border-left: 0; border-top: 1px solid rgba(217,229,242,.86); padding-top: 10px; }
  .brand-filter.products-brand-filter { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .services-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .certificate-list-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .timeline-item { flex-basis: calc((100% - 36px) / 3); }
}

@media (max-width: 640px) {
  .mega-services-links { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; }
  .timeline-item { flex-basis: 100%; }
  .page-corporate main > .band { padding: 54px 0; }
  .page-corporate main > .band .section-head { margin-bottom: 22px; }
  .page-corporate main > .band .section-head h2 { font-size: 30px; }
  .corporate-lead, .corporate-approach-copy { font-size: 17px; }
  .corporate-cta h2 { font-size: 19px; line-height: 1.32; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1160px); }
  .hero h1 { font-size: 34px; }
  .language-trigger { justify-content: flex-start; gap: 7px; }
  .home-search-band { margin-top: -24px; padding-bottom: 14px; }
  .home-search-shell { padding: 14px; border-radius: 10px; }
  .home-search-form { grid-template-columns: 1fr; }
  .home-search-input, .home-search-form select, .home-search-submit { height: 48px; min-height: 48px; }
  .home-quick-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; overflow: visible; padding: 10px 2px 2px; scroll-snap-type: none; }
  .home-quick-links a { min-width: 0; border: 1px solid rgba(217,229,242,.86); border-radius: 8px; scroll-snap-align: none; }
  .home-partners-shell { grid-template-columns: 1fr; gap: 12px; }
  .home-partners-label { white-space: normal; }
  .home-partners-link { justify-self: stretch; justify-content: center; }
  .products-hero { padding: 44px 0 34px; }
  .products-hero-copy h1 { font-size: 34px; }
  .products-hero-copy p { font-size: 16px; }
  .products-hero-advantages { grid-template-columns: 1fr; }
  .products-hero-advantage { min-height: 66px; }
  .products-hero-image { height: 260px; }
  .products-group-image { position: absolute; right: 10px; bottom: 10px; width: min(52%, 170px); min-height: 82px; margin: 0; border-radius: 12px; }
  .products-group-image img { padding: 8px; }
  .form-grid.two, .quick-contact-grid, .contact-trust-grid { grid-template-columns: 1fr; }
  .discovery-advantage-grid, .discovery-before-box > div, .discovery-why-box > div { grid-template-columns: 1fr; }
  .discovery-hero-copy h1 { font-size: 31px; }
  .discovery-hero-copy p { font-size: 16px; }
  .discovery-process-panel, .discovery-form-panel { padding: 20px; }
  .discovery-timeline article { grid-template-columns: 58px 1fr; padding-right: 12px; }
  .discovery-timeline article > span { width: 50px; height: 50px; }
  .contact-hero-copy h1 { font-size: 31px; }
  .contact-hero-copy p { font-size: 16px; }
  .quick-contact-card { min-height: 82px; }
  .contact-info-panel, .contact-page-form { padding: 20px; }
  .references-hero-copy h1 { font-size: 34px; }
  .references-hero-copy p { font-size: 16px; }
  .references-hero-stats { grid-template-columns: 1fr; }
  .references-hero-stats article { min-height: 76px; padding: 16px; }
  .references-list-head h2 { font-size: 28px; }
  .reference-project-body { padding: 20px; }
  .reference-project-placeholder { min-height: 150px; }
  .product-filter-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .product-filter-tabs a { white-space: nowrap; }
  .product-search.products-search { grid-template-columns: 1fr; }
  .product-search.products-search .btn { width: 100%; }
  .product-category-chip-grid { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 8px; }
  .product-category-chip { white-space: nowrap; }
  .header-inner { min-height: 68px; }
  .brand-logo { max-height: 52px; max-width: 230px; }
  .brand-mark { width: 44px; height: 44px; }
  .site-nav { top: 68px; }
  .partner-logo { min-width: 138px; height: 62px; }
  .partner-logo img { max-height: 44px; max-width: 126px; }
  .product-card .card-media { height: 230px; }
  .product-gallery-main { height: 300px; }
  .product-gallery-thumbs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .product-summary-panel h1 { font-size: 28px; }
  .section-head h2, .page-hero h1 { font-size: 30px; }
  .services-page-hero h1 { font-size: 34px; }
  .services-trust-strip, .services-card-grid { grid-template-columns: 1fr; }
  .services-trust-strip { padding: 10px; }
  .services-trust-strip article { min-height: 66px; }
  .services-card-body { min-height: auto; }
  .services-cta { padding: 18px; }
  .services-cta .btn { width: 100%; }
  .service-detail-hero { padding: 36px 0 42px; }
  .service-detail-hero-copy h1 { font-size: 32px; }
  .service-detail-main, .service-detail-side article { padding: 20px; }
  .service-detail-media, .service-detail-media img { min-height: 230px; }
  .service-detail-cta { padding-bottom: 48px; }
  .service-detail-cta-inner { padding: 22px; }
  .service-detail-cta-inner .btn { width: 100%; }
  .service-detail-hero-cover { min-height: 310px; padding: 34px 0; background-position: center; }
  .service-detail-hero-cover h1 { font-size: 34px; }
  .service-detail-hero-cover p { font-size: 15px; }
  .service-detail-trust-grid { grid-template-columns: 1fr; }
  .service-detail-trust article { min-height: 66px; grid-template-columns: 34px 1fr; justify-items: start; text-align: left; border-right: 0; border-bottom: 1px solid rgba(217,229,242,.9); }
  .service-detail-reference-layout { padding-top: 22px; }
  .service-detail-panel { padding: 20px; }
  .service-detail-text-block h2, .service-process-section h2, .service-products-inline h2, .similar-services-band h2 { font-size: 20px; }
  .service-process-grid, .service-product-strip, .similar-services-grid { grid-template-columns: 1fr; }
  .service-detail-section-head { align-items: flex-start; flex-direction: column; }
  .service-detail-section-head:has(+ .service-products-accordion.has-mobile-extra) .service-products-toggle { display: inline-flex; }
  .service-products-accordion:not(.is-expanded) .service-mini-product.is-hidden-mobile { display: none; }
  .service-products-toggle { width: 100%; }
  .service-sidebar-cta a { min-height: 42px; }
  .service-local-section, .service-local-faq { padding: 20px; }
  .service-local-section > h2, .service-local-faq > h2 { font-size: 20px; }
  .service-local-problem-grid, .service-local-hub-links, .service-local-discovery-cta { grid-template-columns: 1fr; }
  .service-local-discovery-cta { padding: 22px; }
  .service-local-discovery-cta .btn { width: 100%; }
  .certificate-mini-grid, .certificate-list-grid { grid-template-columns: 1fr; }
  .certificate-card { grid-template-rows: 190px 1fr; }
  .certificate-mini-card { grid-template-columns: 66px 1fr; }
  .certificate-mini-preview { width: 66px; height: 66px; }
  .corporate-hero-copy h1 { font-size: 36px; }
  .corporate-anchor-nav { gap: 7px; }
  .corporate-anchor-nav a { width: 100%; text-align: center; border-radius: 8px; }
  .corporate-hero-media, .corporate-hero-media > img, .corporate-hero-placeholder { min-height: 230px; }
  .corporate-timeline, .vision-mission-grid, .corporate-why-grid, .corporate-values-grid, .corporate-partner-grid { grid-template-columns: 1fr; }
  .corporate-panel, .corporate-why-card, .timeline-item { padding: 20px; }
  .corporate-value-item, .corporate-approach-copy { padding: 18px; }
  .corporate-cta { padding: 18px; }
  .corporate-cta .btn { width: 100%; }
  .hero-actions, .library-item { flex-direction: column; align-items: stretch; }
  .product-search, .library-filter { grid-template-columns: 1fr; }
  .brand-filter { display: flex; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x proximity; }
  .brand-filter-item { min-width: 220px; scroll-snap-align: start; }
  .brand-filter.products-brand-filter { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; padding-bottom: 18px; scroll-snap-type: none; }
  .products-brand-filter .brand-filter-item { min-width: 0; scroll-snap-align: none; }
  .btn { width: 100%; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-col, .footer-col + .footer-col { border-left: 0; padding-left: 0; min-height: auto; }
  .footer-logo { width: min(200px, 100%); }
  .footer-trust { grid-template-columns: 1fr; gap: 10px; }
  .footer-social { grid-template-columns: repeat(3, 48px); gap: 8px; }
  .footer-social .social-icon { width: 48px; height: 48px; }
  .footer-social .social-icon svg { width: 22px; height: 22px; }
  .footer-link-strip-inner { grid-template-columns: 1fr; gap: 12px; }
  .footer-legal-links { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-legal-links a { min-height: 46px; gap: 6px; padding: 8px 6px; font-size: 13px; }
  .footer-legal-links a span { min-width: 0; overflow-wrap: anywhere; }
  .footer-legal-links svg { flex-basis: 20px; width: 20px; height: 20px; }
  .footer-link-strip .footer-wa-button { justify-self: start; }
  .footer-strip-inner { grid-template-columns: 1fr; }
  .footer-copy { grid-column: auto; }
  .legal-content { padding: 26px 20px; border-radius: 10px; }
  .legal-content h2 { font-size: 21px; }
  .legal-hero p { font-size: 15px; }
  .footer-wa-button { max-width: 100%; padding: 9px 12px; gap: 8px; }
  .footer-wa-button strong { font-size: 12px; padding-left: 8px; }
  .back-to-top { right: 16px; bottom: 72px; width: 44px; height: 44px; }
}

@media (max-width: 920px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 30px; padding: 70px 0 78px; }
  .home-hero .hero-media { background-size: min(760px, 92vw) auto; background-position: 50% 58%; }
  .home-hero-panel { max-width: 520px; }
  .home-partners-shell { grid-template-columns: 1fr; gap: 12px; }
  .home-partners-label { text-align: center; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-products .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-reference-row { overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x proximity; }
  .home-reference-row.is-carousel .home-reference-track { animation: none; }
  .home-reference-row.is-static .home-reference-track { display: flex; width: max-content; }
  .home-reference-row .home-project-card { flex: 0 0 min(82vw, 330px); scroll-snap-align: start; }
  .home-project-media, .home-project-fallback { min-height: 0; }
}

@media (max-width: 640px) {
  .home-hero { min-height: auto; }
  .home-hero-grid { padding: 54px 0 64px; }
  .home-hero .hero-media { background-size: min(520px, 112vw) auto; background-position: 50% 63%; }
  .home-hero .kicker { font-size: 11px; }
  .home-stat-item { grid-template-columns: 42px 1fr; padding: 12px 10px; }
  .home-stat-icon { width: 42px; height: 42px; }
  .home-partner-marquee .partner-track { gap: 28px; animation-duration: 48s; }
  .home-partner-logo { min-width: 128px; height: 52px; }
  .home-partner-logo img { max-width: 118px; max-height: 38px; }
  .why-grid, .home-products .product-grid { grid-template-columns: 1fr; }
  .home-project-media, .home-project-fallback { min-height: 190px; }
  .home-service-card, .why-card { min-height: auto; }
}

@media (max-width: 319px) {
  .brand-filter.products-brand-filter { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-media { animation: none; }
}

/* Marka–entity sektörel geçmiş sayfası */
.home-history-link { border-top: 1px solid rgba(13,116,201,.1); border-bottom: 1px solid rgba(13,116,201,.1); background: linear-gradient(90deg, #f8fbff, #eef8ff, #f8fbff); }
.home-history-link .container { min-height: 64px; display: flex; align-items: center; justify-content: center; gap: 16px; padding-top: 12px; padding-bottom: 12px; text-align: center; }
.home-history-link .container > span { color: var(--blue-700); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.home-history-link a, .corporate-history-link a { color: var(--blue-900); font-weight: 800; text-decoration: none; }
.home-history-link a:hover, .corporate-history-link a:hover { color: var(--blue-500); }
.corporate-history-link { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 28px; margin: 30px 0 0; padding: 24px 26px; border: 1px solid rgba(13,116,201,.15); border-radius: 14px; background: #fff; box-shadow: 0 10px 28px rgba(5,55,102,.065); text-align: left; }
.corporate-history-link h3 { margin: 0 0 6px; color: var(--blue-900); font-size: 22px; line-height: 1.25; }
.corporate-history-link p { margin: 0; color: #52657c; line-height: 1.65; }
.corporate-history-link a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 16px; border: 1px solid rgba(13,116,201,.18); border-radius: 999px; background: #f7fbff; white-space: nowrap; }

.brand-history-hero { position: relative; overflow: hidden; padding: 82px 0 74px; border-bottom: 1px solid var(--line); background: linear-gradient(118deg, #fff 0%, #f7fbff 54%, #eaf6fc 100%); }
.brand-history-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 14% 12%, rgba(37,184,232,.15), transparent 34%), radial-gradient(circle at 92% 82%, rgba(13,116,201,.08), transparent 28%); }
.brand-history-hero-inner { position: relative; z-index: 1; max-width: 980px; }
.brand-history-hero h1 { max-width: 900px; margin: 18px 0 24px; color: var(--blue-900); font-size: clamp(42px, 5.4vw, 66px); font-weight: 700; line-height: 1.04; overflow-wrap: anywhere; }
.brand-history-intro, .brand-history-prose { color: #334155; font-size: 18px; line-height: 1.82; overflow-wrap: anywhere; }
.brand-history-intro { max-width: 920px; }
.brand-history-intro p, .brand-history-prose p { margin: 0; }
.brand-history-intro p + p, .brand-history-prose p + p { margin-top: 16px; }
.brand-history-context { max-width: 920px; margin: 28px 0 0; padding: 18px 20px; border-left: 3px solid var(--blue-500); border-radius: 0 10px 10px 0; background: rgba(255,255,255,.82); color: var(--blue-900); font-size: 17px; font-weight: 600; line-height: 1.7; box-shadow: 0 10px 28px rgba(5,55,102,.06); }
.brand-history-narrow { max-width: 980px; min-width: 0; }
.brand-history-section { padding: 72px 0; }
.brand-history-section h2 { margin: 0 0 20px; color: var(--blue-900); font-size: clamp(30px, 3.2vw, 40px); font-weight: 700; line-height: 1.14; overflow-wrap: anywhere; }
.brand-history-section-label { display: inline-flex; margin-bottom: 12px; color: var(--blue-600); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.brand-history-distinction { padding: 32px 34px; border: 1px solid rgba(13,116,201,.17); border-left: 4px solid var(--blue-600); border-radius: 14px; background: linear-gradient(180deg, #fff, #f9fcff); box-shadow: 0 18px 44px rgba(5,55,102,.09); }
.brand-history-copy-block { max-width: 920px; }
.brand-history-related { margin-top: 34px; padding-top: 28px; border-top: 1px solid rgba(13,116,201,.15); }
.brand-history-related h2 { margin-bottom: 16px; font-size: 22px; }
.brand-history-related > div { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-history-related a { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; border: 1px solid rgba(13,116,201,.16); border-radius: 999px; background: #fff; color: var(--blue-800); font-weight: 800; text-decoration: none; transition: transform .2s ease, border-color .2s ease, color .2s ease; }
.brand-history-related a:hover { transform: translateY(-2px); border-color: rgba(13,116,201,.34); color: var(--blue-500); }
.brand-history-faq-section .section-head, .brand-history-sources-section .section-head { margin-bottom: 26px; }
.brand-history-faq-list { display: grid; gap: 14px; }
.brand-history-faq-list article { padding: 24px 26px; border: 1px solid rgba(217,229,242,.95); border-radius: 12px; background: #fff; box-shadow: 0 9px 26px rgba(5,55,102,.06); }
.brand-history-faq-list h3 { margin: 0 0 9px; color: var(--blue-900); font-size: 20px; line-height: 1.3; overflow-wrap: anywhere; }
.brand-history-faq-list p { margin: 0; color: #52657c; font-size: 16px; line-height: 1.72; overflow-wrap: anywhere; }
.brand-history-source-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; align-items: stretch; }
.brand-history-source-grid article { min-width: 0; display: flex; flex-direction: column; padding: 24px; border: 1px solid rgba(217,229,242,.95); border-radius: 12px; background: #fff; box-shadow: 0 10px 28px rgba(5,55,102,.065); }
.brand-history-source-grid article > span { color: var(--blue-600); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.brand-history-source-grid h3 { margin: 10px 0; color: var(--blue-900); font-size: 20px; line-height: 1.3; overflow-wrap: anywhere; }
.brand-history-source-grid p { flex: 1 1 auto; margin: 0 0 18px; color: #52657c; line-height: 1.68; overflow-wrap: anywhere; }
.brand-history-source-grid a { color: var(--blue-700); font-weight: 800; text-decoration: none; overflow-wrap: anywhere; }
.brand-history-source-grid a:hover { color: var(--blue-500); }
.brand-history-source-links { display: flex; flex-wrap: wrap; align-items: center; gap: 9px 14px; }
.brand-history-cta-band { padding: 48px 0 62px; }
.brand-history-cta { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px 30px; border-radius: 14px; background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); color: #fff; box-shadow: 0 18px 42px rgba(5,55,102,.16); }
.brand-history-cta > div { min-width: 0; }
.brand-history-cta > div > span { color: rgba(255,255,255,.72); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.brand-history-cta h2 { max-width: 650px; margin: 7px 0 8px; color: #fff; font-size: clamp(24px, 2.5vw, 32px); line-height: 1.22; overflow-wrap: anywhere; }
.brand-history-cta p { max-width: 650px; margin: 0; color: rgba(255,255,255,.82); line-height: 1.65; }
.brand-history-cta-actions { flex: 0 0 auto; display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.brand-history-cta .btn { min-width: 160px; }
.brand-history-cta .btn.primary { border-color: #fff; background: #fff; color: var(--blue-900); }
.brand-history-cta .btn.ghost { border-color: rgba(255,255,255,.58); color: #fff; }

.page-brand-history { overflow-x: clip; }
.brand-history-archive-section { scroll-margin-top: 104px; padding: 80px 0; border-top: 1px solid rgba(133,99,45,.12); border-bottom: 1px solid rgba(133,99,45,.12); background: #fbfaf6; }
.brand-history-archive-head { max-width: 880px; margin: 0 0 36px; }
.brand-history-archive-head h2 { margin: 10px 0 16px; color: var(--blue-900); font-size: clamp(34px, 4vw, 48px); font-weight: 700; line-height: 1.1; overflow-wrap: anywhere; }
.brand-history-archive-intro { color: #52657c; font-size: 17px; line-height: 1.76; }
.brand-history-archive-intro p { margin: 0; }
.brand-history-archive-intro p + p { margin-top: 12px; }
.brand-history-archive-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
.brand-history-era-intro { grid-column: 1 / -1; max-width: 900px; margin: 12px 0 2px; padding-top: 24px; border-top: 1px solid rgba(133,99,45,.18); }
.brand-history-era-intro:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.brand-history-era-intro > span { display: inline-flex; margin-bottom: 8px; color: #87642f; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.brand-history-era-intro h3 { margin: 0 0 10px; color: var(--blue-900); font-size: clamp(25px, 3vw, 34px); line-height: 1.18; }
.brand-history-era-intro p { margin: 0; color: #52657c; font-size: 16px; line-height: 1.72; }
.brand-history-archive-card { grid-column: span 3; min-width: 0; display: flex; flex-direction: column; overflow: hidden; border: 1px solid rgba(133,99,45,.15); border-radius: 14px; background: #fff; box-shadow: 0 12px 30px rgba(65,49,26,.07); }
.brand-history-archive-card.archive-item-roots-unal, .brand-history-archive-card.archive-item-roots-vehicle, .brand-history-archive-card.archive-item-roots-veli { grid-column: span 2; }
.brand-history-archive-card.is-featured, .brand-history-archive-card.is-video, .brand-history-archive-card.archive-item-site-diary-2012 { grid-column: 1 / -1; }
.brand-history-archive-card.is-featured, .brand-history-archive-card.archive-item-site-diary-2012 { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); align-items: stretch; }
.brand-history-archive-card.is-video { width: 100%; max-width: 800px; justify-self: center; display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr); align-items: stretch; }
.brand-history-archive-media { width: 100%; min-width: 0; flex: 0 0 auto; overflow: hidden; background: #eef3f6; }
.brand-history-archive-media img, .brand-history-archive-media video { display: block; width: 100%; height: auto; max-width: 100%; }
.brand-history-archive-media img { object-fit: contain; }
.brand-history-archive-card:not(.is-featured):not(.is-video):not(.archive-item-site-diary-2012) .brand-history-archive-media { aspect-ratio: 4 / 3; max-height: 340px; }
.brand-history-archive-card:not(.is-featured):not(.is-video) .brand-history-archive-media img { height: 100%; object-fit: cover; object-position: 50% 34%; }
.brand-history-archive-card.archive-item-roots-unal .brand-history-archive-media, .brand-history-archive-card.archive-item-roots-vehicle .brand-history-archive-media { aspect-ratio: 3 / 4; }
.brand-history-archive-card.archive-item-roots-unal:not(.is-featured):not(.is-video) .brand-history-archive-media img { object-position: 50% 0; }
.brand-history-archive-card.archive-item-roots-veli .brand-history-archive-media { aspect-ratio: 4 / 3; }
.brand-history-archive-card.is-featured .brand-history-archive-media, .brand-history-archive-card.archive-item-site-diary-2012 .brand-history-archive-media { max-height: 360px; }
.brand-history-archive-card.is-featured .brand-history-archive-media img { height: 100%; object-fit: cover; object-position: center 46%; }
.brand-history-archive-card.archive-item-site-diary-2012 .brand-history-archive-media img { height: 100%; object-fit: contain; }
.brand-history-archive-card.archive-item-early-office .brand-history-archive-media, .brand-history-archive-card.archive-item-catider-membership .brand-history-archive-media { max-height: 320px; }
.brand-history-archive-card.archive-item-catider-membership:not(.is-featured):not(.is-video) .brand-history-archive-media img { object-fit: contain; object-position: center; }
.brand-history-archive-media video { align-self: center; aspect-ratio: 5 / 4; background: #071b2d; object-fit: contain; }
.brand-history-archive-copy { min-width: 0; flex: 1 1 auto; padding: 23px 24px 25px; }
.brand-history-archive-copy > span:first-child, .brand-history-izocam-card > div:last-child > span:first-child { display: inline-flex; margin-bottom: 9px; color: #87642f; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.brand-history-archive-copy h3 { margin: 0 0 9px; color: var(--blue-900); font-size: 22px; font-weight: 650; line-height: 1.28; overflow-wrap: anywhere; }
.brand-history-archive-copy p { margin: 0; color: #52657c; font-size: 15px; line-height: 1.68; overflow-wrap: anywhere; }
.brand-history-archive-caption { display: block; margin-top: 11px; color: #6f6250; font-size: 12px; line-height: 1.55; }
.brand-history-archive-source { display: inline-flex; align-items: center; gap: 6px; margin-top: 15px; color: var(--blue-700); font-size: 13px; font-weight: 750; line-height: 1.45; text-decoration: none; overflow-wrap: anywhere; }
a.brand-history-archive-source:hover { color: var(--blue-500); }
.brand-history-archive-note { grid-column: 1 / -1; width: 100%; max-width: 980px; margin: 12px auto 0; padding: 28px 30px; border: 1px solid rgba(13,116,201,.16); border-left: 4px solid var(--blue-600); border-radius: 14px; background: #fff; box-shadow: 0 12px 30px rgba(5,55,102,.07); }
.brand-history-archive-note h3 { margin: 0 0 11px; color: var(--blue-900); font-size: clamp(24px, 2.8vw, 32px); line-height: 1.2; }
.brand-history-archive-note p { margin: 0; color: #52657c; font-size: 16px; line-height: 1.74; }
.brand-history-archive-note p + p { margin-top: 12px; }
.brand-history-izocam-block { margin-top: 46px; padding-top: 42px; border-top: 1px solid rgba(133,99,45,.16); }
.brand-history-izocam-section .brand-history-izocam-block { margin-top: 0; padding-top: 0; border-top: 0; }
.brand-history-izocam-block > header { max-width: 820px; margin-bottom: 26px; }
.brand-history-izocam-block > header h2, .brand-history-izocam-block > header h3 { margin: 0 0 9px; color: var(--blue-900); font-size: clamp(28px, 3.3vw, 39px); line-height: 1.15; overflow-wrap: anywhere; }
.brand-history-izocam-block > header p { margin: 0; color: #52657c; font-size: 17px; line-height: 1.65; }
.brand-history-izocam-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.brand-history-izocam-card { min-width: 0; overflow: hidden; border: 1px solid rgba(133,99,45,.15); border-radius: 13px; background: #fff; box-shadow: 0 10px 26px rgba(65,49,26,.06); }
.brand-history-izocam-card.is-wide { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr); align-items: center; }
.brand-history-izocam-media { min-width: 0; min-height: 290px; display: grid; place-items: center; padding: 24px; background: #f5f3eb; }
.brand-history-izocam-card.is-wide .brand-history-izocam-media { min-height: 220px; }
.brand-history-izocam-media img { display: block; width: auto; height: auto; max-width: 100%; max-height: 320px; object-fit: contain; }
.brand-history-izocam-card > div:last-child { min-width: 0; padding: 22px 24px 24px; }
.brand-history-izocam-card h3, .brand-history-izocam-card h4 { margin: 0 0 9px; color: var(--blue-900); font-size: 20px; line-height: 1.3; overflow-wrap: anywhere; }
.brand-history-izocam-card p { margin: 0; color: #52657c; font-size: 14px; line-height: 1.66; overflow-wrap: anywhere; }
.brand-history-archive-transparency { margin: 20px 0 0; padding: 15px 17px; border-radius: 10px; background: rgba(255,255,255,.8); color: #5f5139; font-size: 14px; line-height: 1.62; }

@media (max-width: 920px) {
  .brand-history-hero { padding: 66px 0 60px; }
  .brand-history-section { padding: 62px 0; }
  .brand-history-cta { align-items: flex-start; flex-direction: column; }
  .brand-history-cta-actions { width: 100%; justify-content: flex-start; }
  .brand-history-archive-section { padding: 68px 0; }
  .brand-history-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-history-era-intro, .brand-history-archive-note, .brand-history-archive-card.is-featured, .brand-history-archive-card.is-video, .brand-history-archive-card.archive-item-site-diary-2012 { grid-column: 1 / -1; }
  .brand-history-archive-card, .brand-history-archive-card.archive-item-roots-unal, .brand-history-archive-card.archive-item-roots-vehicle, .brand-history-archive-card.archive-item-roots-veli { grid-column: span 1; }
  .brand-history-archive-card.is-featured, .brand-history-archive-card.is-video, .brand-history-archive-card.archive-item-site-diary-2012, .brand-history-izocam-card.is-wide { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .home-history-link .container { align-items: flex-start; flex-direction: column; gap: 6px; text-align: left; }
  .home-history-link a { line-height: 1.45; }
  .corporate-history-link { grid-template-columns: 1fr; gap: 16px; padding: 21px 20px; }
  .corporate-history-link a { width: 100%; justify-content: center; border-radius: 10px; white-space: normal; }
  .brand-history-hero { padding: 54px 0 48px; }
  .brand-history-hero h1 { margin: 14px 0 20px; font-size: 36px; }
  .brand-history-intro, .brand-history-prose { font-size: 16px; line-height: 1.75; }
  .brand-history-context { margin-top: 22px; padding: 16px; font-size: 16px; }
  .brand-history-section { padding: 52px 0; }
  .brand-history-section h2 { font-size: 29px; }
  .brand-history-distinction, .brand-history-faq-list article, .brand-history-source-grid article { padding: 20px; }
  .brand-history-related > div { display: grid; grid-template-columns: 1fr; }
  .brand-history-related a { justify-content: space-between; border-radius: 10px; }
  .brand-history-source-grid { grid-template-columns: 1fr; }
  .brand-history-cta { padding: 22px 20px; }
  .brand-history-cta-actions { display: grid; grid-template-columns: 1fr; }
  .brand-history-cta .btn { width: 100%; min-width: 0; }
  .brand-history-archive-section { padding: 56px 0; }
  .brand-history-archive-grid, .brand-history-izocam-grid { grid-template-columns: 1fr; gap: 16px; }
  .brand-history-era-intro, .brand-history-archive-note, .brand-history-archive-card, .brand-history-archive-card.archive-item-roots-unal, .brand-history-archive-card.archive-item-roots-vehicle, .brand-history-archive-card.archive-item-roots-veli { grid-column: 1; }
  .brand-history-archive-card.is-featured, .brand-history-archive-card.is-video, .brand-history-izocam-card.is-wide { grid-column: auto; }
  .brand-history-archive-copy, .brand-history-izocam-card > div:last-child { padding: 20px; }
  .brand-history-archive-copy h3 { font-size: 20px; }
  .brand-history-archive-note { margin-top: 26px; padding: 22px 20px; }
  .brand-history-izocam-block { margin-top: 36px; padding-top: 34px; }
  .brand-history-izocam-media, .brand-history-izocam-card.is-wide .brand-history-izocam-media { min-height: 0; padding: 20px; }
}

/* Alanya Yerel SEO — Package 1 hub sayfaları */
.page-local-seo { overflow-x: clip; }
.home-context-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(13,116,201,.13); }
.home-context-links a { min-width: 0; display: grid; grid-template-columns: 24px minmax(0, 1fr) auto; align-items: center; gap: 10px; padding: 14px 16px; border: 1px solid rgba(13,116,201,.14); border-radius: 10px; background: #f8fbff; color: var(--blue-900); font-weight: 700; text-decoration: none; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.home-context-links a:hover { transform: translateY(-2px); border-color: rgba(13,116,201,.32); background: #f1f8ff; }
.home-context-links svg { width: 22px; height: 22px; color: var(--blue-500); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.home-context-links span { min-width: 0; overflow-wrap: anywhere; }
.home-context-links strong { color: var(--blue-500); font-size: 20px; }

.local-seo-page { min-width: 0; }
.local-seo-page h1, .local-seo-page h2, .local-seo-page h3, .local-seo-page p, .local-seo-page a, .local-seo-page summary { overflow-wrap: anywhere; }
.local-seo-hero { position: relative; overflow: hidden; padding: 76px 0 72px; border-bottom: 1px solid var(--line); background: linear-gradient(120deg, #fff 0%, #f6fbff 54%, #eaf6fc 100%); }
.local-seo-hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 10% 12%, rgba(37,184,232,.13), transparent 32%), radial-gradient(circle at 92% 82%, rgba(13,116,201,.09), transparent 28%); }
.local-seo-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(300px, .72fr); gap: 54px; align-items: center; }
.local-seo-hero-copy { min-width: 0; }
.local-seo-breadcrumb { margin-bottom: 24px; color: #64748b; font-size: 13px; }
.local-seo-breadcrumb a { color: var(--blue-700); text-decoration: none; }
.local-seo-hero h1 { max-width: 820px; margin: 16px 0 24px; color: var(--blue-900); font-size: clamp(42px, 5vw, 66px); font-weight: 700; line-height: 1.04; letter-spacing: -.02em; }
.local-seo-lead { max-width: 820px; color: #334155; font-size: 18px; line-height: 1.78; }
.local-seo-lead p { margin: 0; }
.local-seo-lead p + p { margin-top: 14px; }
.local-seo-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.local-seo-hero-visual { min-width: 0; min-height: 390px; position: relative; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(13,116,201,.14); border-radius: 20px; background: #fff; box-shadow: 0 24px 60px rgba(5,55,102,.12); }
.local-seo-hero-visual img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.local-seo-hero-visual.is-abstract { align-content: center; gap: 18px; padding: 34px; background: linear-gradient(145deg, #fff, #edf8ff); color: var(--blue-900); text-align: center; }
.local-seo-hero-visual.is-abstract svg { position: relative; z-index: 2; width: min(260px, 86%); color: var(--blue-700); fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.local-seo-hero-visual.is-abstract strong { position: relative; z-index: 2; font-size: 17px; }
.local-seo-visual-ring { position: absolute; border: 1px solid rgba(37,184,232,.23); border-radius: 50%; }
.local-seo-visual-ring-one { width: 300px; height: 300px; right: -80px; top: -80px; }
.local-seo-visual-ring-two { width: 210px; height: 210px; left: -60px; bottom: -60px; }

.local-seo-page .section-head { max-width: 800px; margin-bottom: 32px; }
.local-seo-page .section-head h2 { color: var(--blue-900); font-size: clamp(30px, 3.5vw, 42px); font-weight: 700; line-height: 1.13; }
.local-seo-page .section-head p { color: #52657c; font-size: 17px; }
.local-seo-problem-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.local-seo-problem-card { min-width: 0; display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 6px 14px; padding: 22px; border: 1px solid rgba(217,229,242,.95); border-radius: 12px; background: #fff; box-shadow: 0 10px 28px rgba(5,55,102,.055); }
.local-seo-problem-card > span { grid-row: 1 / span 2; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--soft); color: var(--blue-700); font-size: 13px; font-weight: 800; }
.local-seo-problem-card h3 { margin: 0; color: var(--blue-900); font-size: 18px; font-weight: 600; line-height: 1.35; }
.local-seo-problem-card p { margin: 3px 0 0; color: #64748b; font-size: 14px; line-height: 1.58; }

.local-seo-service-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.local-seo-service-card { min-width: 0; display: grid; grid-template-columns: 44px minmax(0, 1fr); align-items: start; gap: 14px; padding: 22px; border: 1px solid rgba(217,229,242,.95); border-radius: 12px; background: #fff; color: inherit; text-decoration: none; box-shadow: 0 10px 28px rgba(5,55,102,.055); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.local-seo-service-card:hover { transform: translateY(-3px); border-color: rgba(13,116,201,.3); box-shadow: 0 16px 34px rgba(5,55,102,.09); }
.local-seo-card-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: var(--soft); color: var(--blue-700); }
.local-seo-card-icon svg { width: 23px; height: 23px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.local-seo-service-card h3 { margin: 0 0 8px; color: var(--blue-900); font-size: 18px; font-weight: 600; line-height: 1.33; }
.local-seo-service-card p { margin: 0 0 14px; color: #64748b; font-size: 14px; line-height: 1.6; }
.local-seo-service-card strong { color: var(--blue-700); font-size: 14px; }

.local-seo-editorial-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr); gap: 28px; align-items: stretch; }
.local-seo-editorial-grid > article { min-width: 0; }
.local-seo-editorial-grid h2 { margin: 10px 0 18px; color: var(--blue-900); font-size: clamp(28px, 3.2vw, 40px); font-weight: 700; line-height: 1.16; }
.local-seo-editorial-grid p { color: #52657c; font-size: 17px; line-height: 1.76; }
.local-seo-editorial-grid p + p { margin-top: 14px; }
.local-seo-system-card { padding: 30px; border: 1px solid rgba(13,116,201,.17); border-radius: 16px; background: linear-gradient(145deg, #fff, #f2f9ff); box-shadow: 0 16px 40px rgba(5,55,102,.08); }
.local-seo-system-card > a { display: inline-flex; margin-top: 8px; color: var(--blue-700); font-weight: 800; text-decoration: none; }
.local-seo-area-band { padding: 34px 0; background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); color: #fff; }
.local-seo-area-band .container { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 20px; align-items: start; }
.local-seo-area-band .container > span { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 12px; background: rgba(255,255,255,.13); }
.local-seo-area-band svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 2; }
.local-seo-area-band h2 { margin: 0 0 7px; color: #fff; font-size: 27px; font-weight: 700; }
.local-seo-area-band p { max-width: 900px; margin: 0; color: rgba(255,255,255,.82); line-height: 1.68; }

.local-seo-category-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.local-seo-category-card { min-width: 0; display: grid; grid-template-columns: 44px minmax(0, 1fr) auto; align-items: start; gap: 14px; padding: 22px; border: 1px solid rgba(217,229,242,.95); border-radius: 12px; background: #fff; color: inherit; text-decoration: none; box-shadow: 0 10px 28px rgba(5,55,102,.055); transition: transform .2s ease, border-color .2s ease; }
.local-seo-category-card:hover { transform: translateY(-3px); border-color: rgba(13,116,201,.3); }
.local-seo-category-card h3 { margin: 0 0 7px; color: var(--blue-900); font-size: 18px; font-weight: 600; line-height: 1.34; }
.local-seo-category-card p { margin: 0 0 10px; color: #64748b; font-size: 14px; line-height: 1.58; }
.local-seo-category-card small { color: var(--blue-600); font-weight: 700; }
.local-seo-arrow { color: var(--blue-500); font-size: 22px; }
.local-seo-brand-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.local-seo-brand-card { min-width: 0; min-height: 226px; flex: 0 1 calc((100% - 48px) / 4); display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 14px; padding: 22px 18px 18px; border: 1px solid rgba(217,229,242,.95); border-radius: 14px; background: linear-gradient(180deg, #fff, #f9fcff); color: var(--blue-900); text-align: center; text-decoration: none; box-shadow: 0 10px 28px rgba(5,55,102,.055); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.local-seo-brand-card:hover { transform: translateY(-3px); border-color: rgba(13,116,201,.34); box-shadow: 0 16px 36px rgba(5,55,102,.09); }
.local-seo-brand-logo { width: 132px; height: 76px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(217,229,242,.9); border-radius: 10px; background: #fff; }
.local-seo-brand-logo img { width: auto; height: auto; max-width: 112px; max-height: 58px; object-fit: contain; }
.local-seo-brand-logo b { color: var(--blue-700); font-size: 22px; }
.local-seo-brand-copy { display: grid; justify-items: center; gap: 4px; }
.local-seo-brand-copy strong { color: var(--blue-900); font-size: 18px; font-weight: 700; line-height: 1.2; }
.local-seo-brand-copy > span { color: #64748b; font-size: 13px; font-weight: 700; }
.local-seo-brand-card > small { display: inline-flex; align-items: center; gap: 7px; color: var(--blue-700); font-size: 13px; font-weight: 800; }
.local-seo-brand-card > small span { color: var(--blue-500); font-size: 18px; line-height: 1; }
.local-seo-product-grid { align-items: stretch; }
.local-seo-product-grid .product-card { min-width: 0; }
.local-seo-centered-action { display: flex; justify-content: center; margin-top: 28px; }
.local-seo-application-band { padding: 42px 0; border-top: 1px solid rgba(13,116,201,.12); border-bottom: 1px solid rgba(13,116,201,.12); background: #f5faff; }
.local-seo-application-grid { display: grid; grid-template-columns: 52px minmax(0, 1fr) auto; gap: 20px; align-items: center; }
.local-seo-application-grid > .local-seo-card-icon { width: 52px; height: 52px; }
.local-seo-application-grid h2 { margin: 0 0 8px; color: var(--blue-900); font-size: 28px; font-weight: 700; }
.local-seo-application-grid p { max-width: 800px; margin: 0; color: #52657c; line-height: 1.68; }
.local-seo-application-grid p + p { margin-top: 10px; }

.local-seo-narrow { max-width: 900px; }
.local-seo-faq h2 { margin: 10px 0 28px; color: var(--blue-900); font-size: clamp(30px, 3.4vw, 40px); font-weight: 700; line-height: 1.15; }
.local-seo-faq-list { display: grid; gap: 12px; }
.local-seo-faq-list details { overflow: hidden; border: 1px solid rgba(217,229,242,.95); border-radius: 10px; background: #fff; box-shadow: 0 8px 24px rgba(5,55,102,.045); }
.local-seo-faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px 21px; color: var(--blue-900); font-size: 17px; font-weight: 700; cursor: pointer; list-style: none; }
.local-seo-faq-list summary::-webkit-details-marker { display: none; }
.local-seo-faq-list summary span { flex: 0 0 auto; color: var(--blue-500); font-size: 24px; line-height: 1; transition: transform .2s ease; }
.local-seo-faq-list details[open] summary span { transform: rotate(45deg); }
.local-seo-faq-list details > div { padding: 0 21px 20px; color: #52657c; line-height: 1.7; }
.local-seo-faq-list details > div p { margin: 0; }
.local-seo-cta { padding: 58px 0 66px; background: linear-gradient(135deg, #063b6d, #0864a9); color: #fff; text-align: center; }
.local-seo-cta .kicker { color: rgba(255,255,255,.72); }
.local-seo-cta h2 { max-width: 780px; margin: 10px auto 12px; color: #fff; font-size: clamp(30px, 4vw, 44px); font-weight: 700; line-height: 1.13; }
.local-seo-cta p { max-width: 760px; margin: 0 auto; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.68; }
.local-seo-cta > .container > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.local-seo-cta .btn.primary { border-color: #fff; background: #fff; color: var(--blue-900); }
.local-seo-cta .btn.ghost { border-color: rgba(255,255,255,.58); background: transparent; color: #fff; }

/* Package 4: Sika, KÖSTER and Weber brand collection pages */
.brand-hub-page { overflow: clip; background: #fff; }
.brand-hub-hero { padding: 72px 0 66px; border-bottom: 1px solid rgba(13,116,201,.12); background: radial-gradient(circle at 88% 18%, rgba(37,184,232,.15), transparent 30%), linear-gradient(135deg, #f8fcff, #edf7ff); }
.brand-hub-hero-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr); gap: 52px; align-items: center; }
.brand-hub-hero-copy, .brand-hub-visual, .brand-hub-editorial-grid > *, .brand-hub-usage-grid > * { min-width: 0; }
.brand-hub-breadcrumb { margin-bottom: 25px; }
.brand-hub-hero h1 { max-width: 780px; margin: 11px 0 18px; color: var(--blue-900); font-size: clamp(40px, 5vw, 62px); font-weight: 750; line-height: 1.06; letter-spacing: -.035em; }
.brand-hub-lead { max-width: 760px; color: #52657c; font-size: 17px; line-height: 1.78; }
.brand-hub-lead p { margin: 0; }
.brand-hub-lead p + p { margin-top: 12px; }
.brand-hub-hero-actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 28px; }
.brand-hub-visual { position: relative; min-height: 410px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(13,116,201,.15); border-radius: 22px; background: #fff; box-shadow: 0 26px 64px rgba(5,55,102,.14); }
.brand-hub-cover { width: 100%; height: 100%; min-height: 410px; object-fit: contain; padding: 38px; background: linear-gradient(145deg, #fff, #f2f9ff); }
.brand-hub-logo { position: absolute; left: 22px; top: 22px; width: 150px; height: 82px; display: grid; place-items: center; padding: 11px; border: 1px solid rgba(217,229,242,.95); border-radius: 12px; background: rgba(255,255,255,.96); box-shadow: 0 10px 28px rgba(5,55,102,.1); }
.brand-hub-logo img { width: auto; height: auto; max-width: 126px; max-height: 56px; object-fit: contain; }
.brand-hub-count { position: absolute; right: 22px; bottom: 22px; display: flex; align-items: baseline; gap: 6px; padding: 12px 16px; border-radius: 10px; background: var(--blue-900); color: #fff; font-size: 14px; font-weight: 700; box-shadow: 0 10px 24px rgba(5,55,102,.2); }
.brand-hub-count strong { font-size: 25px; line-height: 1; }
.brand-hub-page .section-head { max-width: 850px; margin-bottom: 32px; }
.brand-hub-page .section-head h2, .brand-hub-editorial-grid h2, .brand-hub-usage-grid h2 { color: var(--blue-900); font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; line-height: 1.14; }
.brand-hub-editorial-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr); gap: 30px; align-items: stretch; }
.brand-hub-editorial-grid h2 { margin: 10px 0 18px; }
.brand-hub-editorial-grid p, .brand-hub-usage-grid p { margin: 0; color: #52657c; font-size: 16px; line-height: 1.76; }
.brand-hub-editorial-grid p + p, .brand-hub-usage-grid p + p { margin-top: 13px; }
.brand-hub-system-card { padding: 30px; border: 1px solid rgba(13,116,201,.17); border-radius: 16px; background: linear-gradient(145deg, #fff, #f1f8ff); box-shadow: 0 16px 40px rgba(5,55,102,.08); }
.brand-hub-system-card h2 { font-size: 30px; }
.brand-hub-system-card > a { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; color: var(--blue-700); font-weight: 800; text-decoration: none; }
.brand-hub-group-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.brand-hub-group-card { min-width: 0; padding: 23px; border: 1px solid rgba(217,229,242,.95); border-radius: 14px; background: #fff; box-shadow: 0 10px 28px rgba(5,55,102,.055); }
.brand-hub-group-card > span { display: inline-flex; margin-bottom: 18px; padding: 7px 10px; border-radius: 999px; background: var(--soft); color: var(--blue-700); font-size: 13px; font-weight: 800; }
.brand-hub-group-card h3 { margin: 0 0 8px; color: var(--blue-900); font-size: 19px; line-height: 1.32; }
.brand-hub-group-card p { margin: 0; color: #64748b; font-size: 14px; line-height: 1.62; }
.brand-hub-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.brand-hub-product-grid .product-card { min-width: 0; }
.brand-product-logo-fallback { max-width: 75%; max-height: 72%; object-fit: contain !important; }
.brand-hub-more { margin-top: 26px; }
.brand-hub-more > summary { width: fit-content; display: flex; align-items: center; gap: 9px; margin: 0 auto 28px; padding: 13px 20px; border: 1px solid rgba(13,116,201,.28); border-radius: 8px; background: #fff; color: var(--blue-700); font-weight: 800; cursor: pointer; list-style: none; }
.brand-hub-more > summary::-webkit-details-marker { display: none; }
.brand-hub-more > summary span { font-size: 20px; transition: transform .2s ease; }
.brand-hub-more[open] > summary span { transform: rotate(45deg); }
.brand-hub-usage-band { padding: 62px 0; background: linear-gradient(135deg, #073e70, #0767ad); color: #fff; }
.brand-hub-usage-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 54px; }
.brand-hub-usage-grid .kicker { color: rgba(255,255,255,.68); }
.brand-hub-usage-grid h2 { margin: 10px 0 16px; color: #fff; font-size: 31px; }
.brand-hub-usage-grid p { color: rgba(255,255,255,.82); }
.brand-hub-usage-grid article > div { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.brand-hub-usage-grid article > div a { color: #fff; font-weight: 800; text-underline-offset: 4px; }
.brand-hub-source .container { max-width: 940px; }
.brand-hub-source article { padding: 28px 30px; border: 1px solid rgba(13,116,201,.17); border-radius: 14px; background: #f5faff; }
.brand-hub-source p { margin: 8px 0 12px; color: #52657c; line-height: 1.7; }
.brand-hub-source a { color: var(--blue-700); font-weight: 800; }
.brand-hub-cta { padding: 62px 0 68px; background: linear-gradient(135deg, #063b6d, #0864a9); color: #fff; text-align: center; }
.brand-hub-cta h2 { max-width: 780px; margin: 0 auto 12px; color: #fff; font-size: clamp(30px, 4vw, 44px); line-height: 1.13; }
.brand-hub-cta p { max-width: 760px; margin: 0 auto; color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.68; }
.brand-hub-cta > .container > div { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 24px; }
.brand-hub-cta .btn.primary { border-color: #fff; background: #fff; color: var(--blue-900); }
.brand-hub-cta .btn.ghost { border-color: rgba(255,255,255,.58); background: transparent; color: #fff; }
.product-brand-hub-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: var(--blue-700); font-size: 14px; font-weight: 800; text-decoration: none; }

@media (max-width: 1024px) {
  .brand-hub-hero-grid { grid-template-columns: minmax(0, 1.12fr) minmax(300px, .88fr); gap: 34px; }
  .brand-hub-visual, .brand-hub-cover { min-height: 350px; }
  .brand-hub-group-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
  .brand-hub-hero { padding: 56px 0 54px; }
  .brand-hub-hero-grid, .brand-hub-editorial-grid, .brand-hub-usage-grid { grid-template-columns: 1fr; }
  .brand-hub-visual, .brand-hub-cover { min-height: 300px; }
  .brand-hub-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-hub-usage-grid { gap: 34px; }
}

@media (max-width: 480px) {
  .brand-hub-hero { padding: 44px 0 46px; }
  .brand-hub-hero h1 { font-size: 35px; }
  .brand-hub-hero-actions, .brand-hub-cta > .container > div { display: grid; grid-template-columns: 1fr; }
  .brand-hub-hero-actions .btn, .brand-hub-cta .btn { width: 100%; }
  .brand-hub-visual, .brand-hub-cover { min-height: 250px; }
  .brand-hub-cover { padding: 26px; }
  .brand-hub-logo { left: 14px; top: 14px; width: 122px; height: 68px; }
  .brand-hub-logo img { max-width: 100px; max-height: 45px; }
  .brand-hub-count { right: 14px; bottom: 14px; }
  .brand-hub-group-grid, .brand-hub-product-grid { grid-template-columns: 1fr; }
  .brand-hub-system-card, .brand-hub-group-card, .brand-hub-source article { padding: 21px; }
}

@media (max-width: 1025px) {
  .local-seo-hero-grid { grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: 34px; }
  .local-seo-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .local-seo-brand-card { flex-basis: calc((100% - 32px) / 3); }
}

@media (max-width: 768px) {
  .local-seo-hero { padding: 58px 0 56px; }
  .local-seo-hero-grid, .local-seo-editorial-grid { grid-template-columns: 1fr; }
  .local-seo-hero-visual { min-height: 300px; }
  .local-seo-hero-visual img { min-height: 300px; }
  .local-seo-category-grid { grid-template-columns: 1fr; }
  .local-seo-application-grid { grid-template-columns: 52px minmax(0, 1fr); align-items: start; }
  .local-seo-application-grid > .btn { grid-column: 1 / -1; width: 100%; }
  .home-context-links { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .local-seo-hero { padding: 46px 0 48px; }
  .local-seo-breadcrumb { margin-bottom: 18px; }
  .local-seo-hero h1 { font-size: 36px; }
  .local-seo-lead { font-size: 16px; line-height: 1.72; }
  .local-seo-hero-actions { display: grid; grid-template-columns: 1fr; }
  .local-seo-hero-actions .btn { width: 100%; }
  .local-seo-hero-visual { min-height: 250px; border-radius: 14px; }
  .local-seo-hero-visual img { min-height: 250px; }
  .local-seo-page .band { padding-top: 58px; padding-bottom: 58px; }
  .local-seo-problem-grid, .local-seo-service-grid { grid-template-columns: 1fr; }
  .local-seo-problem-card { grid-template-columns: 38px minmax(0, 1fr); padding: 18px; }
  .local-seo-problem-card > span { width: 38px; height: 38px; }
  .local-seo-service-card, .local-seo-category-card { padding: 18px; }
  .local-seo-system-card { padding: 22px; }
  .local-seo-area-band .container { grid-template-columns: 1fr; }
  .local-seo-area-band .container > span { width: 44px; height: 44px; }
  .local-seo-brand-card { flex-basis: calc((100% - 16px) / 2); }
  .local-seo-application-grid { grid-template-columns: 1fr; }
  .local-seo-application-grid > .local-seo-card-icon { width: 46px; height: 46px; }
  .local-seo-faq-list summary { padding: 17px; font-size: 16px; }
  .local-seo-faq-list details > div { padding: 0 17px 18px; }
  .local-seo-cta > .container > div { display: grid; grid-template-columns: 1fr; }
  .local-seo-cta .btn { width: 100%; }
}

@media (max-width: 390px) {
  .local-seo-hero h1 { font-size: 32px; }
  .local-seo-category-card { grid-template-columns: 40px minmax(0, 1fr); }
  .local-seo-category-card .local-seo-arrow { display: none; }
  .local-seo-service-card { grid-template-columns: 40px minmax(0, 1fr); gap: 11px; }
  .local-seo-card-icon { width: 40px; height: 40px; }
  .home-context-links a { grid-template-columns: 22px minmax(0, 1fr); }
  .home-context-links a > strong { display: none; }
}
