/* ============================================================
   Apartik Landing — Design System
   ============================================================ */

/* --- Tokens ------------------------------------------------- */
:root {
  --brand:        #1a2b4a;
  --brand-dark:   #111e35;
  --brand-mid:    #263c63;
  --accent:       #2f6df6;
  --accent-hover: #1a57e0;
  --gold:         #c9a227;
  --bg:           #ffffff;
  --surface:      #f6f8fb;
  --surface-2:    #eef2f8;
  --text:         #1b2733;
  --muted:        #5b6b7b;
  --border:       rgba(26,43,74,.12);
  --radius:       14px;
  --radius-sm:    8px;
  --radius-lg:    24px;
  --shadow:       0 10px 30px rgba(16,32,64,.08);
  --shadow-lg:    0 20px 50px rgba(16,32,64,.13);
  --shadow-card:  0 4px 16px rgba(16,32,64,.07);
  --maxw:         1140px;
  --nav-h:        68px;
}

/* --- Reset & Base ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* --- Layout helpers ----------------------------------------- */
.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section-pad {
  padding-block: clamp(56px, 8vw, 96px);
}

/* --- Typography -------------------------------------------- */
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; line-height: 1.18; letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.25; letter-spacing: -.015em; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--muted); }

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

.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-header h2 { margin-bottom: 14px; }
.section-header p  { font-size: 1.05rem; }

/* --- Buttons ----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .75em 1.6em;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(47,109,246,.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(47,109,246,.45);
}

.btn-outline {
  background: transparent;
  color: var(--brand);
  box-shadow: inset 0 0 0 2px var(--brand);
}
.btn-outline:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}

.btn-lg {
  padding: .9em 2.2em;
  font-size: 1.05rem;
}

/* --- Navigation -------------------------------------------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--brand);
  flex-shrink: 0;
}

.nav-brand img {
  width: 36px;
  height: 36px;
}

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

.nav-links a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .2s ease;
}

.nav-links a:hover { color: var(--brand); }
.nav-links a:hover::after { width: 100%; }

.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-cta { margin-left: 8px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* --- Hero -------------------------------------------------- */
#hero {
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(47,109,246,.08) 0%, transparent 65%),
    linear-gradient(160deg, var(--brand) 0%, var(--brand-mid) 55%, #2a4a7f 100%);
  color: #fff;
  overflow: hidden;
  position: relative;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  padding-block: clamp(72px, 10vw, 116px);
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,162,39,.18);
  border: 1px solid rgba(201,162,39,.45);
  color: #f5d570;
  font-size: .82rem;
  font-weight: 600;
  padding: .38em .9em;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: .03em;
}

.hero-badge svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

.hero-content h1 { color: #fff; margin-bottom: 20px; }

.hero-content p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}

.hero-trust svg { width: 16px; height: 16px; fill: #f5d570; flex-shrink: 0; }

/* Product visual placeholder */
.hero-visual {
  position: relative;
}

.product-mockup {
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(4px);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.1);
}

.mockup-bar {
  background: rgba(255,255,255,.1);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
}

.mockup-dot:nth-child(1) { background: #ff5f57; }
.mockup-dot:nth-child(2) { background: #febc2e; }
.mockup-dot:nth-child(3) { background: #28c840; }

.mockup-url {
  flex: 1;
  height: 22px;
  background: rgba(255,255,255,.1);
  border-radius: 50px;
  max-width: 280px;
  margin: 0 auto;
}

.mockup-body {
  flex: 1;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
}

.mockup-sidebar {
  background: rgba(26,43,74,.6);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mockup-nav-item {
  height: 28px;
  background: rgba(255,255,255,.08);
  border-radius: 6px;
}

.mockup-nav-item.active {
  background: rgba(47,109,246,.5);
}

.mockup-content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mockup-stat {
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  height: 52px;
}

.mockup-chart {
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  flex: 1;
  min-height: 60px;
  position: relative;
  overflow: hidden;
}

.mockup-chart::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(47,109,246,.3), transparent);
  border-radius: 0 0 8px 8px;
}

.mockup-table {
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  height: 48px;
}

.mockup-label {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  white-space: nowrap;
}

/* --- Features section --------------------------------------- */
#ozellikler { background: var(--surface); }

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

.feature-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.feature-card h3 { color: var(--text); margin-bottom: 10px; }

/* --- Screenshots section ----------------------------------- */
#ekranlar { background: var(--bg); }

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

.screenshot-placeholder {
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}

.screenshot-placeholder:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.screenshot-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.screenshot-bg svg {
  width: 36px;
  height: 36px;
  opacity: .7;
}

.screenshot-bg span {
  font-size: .82rem;
  font-weight: 600;
  color: #fff;
  opacity: .85;
  text-align: center;
  padding: 0 16px;
}

.screenshot-caption {
  margin-top: 16px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
}

.screenshot-caption small {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 400;
}

/* --- Pricing section --------------------------------------- */
#fiyatlar { background: var(--surface); }

.pricing-note {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(47,109,246,.1), rgba(201,162,39,.1));
  border: 1px solid rgba(47,109,246,.2);
  color: var(--accent);
  font-size: .9rem;
  font-weight: 600;
  padding: .5em 1.2em;
  border-radius: 50px;
}

.pricing-note svg { width: 16px; height: 16px; fill: var(--gold); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--accent);
  border-width: 2px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(47,109,246,.15);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), #1a57e0);
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4em 1em;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(47,109,246,.4);
}

.plan-name {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.plan-price {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.plan-period {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .93rem;
  color: var(--text);
}

.plan-features li svg {
  width: 18px;
  height: 18px;
  fill: #22c55e;
  flex-shrink: 0;
  margin-top: 2px;
}

.plan-features li.disabled { color: var(--muted); }
.plan-features li.disabled svg { fill: #cbd5e1; }

.plan-cta { width: 100%; justify-content: center; }

/* --- Demo section ------------------------------------------ */
#demo {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-mid) 50%, #2a4a7f 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

#demo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.demo-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.demo-inner h2 { color: #fff; margin-bottom: 16px; }

.demo-inner > p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.demo-trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 36px;
  margin-bottom: 48px;
}

.demo-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}

.demo-trust-item svg {
  width: 18px;
  height: 18px;
  fill: #f5d570;
  flex-shrink: 0;
}

.demo-form-container {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  text-align: left;
  backdrop-filter: blur(8px);
}

/* --- Demo Form fields --------------------------------------- */
#demoForm {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field label {
  font-size: .88rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}

.field input {
  width: 100%;
  padding: .7em 1em;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: #fff;
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s ease, background .2s ease;
  outline: none;
}

.field input::placeholder {
  color: rgba(255,255,255,.4);
}

.field input:focus {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.15);
}

#demoForm .btn-primary {
  align-self: flex-start;
  margin-top: 4px;
}

#demoForm .btn-primary:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-msg {
  font-size: .92rem;
  font-weight: 500;
  min-height: 1.4em;
  margin-top: 4px;
}

.form-msg.success {
  color: #86efac; /* green-300 — legible on dark bg */
}

.form-msg.error {
  color: #fca5a5; /* red-300 — legible on dark bg */
}

/* --- Footer ------------------------------------------------ */
footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,.7);
  padding-block: 48px 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand img { width: 32px; height: 32px; }

.footer-brand-col p {
  font-size: .9rem;
  max-width: 260px;
  line-height: 1.55;
}

.footer-nav h4 {
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.footer-nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer-nav a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s ease;
}
.footer-nav a:hover { color: #fff; }
.footer-nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

.footer-contact h4 {
  color: #fff;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.footer-contact a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color .2s ease;
}
.footer-contact a:hover { color: #fff; }
.footer-contact a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .87rem;
}

.footer-bottom a {
  color: rgba(255,255,255,.5);
  transition: color .2s ease;
}
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   Responsive — mobile-first breakpoints
   ============================================================ */

/* ---- ≤ 1024px: constrain features grid to 2 cols ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: scale(1); }
  .pricing-card.featured:hover { transform: translateY(-4px); }
}

/* ---- ≤ 840px: single column everything ------------------- */
@media (max-width: 840px) {
  /* Nav */
  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: var(--shadow);
    z-index: 99;
  }

  .nav-menu.open .nav-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .nav-menu.open .nav-cta {
    align-self: center;
  }

  .nav-toggle { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero-content p { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }

  .hero-visual { max-width: 480px; margin-inline: auto; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Screenshots */
  .screenshots-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .popular-badge { top: -14px; }

  /* Demo */
  .demo-form-container { padding: 28px 24px; }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ---- ≤ 480px: tiny screens -------------------------------- */
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }

  .mockup-body { grid-template-columns: 100px 1fr; }
  .mockup-sidebar { padding: 10px 8px; }
}
