:root {
  --ink: #07131d;
  --ink-2: #0f2d42;
  --deep: #061018;
  --gold: #c7a15b;
  --gold-light: #f5df9d;
  --crimson: #8f2638;
  --ivory: #fbfaf6;
  --mist: #eef3f6;
  --line: #e4e2da;
  --white: #ffffff;
  --muted: #657682;
  --shadow: 0 28px 80px rgba(7, 19, 29, 0.14);
  --duration: 1000ms;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  padding-right: 24px;
  padding-left: 24px;
}

.section-padding {
  padding: 104px 0;
}

.site-header {
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid rgba(199, 161, 91, 0.18);
  box-shadow: 0 16px 46px rgba(7, 19, 29, 0.06);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 88px;
  padding: 0;
}

.brand-logo {
  width: 238px;
  height: auto;
}

.navbar-nav {
  gap: 18px;
}

.navbar-nav .nav-link {
  position: relative;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 32px 0;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  transition: transform 280ms ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--crimson);
}

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

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 0;
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease, border-color 260ms ease;
}

.btn-accent {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 2px solid var(--gold);
  box-shadow: 5px 5px 0 var(--ink);
}

.btn-accent:hover,
.btn-accent:focus {
  color: var(--ink);
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--ink);
}

.btn-navy {
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--gold);
}

.btn-navy:hover,
.btn-navy:focus {
  color: var(--white);
  background: var(--ink-2);
  border-color: var(--ink-2);
  transform: translate(-2px, -2px);
}

.btn-outline-dark {
  color: var(--ink);
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.25);
}

.btn-outline-dark:hover {
  color: var(--white);
  background: var(--ink);
}

.hero-section {
  padding: 24px 0 36px;
}

.hero-frame {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  background: #eaf0f1;
  isolation: isolate;
  box-shadow: 0 36px 90px rgba(7, 19, 29, 0.1);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 246, 0.08) 0%, rgba(251, 250, 246, 0.24) 40%, rgba(251, 250, 246, 0.94) 55%, rgba(251, 250, 246, 0.99) 100%),
    url("../img/hero-team.jpg") left center / cover no-repeat;
  z-index: -3;
  transform: scale(1.03);
  animation: imageDrift 9s ease-in-out infinite alternate;
}

.hero-glow {
  position: absolute;
  right: 8%;
  top: 12%;
  width: 230px;
  height: 230px;
  z-index: -2;
  border: 1px solid rgba(199, 161, 91, 0.36);
  transform: rotate(16deg);
  animation: slowRotate 14s linear infinite;
}

.hero-frame::after,
.dark-services::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(7, 19, 29, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 19, 29, 0.14) 1px, transparent 1px);
  background-size: 150px 150px;
}

.hero-content {
  padding: 96px 52px 86px 26px;
}

.eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
  color: var(--crimson);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  display: inline-block;
  width: 66px;
  height: 1px;
  margin-left: 12px;
  vertical-align: middle;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-content h1,
.display-heading,
.section-title h2,
.contact-strip h2,
.cta-panel h2,
.pricing-panel h2 {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.hero-content h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 3.4vw, 3.95rem);
}

.hero-content p {
  max-width: 590px;
  margin-bottom: 30px;
  color: #3f5360;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-counter {
  position: absolute;
  right: 44px;
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.hero-counter b {
  color: var(--crimson);
}

.section-title {
  max-width: 790px;
  margin: 0 auto 56px;
}

.section-title h2,
.display-heading {
  margin-bottom: 22px;
  font-size: clamp(2rem, 3vw, 3.18rem);
}

.section-title p,
.about-section p,
.workflow-card p,
.contact-info-card p {
  color: var(--muted);
}

.service-preview-row {
  margin-top: 10px;
}

.service-preview {
  position: relative;
  min-height: 318px;
  overflow: visible;
}

.service-preview img {
  width: 100%;
  height: 278px;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 1000ms ease, filter 1000ms ease;
}

.service-preview:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.08);
}

.service-label {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: -26px;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 22px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.service-label i {
  color: var(--crimson);
  font-size: 1.75rem;
}

.service-label h3 {
  flex: 1;
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.service-label span {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.about-section {
  padding-top: 126px;
  background: var(--white);
}

.image-collage {
  position: relative;
  min-height: 560px;
}

.collage-main {
  width: 74%;
  height: 365px;
  margin-left: 80px;
  object-fit: cover;
  box-shadow: 0 28px 74px rgba(7, 19, 29, 0.14);
}

.collage-small {
  position: absolute;
  width: 42%;
  height: 205px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.collage-small-left {
  left: 0;
  bottom: 50px;
}

.collage-small-right {
  right: 22px;
  bottom: 0;
}

.experience-badge {
  position: absolute;
  top: 150px;
  right: 0;
  width: 176px;
  min-height: 140px;
  display: grid;
  place-items: center;
  padding: 20px;
  text-align: center;
  background: var(--ink);
  border: 1px solid rgba(245, 223, 157, 0.4);
  box-shadow: var(--shadow);
}

.experience-badge strong {
  color: var(--gold-light);
  font-size: 2.8rem;
  line-height: 1;
}

.experience-badge span {
  display: block;
  margin-top: 8px;
  color: #e9edf0;
  font-size: 0.78rem;
  font-weight: 700;
}

.lead-copy {
  color: var(--ink) !important;
  font-size: 1.08rem;
  font-weight: 700;
}

.mini-check {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
}

.mini-check i {
  color: var(--gold);
}

.dark-services {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 12%, rgba(199, 161, 91, 0.18), transparent 26%),
    linear-gradient(135deg, var(--deep), var(--ink-2));
  color: var(--white);
  isolation: isolate;
}

.dark-services::before {
  content: "";
  position: absolute;
  left: -110px;
  bottom: -130px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(245, 223, 157, 0.08);
  transform: rotate(22deg);
}

.dark-services .section-title h2 {
  color: var(--white);
}

.dark-service-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  min-height: 182px;
  padding: 22px 16px;
  transition: transform 420ms ease;
}

.dark-service-card:hover {
  transform: translateY(-8px);
}

.icon-ring {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(255, 244, 189, 0.7);
  border-radius: 50%;
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.08);
}

.icon-ring i {
  font-size: 1.6rem;
}

.dark-service-card h3 {
  margin: 0 0 9px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
}

.dark-service-card p {
  margin: 0;
  color: #cdd8dd;
  font-size: 0.94rem;
}

.skill-progress {
  margin-top: 26px;
}

.skill-progress span,
.skill-progress strong {
  color: var(--ink);
  font-weight: 900;
}

.progress {
  height: 8px;
  margin-top: 10px;
  background: #e7e5df;
  border-radius: 0;
}

.progress-bar {
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}

.keystone-accordion {
  display: grid;
  gap: 16px;
}

.accordion-item {
  border: 0;
  border-radius: 0;
  background: var(--white);
  box-shadow: 0 20px 52px rgba(7, 19, 29, 0.08);
}

.accordion-button {
  min-height: 72px;
  color: var(--ink);
  font-weight: 900;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--crimson);
  background: var(--white);
}

.accordion-button::after {
  background-size: 1rem;
}

.accordion-body {
  padding-top: 0;
  color: var(--muted);
}

.contact-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 76px;
  padding: 36px 44px;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: var(--white);
  border-left: 5px solid var(--gold);
  box-shadow: var(--shadow);
}

.contact-strip h2 {
  max-width: 570px;
  margin: 0;
  color: var(--white);
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
}

.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 900;
}

.contact-strip i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--gold-light);
}

.stats-strip {
  padding: 72px 0;
  background: var(--mist);
}

.stats-strip .col-6:not(:last-child) {
  border-right: 1px solid #d7dce0;
}

.stats-strip strong,
.stats-strip span {
  color: var(--crimson);
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 1;
}

.stats-strip p {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-section {
  background: var(--ivory);
}

.workflow-card {
  position: relative;
  min-height: 318px;
  padding: 34px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(7, 19, 29, 0.07);
  transition: transform 420ms ease, box-shadow 420ms ease, border-color 420ms ease;
}

.workflow-card:hover {
  transform: translateY(-8px);
  border-color: rgba(199, 161, 91, 0.55);
  box-shadow: var(--shadow);
}

.workflow-card span {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(199, 161, 91, 0.18);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.workflow-card i {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--ink);
  background: #f7efd9;
  border-radius: 50%;
  font-size: 1.55rem;
}

.workflow-card h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
}

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

.pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 38px;
  align-items: stretch;
  padding: 56px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(7, 19, 29, 0.96), rgba(15, 45, 66, 0.96)),
    url("../img/about-office.jpg") center / cover no-repeat;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.pricing-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(245, 223, 157, 0.2);
  transform: rotate(24deg);
}

.pricing-panel h2,
.pricing-panel p {
  color: var(--white);
}

.pricing-copy {
  position: relative;
  z-index: 1;
}

.pricing-copy p {
  max-width: 620px;
  color: #d8e1e5;
}

.pricing-inclusions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 24px;
  margin-top: 30px;
}

.pricing-inclusions span {
  color: #f2f5f6;
  font-weight: 800;
}

.pricing-inclusions i {
  color: var(--gold-light);
}

.price-module {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border: 1px solid rgba(245, 223, 157, 0.4);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.price-module span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-module strong {
  display: block;
  margin: 8px 0 14px;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.75rem);
  font-weight: 900;
  line-height: 1;
}

.price-module p {
  color: #d8e1e5;
}

.image-cta {
  padding: 0 0 98px;
}

.cta-panel {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 58px 28px;
  text-align: center;
  background:
    linear-gradient(rgba(7, 19, 29, 0.72), rgba(7, 19, 29, 0.72)),
    url("../img/cta-office.jpg") center / cover no-repeat;
}

.cta-panel h2 {
  max-width: 930px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.contact-section {
  background: var(--mist);
}

.contact-info-card,
.contact-form {
  padding: 42px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-info-card h3,
.contact-form h3 {
  color: var(--ink);
  font-weight: 900;
}

.contact-line {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  margin-top: 24px;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.contact-line i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #f7efd9;
  border-radius: 50%;
}

.form-label {
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 900;
}

.form-control {
  min-height: 54px;
  border: 1px solid #d8dde0;
  border-radius: 0;
  color: var(--ink);
  font-weight: 700;
}

textarea.form-control {
  min-height: 148px;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(199, 161, 91, 0.14);
}

.form-status {
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  color: var(--white);
  background: var(--deep);
}

.footer-top {
  padding: 28px 0;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  border-top: 1px solid rgba(245, 223, 157, 0.24);
}

.footer-top a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 900;
}

.footer-logo {
  width: 210px;
  display: inline-block;
  filter: brightness(0) invert(1);
}

.footer-main {
  padding: 62px 0;
}

.footer-main h3 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 900;
}

.footer-main p {
  color: #d4e1e7;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--gold-light);
}

.newsletter-form {
  display: flex;
  max-width: 320px;
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form input {
  width: 100%;
  min-height: 50px;
  padding: 0 16px;
  border: 0;
  color: var(--white);
  background: transparent;
  outline: 0;
}

.newsletter-form input::placeholder {
  color: #d4e1e7;
}

.newsletter-form button {
  width: 54px;
  border: 0;
  color: var(--gold-light);
  background: transparent;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #d4e1e7;
  font-size: 0.92rem;
}

.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  width: 45px;
  height: 45px;
  display: none;
  align-items: center;
  justify-content: center;
  border: 0;
  color: var(--ink);
  background: var(--gold-light);
  box-shadow: 0 12px 34px rgba(7, 19, 29, 0.22);
}

.scroll-top.show {
  display: inline-flex;
}

.scroll-top i {
  font-size: 1.5rem;
}

.reveal-section .reveal-item,
.reveal-section,
[data-aos] {
  opacity: 0;
  transform: translateY(38px);
  filter: blur(8px);
  transition:
    opacity var(--duration) cubic-bezier(0.19, 1, 0.22, 1),
    transform var(--duration) cubic-bezier(0.19, 1, 0.22, 1),
    filter var(--duration) cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal-section.is-visible,
.reveal-section.is-visible .reveal-item,
[data-aos].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

[data-aos="fade-left"] {
  transform: translateX(38px);
}

[data-aos="fade-right"] {
  transform: translateX(-38px);
}

[data-aos="zoom-in"] {
  transform: scale(0.94);
}

[data-aos="fade-left"].is-visible,
[data-aos="fade-right"].is-visible,
[data-aos="zoom-in"].is-visible {
  transform: translateX(0) scale(1);
}

.reveal-section[data-animate="hero"] .reveal-item {
  transform: translateX(34px);
}

.reveal-section[data-animate="hero"].is-visible .reveal-item {
  transform: translateX(0);
}

@keyframes imageDrift {
  from {
    transform: scale(1.03) translateX(0);
  }
  to {
    transform: scale(1.07) translateX(-10px);
  }
}

@keyframes slowRotate {
  from {
    transform: rotate(16deg);
  }
  to {
    transform: rotate(376deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-section,
  .reveal-section .reveal-item,
  [data-aos] {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1199px) {
  .navbar {
    padding: 16px 0;
  }

  .navbar-nav {
    gap: 0;
    padding: 18px 0;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .navbar-nav .nav-link::after {
    bottom: 6px;
  }

  .hero-content {
    padding: 98px 40px 92px;
  }

  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: translateY(38px);
  }

  [data-aos="fade-left"].is-visible,
  [data-aos="fade-right"].is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 78px 0;
  }

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

  .hero-image {
    background:
      linear-gradient(rgba(251, 250, 246, 0.9), rgba(251, 250, 246, 0.94)),
      url("../img/hero-team.jpg") center / cover no-repeat;
  }

  .hero-content {
    padding: 96px 34px 96px;
  }

  .about-section {
    padding-top: 88px;
  }

  .image-collage {
    min-height: 500px;
  }

  .contact-strip,
  .pricing-panel {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .contact-strip {
    flex-direction: column;
  }

  .stats-strip .col-6:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 14px;
  }

  .brand-logo {
    width: 184px;
  }

  .hero-content {
    padding: 76px 24px 88px;
  }

  .hero-content h1 {
    font-size: 2.32rem;
  }

  .hero-counter {
    right: 24px;
    bottom: 28px;
  }

  .service-label {
    left: 16px;
    right: 16px;
    padding: 14px 16px;
  }

  .image-collage {
    min-height: 430px;
  }

  .collage-main {
    width: 82%;
    height: 285px;
    margin-left: 34px;
  }

  .collage-small {
    width: 48%;
    height: 160px;
  }

  .experience-badge {
    top: 112px;
    width: 140px;
  }

  .dark-service-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pricing-panel,
  .contact-strip,
  .contact-info-card,
  .contact-form {
    padding: 28px 24px;
  }

  .pricing-inclusions {
    grid-template-columns: 1fr;
  }

  .stats-strip .col-6 {
    border-right: 0 !important;
  }

  .footer-top,
  .footer-top .text-md-center,
  .footer-top .text-md-end {
    text-align: center;
  }
}

@media (max-width: 460px) {
  .brand-logo {
    width: 160px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .contact-strip a,
  .footer-top a {
    align-items: flex-start;
    font-size: 0.96rem;
    overflow-wrap: anywhere;
  }
}
