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

:root {
  --bg: #f6f8fb;
  --white: #ffffff;
  --primary: #0b1320;
  --secondary: #0ea672;
  --accent: #2563eb;
  --light: #eaf2ff;
  --text: #111827;
  --muted: #64748b;
  --border: #e2e8f0;
  --shadow: 0 24px 70px rgba(11, 19, 32, 0.14);
  --soft-shadow: 0 18px 42px rgba(11, 19, 32, 0.09);
  --radius: 8px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(246, 248, 251, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 28px;
  min-height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
}

.brand {
  font-family: "Sora", Arial, sans-serif;
  font-weight: 800;
  font-size: 1.22rem;
  color: var(--primary);
  white-space: nowrap;
}

.brand span {
  color: var(--secondary);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #273344;
  font-weight: 700;
  font-size: 0.93rem;
}

.desktop-nav a {
  position: relative;
  padding: 30px 0;
}

.desktop-nav a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 22px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(14, 166, 114, 0.45);
  box-shadow: 0 14px 32px rgba(11, 19, 32, 0.12);
}

.icon-btn svg,
.social svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  min-height: 54px;
  padding: 0 28px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.nav-cta,
.btn-primary {
  background: linear-gradient(135deg, #07101d 0%, #0b1320 58%, #10233d 100%);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(11, 19, 32, 0.24);
}

.nav-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  background: #172235;
  box-shadow: 0 24px 44px rgba(11, 19, 32, 0.25);
}

.btn-secondary {
  background: linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  color: var(--primary);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: 0 16px 30px rgba(11, 19, 32, 0.12);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  color: var(--secondary);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.76);
  color: var(--primary);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(11, 19, 32, 0.07);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.mobile-toggle,
.mobile-only {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(92vw, 390px);
  z-index: 90;
  padding: 94px 24px 28px;
  background: var(--primary);
  color: var(--white);
  transform: translateX(105%);
  transition: transform 260ms ease;
  box-shadow: -22px 0 60px rgba(0, 0, 0, 0.28);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: "Sora", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
}

.mobile-menu .btn {
  width: 100%;
  margin-top: 24px;
  background: linear-gradient(135deg, var(--secondary), #1bc786);
  color: var(--white);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(11, 19, 32, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  min-height: min(820px, calc(100vh - 78px));
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero.compact {
  min-height: 560px;
}

.hero::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 12, 22, 0.9) 0%, rgba(6, 12, 22, 0.68) 42%, rgba(6, 12, 22, 0.18) 100%);
  z-index: 1;
}

.hero-img {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 96px 28px 58px;
}

.hero-inner {
  max-width: 850px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", Arial, sans-serif;
  color: var(--primary);
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1,
.cta-banner h2 {
  color: var(--white);
}

h1 {
  font-size: clamp(2.1rem, 5.5vw, 5.15rem);
  max-width: 1080px;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 710px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-buttons,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-metrics {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 190px));
  gap: 12px;
}

.metric-tile {
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.metric-tile strong {
  display: block;
  font-family: "Sora", Arial, sans-serif;
  font-size: 1.35rem;
}

.metric-tile span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.section {
  padding: 86px 28px;
}

.section.dark {
  background: var(--primary);
  color: var(--white);
}

.section.dark h2,
.section.dark h3 {
  color: var(--white);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 34px;
}

.section-head.center {
  display: block;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 38px;
}

.section-kicker {
  color: var(--secondary);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.section p,
.page-copy {
  color: var(--muted);
}

.section.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.lead {
  font-size: 1.08rem;
  max-width: 650px;
  margin: 14px 0 0;
}

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

.image-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  isolation: isolate;
}

.image-card.tall {
  min-height: 460px;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 32, 0.04) 0%, rgba(11, 19, 32, 0.88) 100%);
  z-index: 1;
}

.image-card img,
.article-card img,
.service-card img,
.feature-media img {
  transition: transform 420ms ease;
}

.image-card:hover img,
.article-card:hover img,
.service-card:hover img,
.feature-media:hover img {
  transform: scale(1.045);
}

.card-content {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--white);
}

.card-content h3 {
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.card-content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 22px;
}

.feature-story {
  position: relative;
  min-height: 610px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-story::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 19, 32, 0.08) 0%, rgba(11, 19, 32, 0.92) 100%);
}

.feature-story .card-content {
  bottom: 34px;
  left: 34px;
  right: 34px;
}

.feature-story h3 {
  font-size: clamp(2rem, 3.8vw, 4.2rem);
}

.insight-stack {
  display: grid;
  gap: 18px;
}

.mini-insight {
  display: grid;
  grid-template-columns: 150px 1fr;
  min-height: 180px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(11, 19, 32, 0.06);
}

.mini-insight div:last-child {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--light);
  color: var(--accent);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mini-insight h3,
.service-card h3,
.article-card h3,
.stat-card h3 {
  font-size: 1.18rem;
  line-height: 1.2;
}

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

.service-card,
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(11, 19, 32, 0.06);
}

.service-card .media,
.article-card .media {
  height: 230px;
  overflow: hidden;
}

.service-card .body,
.article-card .body {
  padding: 24px;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--secondary);
  font-weight: 900;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-card {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  border-radius: var(--radius);
}

.stat-card strong {
  display: block;
  margin-bottom: 16px;
  font-family: "Sora", Arial, sans-serif;
  color: var(--secondary);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
}

.split-feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
}

.feature-copy {
  padding: 20px 0;
}

.feature-copy h2 {
  max-width: 560px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  border-left: 3px solid var(--secondary);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(11, 19, 32, 0.05);
  font-weight: 800;
}

.feature-media {
  min-height: 580px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

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

.article-card .media {
  height: 210px;
}

.article-card p,
.service-card p,
.mini-insight p {
  margin: 10px 0 0;
  color: var(--muted);
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 320ms ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.testimonial-card p {
  margin: 0;
  color: var(--primary);
  font-family: "Sora", Arial, sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2.5rem);
  line-height: 1.22;
}

.testimonial-card cite {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.slider-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.newsletter {
  background: var(--white);
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--soft-shadow);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  min-width: min(500px, 100%);
}

.newsletter-form input,
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--primary);
  border-radius: 999px;
  min-height: 52px;
  padding: 0 18px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  border-radius: var(--radius);
  padding: 16px 18px;
  min-height: 150px;
  resize: vertical;
}

.newsletter-form input:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.cta-banner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
}

.cta-banner img {
  min-height: 500px;
}

.cta-content {
  align-self: center;
  max-width: 760px;
  width: 100%;
  padding: 80px clamp(28px, 5vw, 74px);
}

.cta-content h2 {
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  max-width: 850px;
}

.cta-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background: #07101d;
  color: var(--white);
  padding: 62px 28px 32px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.45fr repeat(5, 1fr);
  gap: 30px;
}

.footer-grid h3,
.footer-grid h4 {
  color: var(--white);
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.66);
}

.footer-grid a {
  display: block;
  margin-top: 10px;
}

.footer-grid a:hover {
  color: var(--secondary);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.social {
  position: relative;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.78);
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.social svg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  transform: translate(-50%, -50%);
}

.social:hover {
  transform: translateY(-2px);
  color: var(--white);
  border-color: rgba(14, 166, 114, 0.55);
  background: rgba(14, 166, 114, 0.12);
}

.footer-bottom {
  max-width: var(--max);
  margin: 44px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

.page-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.page-band .feature-media {
  min-height: 480px;
}

.pricing-grid,
.values-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.price-card,
.value-card,
.contact-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(11, 19, 32, 0.06);
}

.price {
  margin: 18px 0;
  font-family: "Sora", Arial, sans-serif;
  color: var(--primary);
  font-size: 2.4rem;
  font-weight: 800;
}

.price span {
  font-family: "Inter", Arial, sans-serif;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .desktop-user,
  .nav-cta {
    display: none;
  }

  .mobile-toggle,
  .mobile-only {
    display: inline-flex;
  }

  .nav-shell {
    display: flex;
    justify-content: space-between;
    min-height: 66px;
    padding: 0 18px;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .nav-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .hero {
    min-height: 700px;
  }

  .cta-banner {
    grid-template-columns: 1fr;
  }

  .cta-banner img {
    min-height: 360px;
  }

  .category-grid,
  .service-grid,
  .pricing-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial-grid,
  .split-feature,
  .page-band,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand {
    font-size: clamp(1rem, 4.6vw, 1.16rem);
    flex: 0 1 auto;
    max-width: calc(100vw - 136px);
    overflow: hidden;
    text-overflow: clip;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .section {
    padding: 62px 18px;
  }

  .hero {
    min-height: 650px;
  }

  .hero.compact {
    min-height: 500px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(6, 12, 22, 0.4) 0%, rgba(6, 12, 22, 0.92) 100%);
  }

  .hero-content {
    padding: 74px 18px 36px;
    min-width: 0;
  }

  .hero-inner {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2rem, 8.5vw, 2.75rem);
  }

  .hero p {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .hero-buttons,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .hero-buttons .btn,
  .section-actions .btn {
    width: 100%;
  }

  .trust-metrics,
  .category-grid,
  .service-grid,
  .dashboard-grid,
  .article-grid,
  .pricing-grid,
  .values-grid,
  .contact-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-metrics {
    margin-top: 34px;
    max-width: 100%;
  }

  .section-head {
    display: block;
  }

  .section-actions {
    margin-top: 20px;
  }

  .image-card,
  .image-card.tall,
  .feature-story,
  .feature-media,
  .page-band .feature-media {
    min-height: 360px;
  }

  .feature-story .card-content {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .mini-insight {
    grid-template-columns: 1fr;
  }

  .mini-insight .media {
    height: 190px;
  }

  .newsletter-box,
  .testimonial-card,
  .contact-form {
    padding: 24px;
  }

  .newsletter-form {
    display: grid;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    text-align: left;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    text-align: center;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }

  .footer-grid h4 {
    font-size: 0.98rem;
  }

  .footer-grid p {
    margin: 10px 0 0;
  }

  .footer-grid a {
    margin-top: 7px;
    font-size: 0.94rem;
    overflow-wrap: anywhere;
  }

  .social-row {
    justify-content: center;
    margin-top: 16px;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
  }

  .mobile-menu {
    width: 100vw;
    padding: 88px 26px 28px;
  }

  .cta-content {
    padding: 56px 18px;
  }

  .cta-content h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }
}

@media (max-width: 380px) {
  .nav-shell {
    padding: 0 12px;
    gap: 8px;
    max-width: 100%;
  }

  .brand {
    font-size: 0.95rem;
    max-width: calc(100vw - 104px);
  }

  .nav-actions {
    gap: 6px;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
  }

  .btn {
    padding: 0 18px;
  }
}
