:root {
  --bg: #03080b;
  --bg-soft: #071014;
  --panel: #0b1318;
  --panel-2: #0e171d;
  --border: #1c2931;
  --border-soft: rgba(255, 255, 255, 0.06);
  --text: #f6f8fb;
  --muted: #9fb0be;
  --muted-2: #74818c;
  --green: #35e59a;
  --green-2: #20d88c;
  --green-dark: #0d3e31;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --shell: 1250px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(4, 9, 12, 0.91);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 66px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-weight: 750;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #2be4a7);
  box-shadow: 0 0 28px rgba(53, 229, 154, 0.18);
}

.brand-mark span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #03100d;
}

.brand-mark span:nth-child(1) {
  top: 10px;
  left: 11px;
}

.brand-mark span:nth-child(2) {
  top: 10px;
  right: 11px;
}

.brand-mark span:nth-child(3) {
  top: 17px;
  left: 17px;
}

.brand-mark span:nth-child(4) {
  bottom: 10px;
  left: 11px;
}

.brand-mark span:nth-child(5) {
  bottom: 10px;
  right: 11px;
}

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

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #8e98a3;
  font-size: 15px;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
}

.nav-cta {
  justify-self: end;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 45px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  white-space: nowrap;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(180deg, var(--green), #35dc91);
  color: #02100c;
  box-shadow: 0 16px 40px rgba(53, 229, 154, 0.16);
}

.btn-ghost {
  background: rgba(7, 13, 17, 0.62);
  border-color: var(--border);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: rgba(53, 229, 154, 0.36);
}

.hero {
  position: relative;
  min-height: 910px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    var(--bg);
  background-size: 52px 52px;
}

.hero-glow {
  position: absolute;
  top: -180px;
  left: 50%;
  width: 920px;
  height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(29, 147, 102, 0.18), rgba(3, 8, 11, 0));
  pointer-events: none;
}

.hero-shell {
  position: relative;
  display: flex;
  min-height: 910px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 76px 0 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 25px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(18, 28, 34, 0.95), rgba(11, 18, 23, 0.85));
  color: #8d98a3;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pulse {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(53, 229, 154, 0.8);
}

.mini-icon {
  color: #7b8791;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin: 30px 0 22px;
  font-size: clamp(56px, 5.1vw, 74px);
  line-height: 1.03;
  font-weight: 780;
  letter-spacing: 0;
}

h1 span,
h2 span,
.build-banner h2 span {
  color: var(--green);
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  color: #a8bbcc;
  font-size: 20px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.microcopy {
  margin: 18px 0 0;
  color: #8f9ba6;
  font-size: 13px;
}

.stats-panel {
  position: absolute;
  bottom: -1px;
  left: 50%;
  display: grid;
  width: min(1026px, 88vw);
  min-height: 156px;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  padding: 42px 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    rgba(7, 13, 17, 0.98);
  background-size: 56px 56px;
  box-shadow: var(--shadow);
  text-align: left;
  transform: translateX(-50%);
  margin-top: 5%;
}

.stat strong {
  display: block;
  color: var(--green);
  font-size: 32px;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 8px;
  font-weight: 780;
}

.stat small {
  display: block;
  color: #87929c;
  font-size: 14px;
}

.section-pad {
  padding: 130px 0;
  border-bottom: 1px solid var(--border-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-copy h2,
.centered h2,
.section-row h2,
.contact-copy h2,
.build-banner h2 {
  margin: 24px 0 18px;
  color: var(--text);
  font-size: clamp(42px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 760;
  letter-spacing: 0;
}

.section-copy h2 span,
.centered h2 span,
.contact-copy h2 span {
  color: #8d98a3;
}

.section-copy p,
.centered p,
.contact-copy p {
  max-width: 620px;
  color: #a5b7c8;
  font-size: 18px;
}

.section-copy .btn {
  margin-top: 20px;
}

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

.feature-card,
.service-card,
.process-card,
.case-card,
.testimonial-card,
.calendar-card,
.contact-form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(14, 23, 29, 0.92), rgba(9, 16, 21, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.feature-card {
  min-height: 176px;
  padding: 24px;
}

.icon-box {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(53, 229, 154, 0.18);
  border-radius: 8px;
  background: rgba(21, 85, 65, 0.52);
  color: var(--green);
}

.icon-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h3,
.service-card h3,
.process-card h3,
.calendar-card h3 {
  margin: 18px 0 8px;
  font-size: 16px;
}

.feature-card p,
.service-card p,
.process-card p,
.case-card p,
.testimonial-card p,
.calendar-card p {
  margin-bottom: 0;
  color: #9fb1c0;
  font-size: 16px;
}

.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.centered p {
  margin: 0 auto;
}

.cards-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 66px;
}

.service-card {
  min-height: 338px;
  padding: 28px;
}

.service-card h3 {
  margin-top: 24px;
  font-size: 21px;
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 24px;
  font-weight: 680;
}

.service-card li::before {
  position: absolute;
  left: 0;
  color: var(--green);
  content: "\2713";
}

.service-card a {
  color: var(--green);
  font-weight: 780;
}

.center-cta {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.process {
  padding-top: 124px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 66px;
}

.process-card {
  min-height: 174px;
  padding: 26px 24px;
}

.process-card span {
  display: block;
  color: var(--green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.process-card h3 {
  margin-top: 18px;
  font-size: 20px;
}

.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-row .eyebrow {
  margin-bottom: 22px;
}

.section-row h2 {
  margin: 0;
}

.case-card {
  position: relative;
  min-height: 278px;
  padding: 30px 28px;
}

.category {
  display: block;
  color: #91a7b8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.corner {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #85909a;
}

.case-card strong {
  display: block;
  margin-top: 28px;
  color: var(--green);
  font-size: 36px;
  line-height: 1;
}

.case-card small {
  display: block;
  margin-top: 6px;
  color: #a4b5c4;
  font-size: 15px;
}

.case-card h3 {
  margin: 26px 0 10px;
  font-size: 18px;
}

.clients {
  padding-top: 120px;
}

.testimonial-grid {
  margin-top: 58px;
}

.testimonial-card {
  min-height: 256px;
  padding: 30px 28px;
}

.quote-mark {
  display: block;
  color: var(--green);
  font-size: 46px;
  font-weight: 700;
  line-height: 0.55;
}

.testimonial-card p {
  min-height: 90px;
  margin-top: 22px;
  color: var(--text);
  font-weight: 680;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.person > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: rgba(23, 94, 70, 0.64);
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.person strong,
.person small {
  display: block;
}

.person small {
  color: #92a4b5;
}

.build-banner {
  padding: 110px 0 0;
  overflow: hidden;
}

.banner-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 58px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 30, 28, 0.72), rgba(8, 14, 18, 0.95));
  text-align: center;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
  pointer-events: none;
}

.banner-card > *:not(.grid-overlay) {
  position: relative;
}

.banner-card h2 {
  max-width: 820px;
  margin-bottom: 12px;
}

.banner-card p {
  max-width: 620px;
  color: #9fb1c0;
  font-size: 18px;
}

.calendar-icon,
.calendar-box {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 3px;
  color: var(--green);
}

.calendar-icon::before,
.calendar-box::before {
  position: absolute;
  top: 3px;
  left: -2px;
  width: 14px;
  height: 2px;
  background: currentColor;
  content: "";
}

.contact {
  padding-top: 132px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.98fr;
  gap: 58px;
  align-items: start;
}

.contact-copy h2 {
  margin-bottom: 20px;
}

.contact-copy h2 span {
  color: #8e98a3;
}

.call-details {
  margin: 38px 0 40px;
}

.call-details div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}

.call-details dt {
  color: #9fb3c3;
}

.call-details dd {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  text-align: right;
}

.calendar-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 26px 24px;
}

.calendar-card .btn {
  grid-column: 1 / -1;
  width: max-content;
  margin-top: 6px;
}

.calendar-box {
  margin-top: 3px;
}

.calendar-card h3 {
  margin: 0 0 6px;
}

.contact-form {
  padding: 34px 36px 36px;
}

.contact-form label {
  display: block;
}

.contact-form label + label {
  margin-top: 24px;
}

.contact-form span {
  display: block;
  margin-bottom: 10px;
  color: #9fb7c8;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  background: #03080b;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input {
  height: 46px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 126px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f8c96;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(53, 229, 154, 0.62);
  box-shadow: 0 0 0 3px rgba(53, 229, 154, 0.1);
}

.form-submit {
  width: 100%;
  margin-top: 34px;
}

.form-note,
.form-status {
  margin: 18px 0 0;
  color: #8fa1b0;
  font-size: 13px;
  text-align: center;
}

.form-status {
  min-height: 18px;
  color: var(--green);
  font-weight: 700;
}

.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 120px;
  padding: 58px 0;
}

.footer-grid p {
  max-width: 430px;
  margin: 20px 0 0;
  color: #9fb1c0;
}

.footer-grid nav {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 170px;
}

.footer-grid h3 {
  margin: 0 0 10px;
  color: #9bb0c1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-grid nav a {
  font-weight: 730;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
  color: #91a3b2;
  font-size: 13px;
}

.section-fade,
.why,
.services,
.process,
.results,
.clients,
.contact {
  background: var(--bg);
}

/* ==================================
   SERVICE MODALS
================================== */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 11, 0.82);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 9998;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(760px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 9999;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-content {
  position: relative;
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(
      180deg,
      rgba(14, 23, 29, 0.98),
      rgba(9, 16, 21, 0.99)
    );
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  pointer-events: none;
  background:
    linear-gradient(
      to right,
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.02) 1px,
      transparent 1px
    );
  background-size: 42px 42px;
}

.modal-content > * {
  position: relative;
  z-index: 2;
}

.modal-content h2 {
  margin-bottom: 18px;
  font-size: 34px;
  line-height: 1.1;
  color: var(--green);
}

.modal-content h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--text);
}

.modal-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.modal-content ul {
  margin-top: 22px;
  padding-left: 0;
  list-style: none;
}

.modal-content li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
  color: var(--text);
  font-weight: 600;
}

.modal-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 800;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  color: var(--text);
  cursor: pointer;
  font-size: 24px;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: rgba(53, 229, 154, 0.12);
  border-color: rgba(53, 229, 154, 0.4);
  color: var(--green);
}

.service-card {
  cursor: pointer;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(53, 229, 154, 0.25);
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.service-card:hover h3 {
  color: var(--green);
}

/* SCROLLBAR MODAL */

.modal::-webkit-scrollbar {
  width: 8px;
}

.modal::-webkit-scrollbar-track {
  background: transparent;
}

.modal::-webkit-scrollbar-thumb {
  background: rgba(53,229,154,0.25);
  border-radius: 999px;
}

.modal::-webkit-scrollbar-thumb:hover {
  background: rgba(53,229,154,0.45);
}

.brand-logo {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
}

/* MOBILE */

@media (max-width: 680px) {

  .modal {
    width: calc(100vw - 24px);
    max-height: 90vh;
  }

  .modal-content {
    padding: 24px;
  }

  .modal-content h2 {
    font-size: 28px;
  }

  .modal-content p {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .shell {
    width: min(100% - 32px, var(--shell));
  }

  .nav-shell {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(8, 15, 19, 0.9);
    color: var(--text);
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .main-nav {
    position: fixed;
    top: 66px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(7, 13, 17, 0.98);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .hero-shell {
    min-height: 760px;
  }

  .hero-shell {
    padding-top: 92px;
  }

  .stats-panel,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    position: relative;
    bottom: auto;
    margin-top: 58px;
    transform: none;
    left: auto;
    width: 100%;
  }

  .split-grid {
    gap: 48px;
  }

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

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

  .footer-grid > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: auto;
  }

  .hero-shell {
    min-height: auto;
    padding: 82px 0 72px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions,
  .center-cta {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .stats-panel,
  .feature-grid,
  .cards-three,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    padding: 28px;
  }

  .section-pad {
    padding: 84px 0;
  }

  .section-copy h2,
  .centered h2,
  .section-row h2,
  .contact-copy h2,
  .build-banner h2 {
    font-size: 38px;
  }

  .section-row,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    padding: 24px;
  }

  .call-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .call-details dd {
    text-align: left;
  }

  .calendar-card .btn {
    width: 100%;
  }

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

