@import url('https://fonts.googleapis.com/css2?family=Sora:wght@600;700;800&family=Source+Sans+3:wght@400;500;600;700&display=swap');

:root {
  --primary: #1a56db;
  --primary-dark: #1444b0;
  --accent: #0ea5e9;
  --bg: #f8fafc;
  --bg-alt: #eef4ff;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 24px 60px rgba(26, 86, 219, 0.12);
  --radius: 16px;
  --nav-h: 72px;
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

body.tr span[lang='en'],
body.en span[lang='tr'] {
  display: none !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.brand img,
.brand-icon {
  height: 40px;
  width: 40px;
  display: block;
  flex-shrink: 0;
  border-radius: 12px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--primary);
  background: rgba(26, 86, 219, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}

.lang-toggle button {
  border: none;
  background: transparent;
  padding: 6px 12px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--muted);
  transition: background 0.2s, color 0.2s;
}

.lang-toggle button.is-active {
  background: var(--primary);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  border: none;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(26, 86, 219, 0.06);
  box-shadow: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--nav-h);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(14, 165, 233, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(26, 86, 219, 0.12), transparent 55%),
    linear-gradient(180deg, #dbeafe 0%, var(--bg) 72%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - var(--nav-h));
  padding: 48px 0 64px;
}

.hero-copy {
  max-width: 520px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(26, 86, 219, 0.15);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  animation: fadeUp 0.7s ease both;
}

.hero-eyebrow img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  animation: fadeUp 0.7s ease 0.08s both;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 460px;
  animation: fadeUp 0.7s ease 0.16s both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.7s ease 0.24s both;
}

.store-badge {
  display: block;
  height: 52px;
  width: auto;
  transition: transform 0.2s ease;
}

.store-badge:hover {
  transform: scale(1.03);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  animation: fadeUp 0.9s ease 0.2s both;
}

.hero-visual img {
  width: min(520px, 100%);
  filter: drop-shadow(var(--shadow));
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: 10% 0 0 10%;
  background: radial-gradient(circle, rgba(26, 86, 219, 0.15), transparent 70%);
  pointer-events: none;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.section-head p {
  color: var(--muted);
  margin: 0;
}

/* Benefits */
.benefit-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.benefit-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 16px;
}

.benefit-copy p {
  color: var(--muted);
  margin: 0 0 14px;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.benefit-card:hover {
  border-color: rgba(26, 86, 219, 0.35);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.06), rgba(14, 165, 233, 0.05));
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefit-card h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Download (legacy store cards — hero uses store badges) */
.download-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.download-copy h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin: 0 0 16px;
}

.download-copy p {
  color: var(--muted);
  margin: 0 0 14px;
}

.store-cards {
  display: grid;
  gap: 16px;
}

.store-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.store-card:hover {
  border-color: rgba(26, 86, 219, 0.35);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.store-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(26, 86, 219, 0.08);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 700;
}

.store-icon-apple::before {
  content: '';
  width: 18px;
  height: 22px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23000' d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25-2.4 42.7-16.9 75.5-16.9 31.9 0 48.2 16.9 76.4 16.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.4-61.7-90.9-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23000' d='M318.7 268.7c-.2-36.7 16.4-64.4 50-84.8-18.8-26.9-47.2-41.7-84.7-44.6-35.5-2.8-74.3 20.7-88.5 20.7-15 0-49.4-19.7-76.4-19.7C63.3 141.2 4 184.8 4 273.5q0 39.3 14.4 81.2c12.8 36.7 59 126.7 107.2 125.2 25-2.4 42.7-16.9 75.5-16.9 31.9 0 48.2 16.9 76.4 16.9 48.6-.7 90.4-82.5 102.6-119.3-65.2-30.4-61.7-90.9-61.7-91.9zm-56.6-164.2c27.3-32.4 24.8-61.9 24-72.5-24.1 1.4-52 16.4-67.9 34.9-17.5 19.8-27.8 44.3-25.6 71.9 26.1 2 49.9-11.4 69.5-34.3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.store-card h4 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.store-card .store-badge {
  height: 44px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.process-step {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.process-step .step-num {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
}

.process-step h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0 0 10px;
  font-weight: 700;
  font-family: var(--font-display);
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  text-align: left;
}

/* Use cases & sharing */
.bvg-showcase-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 0 auto 56px;
}

.bvg-showcase {
  text-align: center;
  padding: 32px 28px;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.08), rgba(14, 165, 233, 0.06));
  border: 1px solid rgba(26, 86, 219, 0.15);
  border-radius: 20px;
}

.bvg-showcase-private {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.06), rgba(26, 86, 219, 0.08));
  border-color: rgba(15, 23, 42, 0.12);
}

.bvg-showcase-badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(26, 86, 219, 0.12);
}

.bvg-showcase-private .bvg-showcase-badge {
  color: #334155;
  background: rgba(15, 23, 42, 0.1);
}

.bvg-showcase-code {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.bvg-showcase-code .bvg-letters {
  color: var(--primary);
}

.bvg-showcase-code .bvg-digits {
  color: var(--accent);
}

.bvg-showcase-private .bvg-showcase-code .bvg-letters {
  color: #1e293b;
}

.bvg-showcase-private .bvg-showcase-code .bvg-digits {
  color: #475569;
}

.bvg-showcase p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 720px) {
  .bvg-showcase-row {
    grid-template-columns: 1fr;
  }
}

.subsection-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.subsection-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  margin: 0 0 10px;
}

.subsection-head p {
  margin: 0;
  color: var(--muted);
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}

.share-card,
.usecase-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.share-card:hover,
.usecase-card:hover {
  border-color: rgba(26, 86, 219, 0.3);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  transform: translateY(-2px);
}

.share-icon,
.usecase-icon {
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  flex-shrink: 0;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(26, 86, 219, 0.06), rgba(14, 165, 233, 0.05));
  display: block;
  margin-bottom: 14px;
}

.share-icon img,
.usecase-icon img {
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  object-fit: cover;
  display: block;
}

.share-card h4,
.usecase-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.share-card p,
.usecase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.usecase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.usecase-emergency {
  border-color: rgba(239, 68, 68, 0.25);
  background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
}

.usecase-emergency .usecase-icon {
  background: rgba(239, 68, 68, 0.12);
}

/* How it works (legacy blocks — kept for compatibility) */
.hiw-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.hiw-block:last-child {
  margin-bottom: 0;
}

.hiw-block.reverse .hiw-media {
  order: -1;
}

.hiw-media img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.hiw-text h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 16px;
}

.hiw-text p {
  color: var(--muted);
  margin: 0 0 14px;
}

.hiw-text p:last-child {
  margin-bottom: 0;
}

.hiw-text img.inline-icon {
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(26, 86, 219, 0.08);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item .faq-body {
  padding: 0 22px 18px;
  color: var(--muted);
}

.faq-item .faq-body p {
  margin: 0;
}

/* Footer */
.site-footer {
  background: #0b1220;
  color: #cbd5e1;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .brand-name {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.footer-brand p {
  margin: 0;
  color: #94a3b8;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.footer-links a {
  color: #cbd5e1;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: rgba(26, 86, 219, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  color: #64748b;
}

.footer-bottom a {
  color: #94a3b8;
}

.footer-bottom a:hover {
  color: #fff;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 90;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .benefit-grid,
  .download-grid,
  .hiw-block,
  .share-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: center;
    order: -1;
  }

  .hero-visual img {
    width: min(380px, 90vw);
  }

  .hero-copy {
    text-align: center;
    max-width: none;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .benefit-copy {
    text-align: center;
  }

  .hiw-block.reverse .hiw-media {
    order: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 768px) and (max-width: 960px) {
  .share-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    padding: 16px 24px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .nav-actions .btn-outline {
    display: none;
  }

  .section {
    padding: 64px 0;
  }
}
