/* =========================================================
   Wevia Digital — DARK theme (original brand)
   One design system, class names preserved across all pages.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg:        #00071a;
  --panel:     #0a1230;   /* raised panels / cards */
  --panel-2:   #0e1740;
  --line:      rgba(255,255,255,.09);
  --line-soft: rgba(255,255,255,.06);

  --ink:       #ffffff;   /* headings */
  --body:      #b8bcca;   /* body text */
  --muted:     #7e8295;   /* captions */

  --magenta:   #e710f4;
  --blue:      #3cbef3;
  --accent:    #a855f7;   /* accent (violet) */
  --grad:      linear-gradient(90deg, #e710f4 0%, #3cbef3 100%);

  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius:    16px;
  --pill:      999px;
  --shadow:    0 1px 2px rgba(0,0,0,.35), 0 10px 30px -18px rgba(0,0,0,.6);
  --shadow-lg: 0 30px 60px -34px rgba(0,0,0,.7);
  --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }
body {
  /* transparent so the fixed #hero3d backdrop shows through; html holds the fallback */
  margin: 0; background: transparent; color: var(--body);
  font-family: var(--font-body); font-size: 17px; line-height: 1.7;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--font-head); color: var(--ink); font-weight: 800; line-height: 1.12; margin: 0; letter-spacing: -.02em; }

/* ---------- Hide heavy dark-theme decorations (minimal look) ---------- */
.aurora, .glow, .dots, .hero-watermark, .marquee { display: none !important; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section  { padding-block: clamp(64px, 8vw, 120px); position: relative; }
.eyebrow {
  display: inline-block; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  font-size: 12.5px; color: var(--accent); margin-bottom: 18px;
}
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.text-dim { color: var(--muted); }
.center { text-align: center; }

h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 700; }
.lead { font-size: clamp(1.05rem, 1.2vw, 1.2rem); max-width: 60ch; color: var(--body); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 12px; padding: 14px 26px; border-radius: var(--pill);
  font-weight: 600; font-size: 14.5px; letter-spacing: .01em; border: 0; color: #fff;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease); text-transform: none;
}
.btn--grad { background: var(--grad); box-shadow: 0 10px 24px -12px rgba(231,16,244,.6); }
.btn--grad .div { width: 1px; height: 15px; background: rgba(255,255,255,.55); }
.btn--grad .arr { transition: transform .25s var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn--grad:hover { box-shadow: 0 16px 30px -12px rgba(60,190,243,.65); }
.btn--grad:hover .arr { transform: translateX(4px); }
.btn--ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60; display: flex; align-items: center; justify-content: center;
  padding: 18px 24px; transition: background .3s var(--ease), padding .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { background: rgba(3,8,24,.82); backdrop-filter: blur(12px); padding: 12px 24px; box-shadow: 0 1px 0 var(--line); }
.header-inner { width: 100%; max-width: var(--container); display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 11px; }
.logo svg { width: 34px; height: 34px; display: block; }
.logo-mark { height: 34px; width: auto; display: block; flex: none; }
.logo span { font-weight: 800; letter-spacing: .3em; font-size: 19px; color: var(--ink); padding-left: .3em; }

.nav-toggle { width: 46px; height: 46px; border-radius: 50%; background: #0c1330; border: 1px solid var(--line); display: grid; place-items: center; gap: 5px; transition: .25s; }
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-panel {
  position: fixed; inset: 0 auto 0 0; width: min(340px, 84vw); z-index: 70; background: #04091d;
  border-right: 1px solid var(--line); padding: 116px 44px 44px; transform: translateX(-100%);
  transition: transform .45s var(--ease); display: flex; flex-direction: column; gap: 2px;
}
.nav-panel.open { transform: none; box-shadow: var(--shadow-lg); }
.nav-panel a { font-weight: 600; font-size: 16px; color: var(--ink); padding: 15px 0; border-bottom: 1px solid var(--line-soft); transition: color .25s, padding-left .25s var(--ease); }
.nav-panel a:hover { color: var(--accent); padding-left: 8px; }
.nav-panel a.active { color: var(--accent); }
.nav-backdrop { position: fixed; inset: 0; background: rgba(15,22,34,.34); opacity: 0; visibility: hidden; transition: .35s; z-index: 65; }
.nav-backdrop.open { opacity: 1; visibility: visible; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; padding: 180px 0 90px; overflow: hidden; }
/* site-wide intergalactic backdrop: fixed behind all content */
#hero3d.bg3d { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: -1; display: block; pointer-events: none; }
#hero3d { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; display: block; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(90deg, #00071a 0%, rgba(0,7,26,.82) 34%, rgba(0,7,26,.12) 72%, rgba(0,7,26,.4) 100%); }
.hero > .container { position: relative; z-index: 2; }
@media (max-width: 900px) { .hero::after { background: linear-gradient(180deg, rgba(0,7,26,.55) 0%, rgba(0,7,26,.85) 60%); } }
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero h1 span { display: block; }
.hero .lead { margin: 26px 0 34px; }

/* Hero with side form */
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.hero-grid .hero-content { max-width: none; }
.hero-form { position: relative; z-index: 2; background: #0c1533; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 3vw, 36px); box-shadow: var(--shadow-lg); }
.hero-form h3 { font-size: 1.4rem; margin-bottom: 6px; }
.hero-form > p { font-size: 14.5px; color: var(--muted); margin: 0 0 20px; }
.hero-form input, .hero-form select { width: 100%; padding: 13px 15px; margin-bottom: 12px; border: 1px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 15px; color: var(--ink); background: rgba(255,255,255,.05); transition: border-color .2s; }
.hero-form input::placeholder { color: var(--muted); }
.hero-form select { color: var(--body); appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238b93a2' stroke-width='2'><path d='M6 9l6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.hero-form input:focus, .hero-form select:focus { outline: none; border-color: var(--accent); }
.hero-form button { margin-top: 4px; }
.hero-form__note { font-size: 12.5px; color: var(--muted); text-align: center; margin: 12px 0 0; }
.hero-form__done { text-align: center; padding: 14px 0; }
.hero-form__done h3 { margin-bottom: 8px; }
.hero-form__done p { color: var(--muted); font-size: 14.5px; margin: 0 0 18px; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-trust { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; font-size: 14px; color: var(--muted); }
.hero-trust .stars { color: #f5a623; letter-spacing: 2px; font-size: 15px; }
.hero-trust strong { color: var(--ink); font-weight: 700; }
.hero-trust .sep { width: 1px; height: 15px; background: var(--line); }

/* =========================================================
   Services list
   ========================================================= */
.svc-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 20px; }
.svc-row { display: grid; grid-template-columns: 1.1fr 1fr 1.2fr; gap: 40px; align-items: center; padding: 34px 0; border-top: 1px solid var(--line); }
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row__title { display: flex; align-items: center; gap: 18px; }
.svc-row__title .ico { width: 42px; height: 42px; color: var(--accent); flex: none; }
.svc-row__media { height: 150px; border-radius: var(--pill); overflow: hidden; background: var(--panel); border: 1px solid var(--line); }
.svc-row__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-row__text { color: var(--body); margin: 0; }

/* =========================================================
   Split sections
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 84px); align-items: center; }
.split--rev .split__media { order: -1; }
.split__media { position: relative; }
/* height:auto is required, an HTML height attribute otherwise wins and
   aspect-ratio is ignored, which stretches the box and crops the image */
.split__media img, .split__ph, .split__media video { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.split__media video { display: block; aspect-ratio: 16/9; background: #0b1020; }
.split__ph { background: var(--panel); display: grid; place-items: center; color: var(--muted); }
.badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.badge { display: flex; align-items: center; gap: 9px; padding: 9px 16px; border: 1px solid var(--line); border-radius: var(--pill); font-size: 14px; color: var(--ink); background: var(--panel); }
.badge .tick { color: var(--blue); font-weight: 700; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.chip { padding: 10px 18px; border: 1px solid var(--line); border-radius: var(--pill); font-size: 14px; color: var(--ink); background: var(--panel); }

/* =========================================================
   Industries
   ========================================================= */
.industries { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.industry { padding: 26px 14px; text-align: center; border: 1px solid var(--line); border-radius: var(--radius); background: var(--panel); transition: .3s var(--ease); }
.industry:hover { transform: translateY(-5px); border-color: transparent; box-shadow: var(--shadow-lg); }
.industry .ico { width: 36px; height: 36px; margin: 0 auto 12px; color: var(--accent); }
.industry span { font-weight: 600; color: var(--ink); font-size: 14.5px; }

/* =========================================================
   Cards
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.cards--2 { grid-template-columns: repeat(2,1fr); }
.card { padding: 32px 28px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); transition: .3s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card .ico { width: 44px; height: 44px; color: var(--accent); margin-bottom: 18px; }
.card h3 { margin-bottom: 10px; }
.card p { margin: 0; font-size: 15.5px; color: var(--body); }

/* =========================================================
   Stats
   ========================================================= */
.stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 900; font-size: clamp(2.4rem,4.6vw,3.6rem); letter-spacing: -.03em; }
.stat .lbl { color: var(--muted); font-size: 14.5px; margin-top: 6px; }

/* =========================================================
   Testimonial
   ========================================================= */
.tmn { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }
.tmn__img img, .tmn__ph { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
.tmn__ph { background: var(--panel); display: grid; place-items: center; color: var(--muted); }
.tmn__quote { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.3rem,2.2vw,1.8rem); color: var(--ink); line-height: 1.5; letter-spacing: -.01em; }
.tmn__name { color: var(--accent); font-weight: 700; font-size: 1.2rem; margin-top: 22px; }
.tmn__role { letter-spacing: .08em; text-transform: uppercase; font-size: 12.5px; color: var(--muted); margin-top: 5px; }

/* =========================================================
   Compare
   ========================================================= */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.compare__col { padding: 34px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--panel); }
.compare__col--win { background: var(--panel); border-color: var(--line); box-shadow: var(--shadow); }
.compare h3 { margin-bottom: 20px; font-size: 1.3rem; }
.compare ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.compare li { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--body); }
.compare li .mark { flex: none; width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-size: 13px; font-weight: 700; margin-top: 1px; }
.compare li .mark.no  { background: rgba(255,90,80,.16); color: #ff6b6b; }
.compare li .mark.yes { background: rgba(60,190,243,.16); color: #3cbef3; }

/* =========================================================
   Process / steps
   ========================================================= */
.steps { display: grid; gap: 16px; }
.step { display: grid; grid-template-columns: 72px 1fr; gap: 24px; align-items: start; padding: 26px 30px; border-radius: var(--radius); background: var(--panel); border: 1px solid var(--line); transition: .3s var(--ease); }
.step:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateX(4px); }
.step__n { font-family: var(--font-head); font-weight: 900; font-size: 2rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.03em; }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; font-size: 15.5px; color: var(--body); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border: 1px solid var(--line); border-radius: 14px; background: var(--panel); margin-bottom: 12px; overflow: hidden; }
.faq__q { width: 100%; text-align: left; background: none; border: 0; color: var(--ink); font-weight: 600; font-size: 16.5px; padding: 20px 24px; display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.faq__q .pm { flex: none; width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: .3s; color: var(--accent); }
.faq__item.open .faq__q .pm { transform: rotate(45deg); background: var(--grad); color: #fff; border-color: transparent; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { margin: 0; padding: 0 24px 22px; color: var(--body); font-size: 15.5px; }

/* =========================================================
   Blog
   ========================================================= */
.posts { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.post-card { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--panel); transition: .3s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-card__media { aspect-ratio: 16/9; overflow: hidden; background: var(--panel); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; gap: 12px; align-items: center; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 13px; }
.post-card__meta .cat { color: var(--accent); font-weight: 700; }
.post-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.post-card p { margin: 0 0 18px; font-size: 15px; color: var(--body); }
.post-card__more { margin-top: auto; font-weight: 600; font-size: 14px; color: var(--accent); }
.post-card__more .grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

.article { max-width: 740px; margin-inline: auto; }
.article__meta { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.article__hero-media { max-width: 940px; margin: 0 auto 46px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.article__hero-media img { width: 100%; aspect-ratio: 21/9; object-fit: cover; display: block; }
.prose { color: var(--body); font-size: 17.5px; line-height: 1.8; }
.prose h2 { font-size: clamp(1.45rem, 2.4vw, 2rem); margin: 44px 0 16px; }
.prose h3 { font-size: 1.25rem; margin: 30px 0 10px; }
.prose p { margin: 0 0 20px; }
.prose ul { margin: 0 0 20px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--magenta); }
.prose strong { color: var(--ink); }
.prose blockquote { margin: 28px 0; padding: 18px 26px; border-left: 3px solid var(--accent); background: var(--panel); border-radius: 0 12px 12px 0; font-family: var(--font-head); font-weight: 600; font-size: 1.2rem; color: var(--ink); }
.prose table { width: 100%; border-collapse: collapse; margin: 26px 0; font-size: 15.5px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.prose thead th { background: var(--panel-2); color: var(--ink); font-weight: 700; }
.prose th, .prose td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
.prose tbody tr:last-child td { border-bottom: 0; }
.prose tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
.prose td:first-child { color: var(--ink); font-weight: 600; }
@media (max-width: 560px) { .prose table { font-size: 13.5px; } .prose th, .prose td { padding: 10px 11px; } }
.author { display: flex; gap: 15px; align-items: center; margin-top: 50px; padding-top: 28px; border-top: 1px solid var(--line); }
.author__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--grad); flex: none; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; font-size: 1.2rem; }
.author__name { color: var(--ink); font-weight: 600; }
.author__role { color: var(--muted); font-size: 14px; }

/* =========================================================
   CTA band
   ========================================================= */
.cta { text-align: center; position: relative; overflow: hidden; border-radius: 24px; padding: clamp(48px,6vw,80px) 24px; background: var(--panel); border: 1px solid var(--line); }
.cta h2 { max-width: 20ch; margin: 0 auto 26px; position: relative; z-index: 1; }
.cta--photo { border-color: transparent; background-image: linear-gradient(135deg, rgba(88,20,120,.86), rgba(10,16,40,.9)), url("/assets/img/photos/signs-you-need-a-website-redesign.jpg"); background-size: cover; background-position: center; }
.cta--photo h2, .cta--photo p { color: #fff; }
.cta--photo .lead { color: rgba(255,255,255,.8); }

/* =========================================================
   Footer
   ========================================================= */
.footer { padding: 74px 0 34px; border-top: 1px solid var(--line); background: var(--panel); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; padding-bottom: 46px; border-bottom: 1px solid var(--line); }
.footer h4 { font-family: var(--font-body); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer__about p { max-width: 42ch; margin: 16px 0 0; color: var(--body); }
.footer__about .logo span { color: var(--ink); }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer ul a { color: var(--body); transition: color .25s; }
.footer ul a:hover { color: var(--accent); }
.footer__contact a { display: block; color: var(--body); margin-bottom: 9px; }
.footer__contact a:hover { color: var(--accent); }
.footer__bottom { padding-top: 26px; text-align: center; color: var(--muted); font-size: 13.5px; }

/* =========================================================
   Back-to-top
   ========================================================= */
.to-top { position: fixed; right: 24px; bottom: 24px; width: 46px; height: 46px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; border: 0; opacity: 0; visibility: hidden; transform: translateY(12px); transition: .3s var(--ease); z-index: 50; box-shadow: var(--shadow-lg); }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--accent); }

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; }
.reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .split, .tmn, .compare, .footer__top { grid-template-columns: 1fr; }
  .split--rev .split__media { order: 0; }
  .svc-row { grid-template-columns: 1fr; gap: 18px; }
  .svc-row__media { height: 190px; }
  .industries { grid-template-columns: repeat(3,1fr); }
  .cards, .cards--2, .stats, .posts { grid-template-columns: 1fr; }
  .step { grid-template-columns: 52px 1fr; gap: 14px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero { padding: 150px 0 70px; }
  .industries { grid-template-columns: repeat(2,1fr); }
  .nav-panel { padding: 104px 30px 40px; }
  .to-top { right: 16px; bottom: 16px; }
}
