/* جيناتي الحمض الوراثي — main stylesheet. Elegance through restraint: one deep colour, warm paper, a single gold line. */
:root {
  --ink: #14262E;
  --ink-soft: #3B4B53;
  --teal: #0F4C5C;
  --teal-deep: #0A3641;
  --teal-tint: #E6EEF0;
  --gold: #B99457;
  --gold-text: #7E6030;
  --gold-light: #D9C39A;
  --paper: #FBFAF7;
  --panel: #F1F4F3;
  --mist: #DCE6E4;
  --white: #FFFFFF;
  --ok: #1F6F5B;
  --err: #9B2C2C;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(20, 38, 46, 0.08);
  --max: 1140px;
  --font-ar: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, sans-serif;
  --font-la: 'IBM Plex Sans', 'IBM Plex Sans Arabic', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: var(--font-ar); font-size: 1.125rem; line-height: 1.8;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
html[lang="en"] body, html[lang="de"] body { font-family: var(--font-la); font-size: 1.0625rem; line-height: 1.65; }
img, svg, iframe { max-width: 100%; display: block; }
a { color: var(--teal); text-underline-offset: 0.2em; }
a:hover { color: var(--teal-deep); }
:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
.section.dark :focus-visible, .cta-band :focus-visible, .site-footer :focus-visible { outline-color: #fff; }
h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.35; font-weight: 700; color: var(--ink); letter-spacing: 0; }
h1 { font-size: clamp(2rem, 4.2vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.2em; padding-inline-start: 1.4em; }
li { margin-bottom: 0.35em; }
strong { font-weight: 600; }
.lead { font-size: clamp(1.15rem, 1.6vw, 1.35rem); color: var(--ink-soft); }
.small { font-size: 0.9375rem; }
.muted { color: var(--ink-soft); }
.latin, [lang="en"], [lang="de"] { font-family: var(--font-la); }
.num { font-family: var(--font-la); font-variant-numeric: lining-nums tabular-nums; }
html[dir="rtl"] .num { unicode-bidi: isolate; direction: ltr; display: inline-block; }
.num { white-space: nowrap; }

.skip { position: absolute; inset-inline-start: 0; top: -100px; background: var(--teal); color: #fff; padding: 12px 18px; z-index: 100; border-radius: 0 0 10px 0; }
.skip:focus { top: 0; }
.container { width: min(100% - 48px, var(--max)); margin-inline: auto; }
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section.tight { padding-block: clamp(40px, 6vw, 72px); }
.section.panel { background: var(--panel); }
.section.dark { background: var(--teal-deep); color: #EAF1F0; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark a { color: var(--gold-light); }
.eyebrow { display: inline-block; color: var(--gold-text); font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em; margin-bottom: 0.6em; }
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; background: var(--gold); vertical-align: middle; margin-inline-end: 10px; }
.section.dark .eyebrow { color: var(--gold-light); }
.intro { max-width: 720px; }
.center { text-align: center; }
.center .intro { margin-inline: auto; }
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 12px 26px; border-radius: 999px; font-weight: 600; font-size: 1.05rem;
  text-decoration: none; border: 2px solid transparent; cursor: pointer; line-height: 1.3;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  font-family: inherit;
}
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal-tint); }
.btn-light { background: #fff; color: var(--teal-deep); border-color: #fff; }
.btn-light:hover { background: var(--paper); color: var(--teal-deep); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }
.btn svg { width: 20px; height: 20px; flex: none; }
.actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251, 250, 247, .92); backdrop-filter: saturate(160%) blur(10px); border-bottom: 1px solid var(--mist); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; color: inherit; flex: 0 0 auto; }
.lang-short { display: none; }
.brand svg { height: 56px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { padding: 10px 14px; border-radius: 10px; text-decoration: none; color: var(--ink); font-weight: 500; font-size: 1rem; white-space: nowrap; }
html[lang="en"] .nav a, html[lang="de"] .nav a { font-size: .95rem; padding: 10px 11px; }
html[lang="en"] .btn-header, html[lang="de"] .btn-header { white-space: nowrap; }
.nav a:hover { background: var(--teal-tint); color: var(--teal-deep); }
.nav a[aria-current="page"] { color: var(--teal); box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
.header-tools { display: flex; align-items: center; gap: 12px; }
.lang { display: inline-flex; border: 1px solid var(--mist); border-radius: 999px; padding: 3px; gap: 2px; }
.lang a { text-decoration: none; color: var(--ink-soft); font-size: .9rem; font-weight: 500; padding: 5px 11px; border-radius: 999px; font-family: var(--font-la); }
.lang a[aria-current] { background: var(--teal); color: #fff; }
.lang a:hover { color: var(--teal-deep); }
.lang a[aria-current]:hover { color: #fff; }
.btn-header { min-height: 46px; padding: 8px 20px; font-size: .98rem; white-space: nowrap; }
.menu-btn { display: none; background: none; border: 1px solid var(--mist); border-radius: 12px; width: 48px; height: 48px; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }
.menu-btn svg { width: 24px; height: 24px; }
/* no-JS fallback: a checkbox toggles the mobile menu; with JS the button takes over */
.nav-toggle { position: absolute; opacity: 0; width: 1px; height: 1px; margin: 0; pointer-events: none; }
.js-menu { display: none; }
html.js .nav-toggle, html.js .nojs-menu { display: none; }
@media (max-width: 1000px) {
  .lang-full { display: none; }
  .lang-short { display: inline; }
  .lang a { padding: 5px 9px; }
  .brand svg { height: 48px; }
  .header-inner { gap: 10px; }
  .nav { display: none; }
  .btn-header { display: none; }
  .menu-btn { display: inline-flex; }
  html.js .js-menu { display: inline-flex; }
  .nav-toggle:focus-visible ~ .header-tools .nojs-menu { outline: 3px solid var(--teal); outline-offset: 3px; }
  .nav-toggle:checked ~ .nav, .site-header.open .nav { display: flex; flex-direction: column; align-items: stretch; position: absolute; inset-inline: 0; top: 100%; background: var(--paper); border-bottom: 1px solid var(--mist); padding: 12px 24px 24px; gap: 2px; box-shadow: var(--shadow); }
  .nav-toggle:checked ~ .nav a, .site-header.open .nav a { padding: 14px 12px; font-size: 1.1rem; border-bottom: 1px solid var(--mist); border-radius: 0; }
  .nav-toggle:checked ~ .nav .nav-cta, .site-header.open .nav .nav-cta { margin-top: 14px; border: 0; }
}
.nav .nav-cta { display: none; }
@media (max-width: 1000px) { .nav .nav-cta { display: block; } }

/* Hero */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #F6F3EC 0%, var(--paper) 100%); }
.hero-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; min-height: min(78vh, 760px); padding: clamp(40px, 6vw, 80px) 0; }
.hero h1 { margin-bottom: .45em; }
.hero h1 em { font-style: normal; color: var(--teal); }
.hero .lead { margin-bottom: 1.4em; }
.hero-media { position: relative; }
.hero-media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 16 / 10; object-fit: cover; }
.hero-media::after { content: ""; position: absolute; inset-inline-start: -18px; bottom: -18px; width: 42%; height: 6px; background: var(--gold); border-radius: 3px; opacity: .9; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid var(--mist); font-size: .98rem; color: var(--ink-soft); }
.trust li { display: inline-flex; align-items: center; gap: 8px; margin: 0; }
.trust svg { width: 18px; height: 18px; color: var(--teal); flex: none; }
.trust ul, ul.trust { list-style: none; padding: 0; margin: 0; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; min-height: 0; } .hero-media { order: -1; } .hero-media img { aspect-ratio: 16 / 9; } }

/* Cards */
.card { background: #fff; border: 1px solid var(--mist); border-radius: var(--radius); padding: 30px; box-shadow: 0 1px 0 rgba(20,38,46,.02); transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card h3 { margin-top: .2em; }
.card .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; margin-bottom: 18px; }
.card .icon svg { width: 26px; height: 26px; }
.card-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; text-decoration: none; margin-top: 8px; }
.card-link svg { width: 18px; height: 18px; transition: transform .18s ease; }
html[dir="rtl"] .card-link svg { transform: scaleX(-1); }
.card-link:hover svg { transform: translateX(4px); }
html[dir="rtl"] .card-link:hover svg { transform: scaleX(-1) translateX(4px); }
.card.feature { display: grid; grid-template-rows: auto 1fr auto; }
.card.media { padding: 0; overflow: hidden; }
.card.media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card.media .body { padding: 28px 30px 30px; }

/* Steps */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steps li { position: relative; padding: 28px 24px 24px; background: #fff; border: 1px solid var(--mist); border-radius: var(--radius); }
.steps li::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 700; font-family: var(--font-la); box-shadow: 0 0 0 4px var(--paper), 0 0 0 6px var(--gold); margin-bottom: 16px; }
.steps h3 { font-size: 1.15rem; }
.steps p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* Split (text + image) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse > .split-media { order: -1; }
.split-media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; aspect-ratio: 4 / 3; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 32px; } .split.reverse > .split-media, .split > .split-media { order: -1; } }

/* Checklist */
.checks { list-style: none; padding: 0; margin: 0 0 1.2em; }
.checks li { position: relative; padding-inline-start: 34px; margin-bottom: .6em; }
.checks li::before { content: ""; position: absolute; inset-inline-start: 0; top: .55em; width: 20px; height: 20px; border-radius: 50%; background: var(--teal-tint); }
.checks li::after { content: ""; position: absolute; inset-inline-start: 7px; top: .55em; margin-top: 4px; width: 6px; height: 10px; border: solid var(--teal); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg); }

/* Stats / facts */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.facts-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .facts-4 { grid-template-columns: repeat(2, 1fr); } }
.fact { background: #fff; border: 1px solid var(--mist); border-radius: var(--radius); padding: 26px; }
.fact .big { font-family: var(--font-la); font-size: 2.2rem; font-weight: 600; color: var(--teal); line-height: 1.1; display: block; margin-bottom: 8px; }
.fact .big.ar { font-family: var(--font-ar); font-size: 1.7rem; }
.fact p { margin: 0; color: var(--ink-soft); font-size: 1rem; }
@media (max-width: 800px) { .facts { grid-template-columns: 1fr; } }

/* Quote band */
.pull { border-inline-start: 4px solid var(--gold); padding: 6px 22px; font-size: clamp(1.2rem, 2vw, 1.5rem); color: var(--teal-deep); font-weight: 500; margin: 1.6em 0; }

/* FAQ */
.faq { border-top: 1px solid var(--mist); }
.faq details { border-bottom: 1px solid var(--mist); }
.faq summary { cursor: pointer; padding: 18px 0; font-weight: 600; font-size: 1.1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-la); font-size: 1.5rem; color: var(--teal); flex: none; width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--teal-tint); transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 0 20px; color: var(--ink-soft); max-width: 800px; }

/* Branches + map */
.branches { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; align-items: start; }
.branch-list { display: grid; gap: 12px; }
.branch { background: #fff; border: 1px solid var(--mist); border-radius: var(--radius-sm); transition: border-color .18s ease, box-shadow .18s ease; }
.branch:hover { border-color: var(--teal); }
.branch.is-active { border-color: var(--teal); box-shadow: inset 4px 0 0 var(--teal); }
html[dir="rtl"] .branch.is-active { box-shadow: inset -4px 0 0 var(--teal); }
.branch-btn { display: block; width: 100%; text-align: start; background: none; border: 0; padding: 18px 20px 6px; font: inherit; color: inherit; cursor: pointer; border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.branch-btn:focus-visible { outline-offset: -3px; }
.branch .name { display: flex; align-items: center; justify-content: space-between; gap: 12px; font-weight: 700; margin-bottom: 4px; }
.badge { display: inline-block; font-size: .78rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; background: var(--teal-tint); color: var(--teal-deep); white-space: nowrap; }
.badge.gold { background: #F3ECDD; color: var(--gold-text); }
.branch .addr { display: block; color: var(--ink-soft); font-size: .98rem; }
.branch .meta { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: .92rem; color: var(--ink-soft); padding: 6px 20px 16px; }
.branch .meta a { color: var(--teal); text-decoration: none; }
.branch .meta a:hover { text-decoration: underline; }
.branch .meta > span { display: inline-flex; align-items: center; gap: 6px; }
.branch .meta svg { width: 16px; height: 16px; flex: none; color: var(--teal); }
.map { position: sticky; top: 100px; }
.map-frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--mist); background: var(--panel); aspect-ratio: 4 / 3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }
.map-frame .placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--ink-soft); font-size: 1rem; padding: 24px; text-align: center; background: linear-gradient(180deg, var(--teal-tint), var(--panel)); }
.map-frame .placeholder p { margin: 0; max-width: 360px; }
.map-frame .placeholder .pin { width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--teal); display: grid; place-items: center; box-shadow: var(--shadow); }
.map-frame .placeholder .pin svg { width: 28px; height: 28px; }
.map-frame .placeholder .btn { min-height: 46px; padding: 8px 20px; font-size: .98rem; }
.map-caption { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 14px; flex-wrap: wrap; }
.map-caption .btn { min-height: 44px; padding: 8px 18px; font-size: .95rem; }
@media (max-width: 900px) { .branches { grid-template-columns: 1fr; } .map { position: static; } }

/* CTA band */
.cta-band { background: var(--teal); color: #fff; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset-inline-start: 0; top: 0; height: 100%; width: 6px; background: var(--gold); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #E3ECEE; max-width: 640px; }
.cta-band .contact-row { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 1.4rem; color: #fff; }
.cta-band .contact-row a { color: #fff; text-decoration: none; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; }
.cta-band .contact-row a:hover { text-decoration: underline; }
.cta-band .contact-row svg { width: 20px; height: 20px; color: var(--gold-light); }

/* Contact form */
.form { background: #fff; border: 1px solid var(--mist); border-radius: var(--radius); padding: clamp(24px, 4vw, 40px); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea { width: 100%; font: inherit; padding: 12px 14px; border: 1px solid #C9D4D2; border-radius: var(--radius-sm); background: #fff; color: var(--ink); min-height: 50px; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--teal); outline-offset: 2px; border-color: var(--teal); }
html:not(.js) #map-show { display: none; }
.field .hint { font-size: .9rem; color: var(--ink-soft); margin: 4px 0 0; }
.field .error { font-size: .9rem; color: var(--err); margin: 6px 0 0; display: none; }
.field.invalid .error { display: block; }
.field.invalid input, .field.invalid select { border-color: var(--err); }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.consent input { width: 20px; height: 20px; margin-top: 5px; flex: none; }
.trap { position: absolute; inset-inline-start: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm); display: none; }
.form-status.ok { display: block; background: #E7F3EE; color: var(--ok); }
.form-status.err { display: block; background: #FBEAEA; color: var(--err); }
.form-alt { margin-top: 14px; font-size: .95rem; color: var(--ink-soft); }

/* Contact info */
.contact-card { background: #fff; border: 1px solid var(--mist); border-radius: var(--radius); padding: 30px; }
.contact-card dl { margin: 0; display: grid; gap: 14px; }
.contact-card dt { font-size: .9rem; color: var(--ink-soft); }
.contact-card dd { margin: 0; font-weight: 600; }
.contact-card dd a { text-decoration: none; }

/* Footer */
.site-footer { background: var(--teal-deep); color: #D5E1E1; padding: 64px 0 28px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 14px; }
.site-footer a { color: #E9F0F0; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer .brand svg { height: 62px; margin-bottom: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.14); margin-top: 40px; padding-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: .9rem; color: #B7C8C8; }
.footer-partner { display: inline-flex; align-items: center; gap: 10px; color: var(--gold-light); font-weight: 500; margin-top: 8px; }
.footer-partner svg { width: 18px; height: 18px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* Page header (inner pages) */
.page-head { padding: clamp(48px, 7vw, 88px) 0 clamp(32px, 5vw, 56px); background: linear-gradient(180deg, #F6F3EC 0%, var(--paper) 100%); }
.page-head .lead { max-width: 760px; }
.page-head h1 { max-width: 900px; }

/* Prose */
.prose { max-width: 780px; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; }
.prose .lead { margin-bottom: 1.6em; }

/* Sticky mobile CTA */
.mobile-cta { display: none; }
@media (max-width: 700px) {
  .mobile-cta { display: flex; position: fixed; bottom: 0; inset-inline: 0; z-index: 40; background: rgba(251,250,247,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--mist); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); gap: 10px; }
  .mobile-cta .btn { flex: 1; min-height: 48px; padding: 8px 12px; font-size: .95rem; }
  body { padding-bottom: 76px; }
}

/* Utilities */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; } .mt-2 { margin-top: 2rem; } .mt-3 { margin-top: 3rem; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
hr.rule { border: 0; height: 1px; background: var(--mist); margin: 2.5rem 0; }
.notfound { padding: 120px 0; text-align: center; }
