:root {
  --ink: #061724;
  --navy: #092235;
  --navy-2: #0d3047;
  --steel: #9fb1bf;
  --mist: #eef5f8;
  --white: #ffffff;
  --silver: #dfe7ec;
  --line: rgba(255, 255, 255, 0.16);
  --accent: #4cc9d8;
  --gold: #d4aa55;
  --shadow: 0 24px 70px rgba(3, 18, 30, 0.22);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: #14212b;
  background: #f6fafc;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 23, 36, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

.brand-text {
  display: grid;
  color: var(--white);
  line-height: 1.1;
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0;
}

.brand-kicker {
  color: var(--silver);
  font-size: 12px;
  white-space: nowrap;
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: grid;
  place-items: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.nav-toggle.is-open span {
  background: transparent;
}

.nav-toggle.is-open span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-open span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-links {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 78px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(6, 23, 36, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
}

.nav-links.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.nav-links a {
  color: var(--silver);
  padding: 12px 12px;
  border-radius: 8px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  display: none;
}

.mobile-bottom-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  padding: 8px;
  background: rgba(6, 23, 36, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.mobile-bottom-nav a {
  color: var(--silver);
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 7px 4px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
}

.mobile-bottom-nav .nav-symbol {
  font-size: 15px;
  line-height: 1;
}

.mobile-bottom-nav a.active,
.mobile-bottom-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(76, 201, 216, 0.2), transparent 26%),
    radial-gradient(circle at 82% 14%, rgba(212, 170, 85, 0.14), transparent 24%),
    linear-gradient(135deg, #061724 0%, #092235 48%, #0f3a54 100%);
}

.hero-photo-strip {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.94;
}

.hero-photo-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 36, 0.97) 0%, rgba(6, 23, 36, 0.84) 36%, rgba(6, 23, 36, 0.42) 66%, rgba(6, 23, 36, 0.12) 100%),
    linear-gradient(180deg, rgba(6, 23, 36, 0.1), rgba(6, 23, 36, 0.58));
}

.hero-photo-track {
  position: absolute;
  top: 50%;
  right: -4%;
  display: flex;
  gap: 18px;
  width: max-content;
  transform: translateY(-50%);
  animation: legalPhotoSlide 32s linear infinite;
}

.hero-photo-track img {
  width: 286px;
  height: 410px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.36);
  filter: saturate(0.92) contrast(1.04);
  opacity: 0.96;
  transform: rotate(-2.5deg);
}

.hero-photo-track img:nth-child(2n) {
  transform: translateY(26px) rotate(2deg);
}

.hero-photo-track img:nth-child(3n) {
  transform: translateY(-20px) rotate(-1deg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(246, 250, 252, 0.96));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 54px 18px 120px;
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-grid {
  display: grid;
  gap: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 10px;
  color: #d9f9fd;
  background: rgba(76, 201, 216, 0.12);
  border: 1px solid rgba(76, 201, 216, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}

.hero h1,
.page-hero h1 {
  margin: 16px 0 16px;
  max-width: 790px;
  font-size: clamp(38px, 8vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  color: #d8e4ea;
  max-width: 640px;
  font-size: 17px;
}

.hero .eyebrow {
  color: #d9f9fd;
  background: rgba(76, 201, 216, 0.12);
  border-color: rgba(76, 201, 216, 0.28);
}

.hero .btn-primary {
  color: #061724;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.16);
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #061724;
  background: var(--white);
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.16);
}

.btn-accent {
  color: #061724;
  background: linear-gradient(135deg, #6be3ef, #d8fbff);
  box-shadow: 0 18px 34px rgba(76, 201, 216, 0.22);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 16px 36px rgba(9, 34, 53, 0.22);
}

.btn-small {
  min-height: 38px;
  padding: 9px 12px;
  font-size: 13px;
}

.hero-panel {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
}

.phone-frame {
  position: relative;
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  animation: floatCard 5s ease-in-out infinite;
}

.phone-screen {
  overflow: hidden;
  min-height: 520px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  color: #132432;
}

.app-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(135deg, #061724, #0d3047);
}

.app-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.app-title {
  margin: 0;
  font-size: 16px;
  font-weight: 900;
}

.app-subtitle {
  margin: 0;
  color: #cddae1;
  font-size: 12px;
}

.status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #65e6a5;
  box-shadow: 0 0 0 8px rgba(101, 230, 165, 0.13);
}

.hero-slider {
  position: relative;
  min-height: 292px;
  padding: 20px;
}

.slide {
  position: absolute;
  inset: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
  opacity: 0;
  transform: translateX(24px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.24;
  transform: scale(1.08);
  pointer-events: none;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 58%, rgba(255, 255, 255, 0.62) 100%);
  pointer-events: none;
}

.slide-content,
.slide-stat {
  position: relative;
  z-index: 2;
}

.slide.active {
  z-index: 2;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.slide-label {
  width: fit-content;
  padding: 6px 9px;
  border-radius: 999px;
  color: #0c5360;
  background: #e7fbfd;
  font-size: 12px;
  font-weight: 900;
}

.slide h2 {
  margin: 12px 0 8px;
  font-size: 24px;
  line-height: 1.08;
}

.slide p {
  margin: 0;
  color: #506170;
}

.slide-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 18px;
}

.mini-stat {
  padding: 11px 8px;
  border-radius: 8px;
  background: #f0f6f8;
  text-align: center;
}

.mini-stat strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1;
}

.mini-stat span {
  color: #607280;
  font-size: 10px;
  font-weight: 800;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 20px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b8c8d1;
}

.slider-dot.active {
  width: 22px;
  border-radius: 999px;
  background: var(--navy);
}

.quick-form-card {
  margin: 14px 16px 16px;
  padding: 16px;
  border-radius: 8px;
  background: #f0f6f8;
}

.quick-form-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.compact-fields {
  display: grid;
  gap: 9px;
}

.compact-fields input,
.compact-fields select,
.compact-fields textarea,
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid #d8e4ea;
  border-radius: 8px;
  padding: 12px 12px;
  background: var(--white);
  color: #132432;
  outline: none;
}

.compact-fields textarea,
.form-grid textarea {
  min-height: 104px;
  resize: vertical;
}

.compact-fields input:focus,
.compact-fields select:focus,
.compact-fields textarea:focus,
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(76, 201, 216, 0.16);
}

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  color: var(--navy);
  background: var(--white);
  border-top: 1px solid rgba(9, 34, 53, 0.08);
  border-bottom: 1px solid rgba(9, 34, 53, 0.08);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 26s linear infinite;
}

.ticker span {
  padding: 13px 22px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: 76px 18px;
}

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

.section.navy {
  color: var(--white);
  background:
    radial-gradient(circle at 16% 0%, rgba(76, 201, 216, 0.16), transparent 28%),
    linear-gradient(135deg, #061724, #0d3047);
}

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

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-head.center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  justify-items: center;
}

.section-kicker {
  color: #0b7582;
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
}

.navy .section-kicker {
  color: #90edf6;
}

.section h2,
.section-title {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.navy h2,
.navy .section-title {
  color: var(--white);
}

.section-head p {
  margin: 0;
  max-width: 740px;
  color: #516575;
  font-size: 16px;
}

.navy .section-head p {
  color: #d7e4ea;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card,
.review-card,
.lawyer-card,
.value-card,
.contact-card,
.feature-card,
.faq-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(9, 34, 53, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(9, 34, 53, 0.07);
}

.service-card {
  padding: 22px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(9, 34, 53, 0.13);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(var(--accent), var(--gold));
}

.service-icon,
.value-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  font-weight: 900;
}

.service-icon img,
.value-icon img {
  width: 28px;
  height: 28px;
}

.visual-grid {
  display: grid;
  gap: 16px;
}

.visual-card {
  display: grid;
  gap: 16px;
  align-content: space-between;
  padding: 16px;
  border: 1px solid rgba(9, 34, 53, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(9, 34, 53, 0.07);
}

.visual-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  background: var(--mist);
}

.visual-card h3 {
  margin: 0 0 6px;
  color: var(--navy);
}

.visual-card p {
  margin: 0;
  color: #536879;
}

.panel-graphic {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(9, 34, 53, 0.18);
}

.image-panel .large-logo + .panel-graphic {
  opacity: 0.24;
}

.service-card h3,
.lawyer-card h3,
.value-card h3,
.contact-card h3,
.feature-card h3,
.faq-card h3 {
  margin: 15px 0 8px;
  color: var(--navy);
  line-height: 1.2;
}

.service-card p,
.lawyer-card p,
.value-card p,
.contact-card p,
.feature-card p,
.faq-card p {
  margin: 0;
  color: #536879;
}

.service-card .card-link {
  display: inline-flex;
  margin-top: 16px;
  color: #075e68;
  font-weight: 900;
}

.stats-band {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.stat-tile {
  padding: 22px;
  border: 1px solid rgba(9, 34, 53, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.stat-tile strong {
  display: block;
  color: var(--navy);
  font-size: 30px;
  line-height: 1;
}

.stat-tile span {
  display: block;
  margin-top: 7px;
  color: #607280;
  font-weight: 800;
  font-size: 13px;
}

.split {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-showcase-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 248, 0.98)),
    var(--white);
}

.about-showcase {
  display: grid;
  gap: 26px;
  align-items: stretch;
}

.about-story {
  padding: 28px;
  border: 1px solid rgba(9, 34, 53, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(9, 34, 53, 0.08);
}

.about-story h2 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.06;
}

.about-story p {
  color: #536879;
}

.about-proof-grid {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.about-proof-grid div {
  padding: 15px;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  background: #f0f7fa;
}

.about-proof-grid strong {
  display: block;
  color: var(--navy);
  font-size: 22px;
  line-height: 1;
}

.about-proof-grid span {
  display: block;
  margin-top: 7px;
  color: #536879;
  font-size: 13px;
  font-weight: 800;
}

.about-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.about-visual-main {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  opacity: 0.8;
}

.about-team-stack {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.about-team-stack img {
  width: 100%;
  height: 142px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid rgba(255, 255, 255, 0.75);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.about-team-stack img:first-child {
  object-position: center center;
}

.about-brief-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(6, 23, 36, 0.86);
  backdrop-filter: blur(14px);
}

.about-brief-card span {
  display: block;
  color: #90edf6;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-brief-card strong {
  display: block;
  margin-top: 8px;
  line-height: 1.35;
}

.image-panel {
  position: relative;
  min-height: 430px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(6, 23, 36, 0.1), rgba(76, 201, 216, 0.1)),
    #eaf2f6;
  box-shadow: var(--shadow);
}

.image-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(9, 34, 53, 0.12);
  border-radius: 8px;
}

.image-panel .large-logo {
  position: absolute;
  width: 56%;
  max-width: 310px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(9, 34, 53, 0.28);
}

.orbit-card {
  position: absolute;
  width: 170px;
  padding: 14px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(6, 23, 36, 0.9);
  box-shadow: 0 18px 44px rgba(9, 34, 53, 0.24);
  animation: floatCard 5.5s ease-in-out infinite;
}

.orbit-card.top {
  top: 34px;
  right: 24px;
}

.orbit-card.bottom {
  left: 24px;
  bottom: 34px;
  animation-delay: -2s;
}

.orbit-card strong {
  display: block;
  font-size: 22px;
}

.orbit-card span {
  color: var(--silver);
  font-size: 12px;
  font-weight: 800;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #061724;
  background: linear-gradient(135deg, #d9fbff, #ffffff);
  font-weight: 900;
}

.step h3 {
  margin: 0 0 5px;
  color: var(--white);
}

.step p {
  margin: 0;
  color: #d4e2e9;
}

.lawyer-grid,
.review-grid,
.value-grid,
.contact-grid,
.feature-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.lawyer-card {
  padding: 0;
}

.lawyer-photo-wrap {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  background:
    linear-gradient(135deg, rgba(6, 23, 36, 0.08), rgba(76, 201, 216, 0.1)),
    var(--mist);
}

.lawyer-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.lawyer-card:hover .lawyer-photo {
  transform: scale(1.04);
}

.lawyer-photo-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(6, 23, 36, 0.72));
  pointer-events: none;
}

.lawyer-role {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #061724;
  background: linear-gradient(135deg, #d8fbff, #ffffff);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 900;
}

.lawyer-content {
  padding: 20px;
}

.lawyer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 15px;
}

.lawyer-tags span {
  padding: 7px 9px;
  border-radius: 999px;
  color: #0c5360;
  background: #e7fbfd;
  font-size: 11px;
  font-weight: 900;
}

.team-ankaj .lawyer-photo {
  object-position: center center;
}

.team-abhay .lawyer-photo {
  object-position: center 28%;
}

.team-shubhika .lawyer-photo {
  object-position: center top;
}

.team-abhay .lawyer-photo {
  object-fit: cover;
  background: var(--mist);
}

.lawyer-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(76, 201, 216, 0.32), transparent),
    var(--navy);
  font-weight: 900;
  font-size: 22px;
}

.lawyer-meta {
  display: inline-flex;
  margin-top: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #0c5360;
  background: #e7fbfd;
  font-size: 12px;
  font-weight: 900;
}

.review-card {
  padding: 22px;
}

.stars {
  color: #c18c28;
  font-weight: 900;
}

.review-card blockquote {
  margin: 12px 0 16px;
  color: #2b3b47;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 900;
}

.reviewer span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--navy);
}

.cta-band {
  padding: 26px;
  border-radius: 8px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 0%, rgba(76, 201, 216, 0.2), transparent 28%),
    linear-gradient(135deg, #061724, #103b55);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: 0 0 10px;
  color: var(--white);
}

.cta-band p {
  margin: 0;
  color: #d4e2e9;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(76, 201, 216, 0.18), transparent 26%),
    linear-gradient(135deg, #061724, #0d3047);
}

.page-hero-inner {
  position: relative;
  z-index: 3;
  max-width: var(--max);
  margin: 0 auto;
  padding: 74px 18px;
}

.page-hero p {
  max-width: 740px;
  margin: 0;
  color: #d4e2e9;
  font-size: 17px;
}

.value-card,
.feature-card,
.contact-card,
.faq-card {
  padding: 22px;
}

.service-list {
  display: grid;
  gap: 14px;
}

.service-media {
  display: block;
  width: 64px;
}

.service-media img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(9, 34, 53, 0.12);
}

.service-detail {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(9, 34, 53, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(9, 34, 53, 0.06);
}

.service-detail > .btn {
  justify-self: start;
}

.service-detail h2 {
  margin: 0;
  font-size: 25px;
  color: var(--navy);
}

.service-detail p {
  margin: 0;
  color: #536879;
}

.service-points {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-points li {
  position: relative;
  padding-left: 24px;
  color: #334957;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.contact-hero-card {
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-illustration {
  width: 100%;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(9, 34, 53, 0.14);
}

.blog-hero,
.admin-hero {
  background:
    radial-gradient(circle at 82% 10%, rgba(76, 201, 216, 0.18), transparent 26%),
    linear-gradient(135deg, #061724, #0d3047);
}

.blog-search-bar {
  display: grid;
  gap: 12px;
  max-width: 720px;
  margin-top: 26px;
}

.blog-search-bar input {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.blog-search-bar input::placeholder {
  color: #c8d9e1;
}

.blog-toolbar {
  display: grid;
  gap: 18px;
  align-items: end;
  margin-bottom: 24px;
}

.blog-toolbar h2 {
  margin: 4px 0 0;
  color: var(--navy);
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-filter {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(9, 34, 53, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
}

.blog-filter.active,
.blog-filter:hover {
  color: var(--white);
  background: var(--navy);
}

.blog-grid {
  display: grid;
  gap: 14px;
}

.blog-featured-card,
.blog-card,
.blog-reader-card,
.admin-sidebar,
.admin-editor {
  overflow: hidden;
  border: 1px solid rgba(9, 34, 53, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(9, 34, 53, 0.08);
}

.blog-featured-card {
  display: grid;
}

.blog-featured-card img,
.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--navy);
}

.blog-card-body {
  padding: 22px;
  border-top: 4px solid var(--post-accent);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #607280;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2,
.blog-featured-card h2 {
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.1;
}

.blog-card p,
.blog-featured-card p {
  color: #536879;
}

.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.blog-card-footer span {
  color: var(--navy);
  font-weight: 900;
}

.blog-card-footer button,
.blog-read-link,
.blog-reader-close {
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  padding: 10px 12px;
  font-weight: 900;
  text-decoration: none;
}

.blog-reader {
  margin-top: 28px;
}

.blog-reader-card {
  position: relative;
  display: grid;
}

.blog-reader-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-reader-copy {
  padding: 26px;
  border-top: 4px solid var(--post-accent);
}

.blog-reader-copy h2 {
  margin: 14px 0;
  color: var(--navy);
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.08;
}

.blog-reader-excerpt {
  color: #536879;
  font-size: 18px;
}

.blog-reader-content p {
  color: #334957;
}

.blog-reader-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.empty-blog-state {
  padding: 30px;
  border: 1px dashed rgba(9, 34, 53, 0.18);
  border-radius: 8px;
  color: #536879;
  background: var(--white);
  text-align: center;
  font-weight: 900;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.single-post-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.single-post-card {
  overflow: hidden;
  border: 1px solid rgba(9, 34, 53, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(9, 34, 53, 0.1);
}

.single-post-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  background: var(--navy);
}

.single-post-body {
  padding: clamp(24px, 5vw, 48px);
  border-top: 5px solid var(--post-accent);
}

.single-post-body .blog-reader-content {
  max-width: 820px;
}

.single-post-body .blog-reader-content p {
  font-size: 17px;
  line-height: 1.78;
}

.single-post-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.admin-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

[data-admin-panel][hidden],
[data-admin-lock][hidden] {
  display: none !important;
}

.admin-lock-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(9, 34, 53, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 251, 252, 0.92)),
    url("https://images.pexels.com/photos/6077091/pexels-photo-6077091.jpeg?auto=compress&cs=tinysrgb&w=900") center/cover;
  box-shadow: 0 18px 48px rgba(9, 34, 53, 0.12);
}

.admin-lock-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--teal));
  box-shadow: 0 16px 32px rgba(9, 34, 53, 0.18);
  font-weight: 900;
}

.admin-lock-card h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(28px, 5vw, 46px);
  line-height: 1.05;
}

.admin-lock-card p {
  max-width: 620px;
  color: #536879;
}

.admin-password-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.admin-password-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.admin-password-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #d8e4ea;
  border-radius: 8px;
  padding: 13px 14px;
  color: #132432;
  background: var(--white);
}

.admin-password-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: #b54708 !important;
  font-weight: 900;
}

.admin-sidebar,
.admin-editor {
  padding: 20px;
}

.admin-sidebar-top,
.admin-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-sidebar h2,
.admin-editor h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: 26px;
}

.admin-post-list {
  display: grid;
  gap: 10px;
}

.admin-post-row {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(9, 34, 53, 0.1);
  border-radius: 8px;
  background: #f7fbfc;
}

.admin-post-row.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(76, 201, 216, 0.12);
}

.admin-post-row button {
  border: 0;
  border-radius: 8px;
  color: var(--navy);
  background: transparent;
  text-align: left;
  font-weight: 900;
}

.admin-post-row > button span {
  display: block;
  margin-top: 5px;
  color: #607280;
  font-size: 12px;
}

.admin-post-row div {
  display: flex;
  gap: 8px;
}

.admin-post-row div button,
.admin-post-row div a {
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.admin-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.admin-tools .btn-outline {
  color: var(--navy);
  border-color: rgba(9, 34, 53, 0.18);
  background: var(--white);
}

.admin-form {
  display: grid;
  gap: 16px;
}

.admin-form-grid {
  display: grid;
  gap: 12px;
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

.admin-form input,
.admin-form textarea {
  width: 100%;
  border: 1px solid #d8e4ea;
  border-radius: 8px;
  padding: 12px;
  color: #132432;
  background: var(--white);
}

.image-upload-field {
  padding: 16px;
  border: 1px dashed rgba(76, 201, 216, 0.58);
  border-radius: 8px;
  background: #f0fbfc;
}

.image-upload-field input {
  padding: 10px;
  background: var(--white);
}

.image-upload-field span {
  color: #607280;
  font-size: 12px;
  font-weight: 800;
}

.admin-check {
  align-content: center;
  display: flex !important;
  align-items: center;
  gap: 10px !important;
  padding: 12px;
  border: 1px solid #d8e4ea;
  border-radius: 8px;
  background: #f7fbfc;
}

.admin-check input {
  width: auto;
}

.admin-status {
  color: #075e68;
  font-weight: 900;
}

.admin-preview {
  margin-top: 24px;
}

.admin-preview-card {
  display: grid;
  gap: 16px;
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid rgba(9, 34, 53, 0.1);
  border-radius: 8px;
  background: #f7fbfc;
}

.admin-preview-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--navy);
}

.admin-preview-card div {
  padding: 0 16px 16px;
  border-top: 4px solid var(--post-accent);
}

.admin-preview-card span,
.admin-preview-card small {
  color: #607280;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-preview-card h3 {
  margin: 10px 0;
  color: var(--navy);
}

.admin-preview-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.form-card {
  padding: 22px;
  border: 1px solid rgba(9, 34, 53, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
}

.form-card p {
  margin: 0 0 18px;
  color: #536879;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field-full {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 52px 18px 104px;
  color: #d4e2e9;
  background: #061724;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.footer-brand {
  display: flex;
  gap: 13px;
  align-items: center;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-size: 20px;
}

.footer-column h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 15px;
}

.footer-column p,
.footer-column a {
  color: #c4d2da;
}

.footer-column ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-bottom {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9fb1bf;
  font-size: 13px;
}

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 94px;
  z-index: 60;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
  animation: pulse 2.4s ease-in-out infinite;
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(3, 11, 18, 0.68);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

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

.modal-card {
  position: relative;
  width: min(100%, 520px);
  max-height: min(92vh, 760px);
  overflow: auto;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s ease;
}

.modal-backdrop.is-open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-top {
  padding: 22px;
  color: var(--white);
  background: linear-gradient(135deg, #061724, #0d3047);
}

.modal-top h2 {
  margin: 0 40px 6px 0;
  font-size: 24px;
  line-height: 1.15;
}

.modal-top p {
  margin: 0;
  color: #d4e2e9;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-size: 24px;
  line-height: 1;
}

.modal-body {
  padding: 20px;
}

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

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes legalPhotoSlide {
  from {
    transform: translate3d(0, -50%, 0);
  }
  to {
    transform: translate3d(280px, -50%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (min-width: 640px) {
  .stats-band,
  .service-grid,
  .lawyer-grid,
  .review-grid,
  .value-grid,
  .contact-grid,
  .feature-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .admin-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail {
    grid-template-columns: 76px 1fr;
    align-items: center;
  }

  .service-detail .service-copy {
    min-width: 0;
  }

  .service-detail > .btn {
    grid-column: 2;
  }

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

  .about-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (min-width: 900px) {
  .nav-toggle,
  .mobile-bottom-nav {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

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

  .nav-cta {
    display: inline-flex;
  }

  .hero-inner {
    padding-top: 48px;
  }

  .hero-grid,
  .split,
  .about-showcase {
    grid-template-columns: 1fr 0.82fr;
  }

  .stats-band {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .service-detail {
    grid-template-columns: 118px 1fr auto;
  }

  .service-detail > .btn {
    grid-column: auto;
    justify-self: end;
  }

  .service-media {
    display: block;
    width: 118px;
  }

  .service-media img {
    width: 118px;
    height: 118px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(9, 34, 53, 0.12);
  }

  .lawyer-grid,
  .review-grid,
  .value-grid,
  .contact-grid,
  .feature-grid,
  .faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-toolbar,
  .admin-layout {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .blog-featured-card,
  .blog-reader-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .blog-featured-card img,
  .blog-reader-card img {
    height: 100%;
    min-height: 360px;
  }

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

  .admin-sidebar {
    position: sticky;
    top: 96px;
  }

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

  .site-footer {
    padding-bottom: 38px;
  }

  .float-whatsapp {
    bottom: 22px;
  }
}

@media (max-width: 420px) {
  .hero-photo-strip {
    opacity: 0.76;
  }

  .hero-photo-strip::after {
    background:
      linear-gradient(90deg, rgba(6, 23, 36, 0.96) 0%, rgba(6, 23, 36, 0.8) 50%, rgba(6, 23, 36, 0.28) 100%),
      linear-gradient(180deg, rgba(6, 23, 36, 0.26), rgba(6, 23, 36, 0.72));
  }

  .hero-photo-track {
    top: 56%;
    right: -126px;
    gap: 10px;
  }

  .hero-photo-track img {
    width: 184px;
    height: 276px;
  }

  .brand-name {
    font-size: 16px;
  }

  .brand-kicker {
    font-size: 11px;
  }

  .hero-inner {
    min-height: auto;
  }

  .phone-screen {
    min-height: 500px;
  }

  .hero-slider {
    min-height: 318px;
  }

  .slide h2 {
    font-size: 21px;
  }

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

  .orbit-card {
    width: 150px;
  }
}
