:root {
  --ink: #102033;
  --ink-soft: #34445a;
  --muted: #64748b;
  --line: #d9e5ef;
  --paper: #ffffff;
  --mist: #edf7ff;
  --wash: #d8efff;
  --brand: #5fb9f3;
  --brand-dark: #1978b6;
  --brand-deep: #075f99;
  --navy: #123557;
  --night: #061727;
  --gray: #b5c0c9;
  --success: #1f8a5b;
  --shadow: 0 18px 60px rgba(16, 32, 51, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18, 53, 87, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  background-size: 72px 72px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

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

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--paper);
  background: var(--navy);
}

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(18, 53, 87, 0.12);
  backdrop-filter: blur(18px);
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent 0%, var(--brand) 22%, var(--brand-dark) 50%, transparent 82%);
  opacity: 0.8;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  min-height: 84px;
}

.brand img {
  width: 124px;
  height: 82px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.site-nav a,
.header-call {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink-soft);
}

.site-nav a:hover,
.header-call:hover {
  color: var(--brand-dark);
}

.header-call {
  padding: 12px 16px;
  color: var(--paper);
  background: var(--brand-dark);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  padding: 54px 0 46px;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 252, 255, 0.96) 44%, rgba(201, 232, 252, 0.86) 100%),
    linear-gradient(150deg, transparent 0 52%, rgba(18, 53, 87, 0.08) 52% 62%, transparent 62%),
    radial-gradient(circle at 78% 18%, rgba(95, 185, 243, 0.28), transparent 34%);
}

.hero::before,
.hero::after,
.services-section::before,
.results-section::before,
.contact-section::before {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  right: -10vw;
  bottom: 9%;
  width: 48vw;
  height: 76px;
  background: repeating-linear-gradient(
    110deg,
    rgba(25, 120, 182, 0.12) 0 18px,
    rgba(95, 185, 243, 0.26) 18px 21px,
    transparent 21px 38px
  );
  transform: rotate(-8deg);
}

.hero::after {
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand), var(--navy));
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 0.86fr);
  gap: 50px;
  align-items: center;
}

.trust-line {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: rgba(95, 185, 243, 0.14);
  border: 1px solid rgba(25, 120, 182, 0.18);
  border-radius: 999px;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5.2vw, 5.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

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

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.btn-primary {
  color: var(--paper);
  background: var(--brand-dark);
  box-shadow: 0 16px 34px rgba(25, 120, 182, 0.24);
}

.btn-secondary {
  color: var(--navy);
  background: var(--paper);
  border: 1px solid var(--line);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  color: var(--brand-dark);
  font-weight: 800;
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 500px;
  padding: 20px;
  background: var(--paper);
  border: 1px solid rgba(25, 120, 182, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(0.7deg);
}

.hero-media::before {
  position: absolute;
  z-index: -1;
  top: 34px;
  right: -18px;
  bottom: -18px;
  left: 34px;
  content: "";
  background: var(--navy);
  border-radius: var(--radius);
  opacity: 0.12;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 6px;
  filter: saturate(1.04) contrast(1.03);
}

.hero-card {
  position: absolute;
  right: 4px;
  bottom: 34px;
  width: min(300px, calc(100% - 44px));
  padding: 18px;
  color: var(--paper);
  background: rgba(18, 53, 87, 0.94);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(18, 53, 87, 0.26);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.quick-quote {
  position: relative;
  background:
    linear-gradient(90deg, rgba(95, 185, 243, 0.17), transparent 28%),
    var(--navy);
}

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

.quick-quote a {
  padding: 24px;
  color: var(--paper);
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-quote a:last-child {
  border-right: 0;
}

.quick-quote span,
.quick-quote strong {
  display: block;
}

.quick-quote span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quick-quote strong {
  margin-top: 2px;
  font-size: 1.22rem;
}

.section {
  padding: 100px 0;
}

.services-section,
.results-section,
.contact-section {
  position: relative;
  overflow: hidden;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.split-heading {
  display: grid;
  max-width: none;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 44px;
  align-items: end;
}

.section-number {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-number::after {
  display: inline-block;
  width: 38px;
  height: 2px;
  margin-left: 10px;
  vertical-align: middle;
  content: "";
  background: currentColor;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.18;
}

.section-heading p,
.process-copy p,
.story-copy p,
.quote-intro p {
  color: var(--ink-soft);
}

.services-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
}

.services-section::before {
  top: 78px;
  right: -140px;
  width: 420px;
  height: 420px;
  border: 52px solid rgba(95, 185, 243, 0.1);
  border-radius: 50%;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: var(--paper);
  border: 1px solid rgba(18, 53, 87, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 22px 50px rgba(16, 32, 51, 0.1);
}

.service-card::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--brand-dark), var(--brand));
}

.service-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.service-card h3,
.service-card p,
.service-card ul {
  padding-right: 22px;
  padding-left: 22px;
}

.service-card h3 {
  margin-top: 22px;
}

.service-card p {
  color: var(--ink-soft);
}

.service-card ul {
  margin: 0 0 24px;
  color: var(--ink-soft);
}

.featured-service {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 0.9fr 1fr;
  color: var(--paper);
  background: var(--navy);
}

.featured-service img {
  height: 100%;
  min-height: 380px;
}

.featured-service p,
.featured-service ul {
  color: rgba(255, 255, 255, 0.82);
}

.featured-service div {
  align-self: center;
  padding: 10px 4px;
}

.process-section {
  background:
    linear-gradient(90deg, rgba(6, 23, 39, 0.93) 0%, rgba(18, 53, 87, 0.9) 42%, rgba(237, 247, 255, 1) 42%, #ffffff 100%),
    var(--mist);
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) 1fr;
  gap: 48px;
}

.process-copy {
  position: sticky;
  top: 130px;
  align-self: start;
  color: var(--paper);
}

.process-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  color: var(--paper);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid rgba(25, 120, 182, 0.13);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(16, 32, 51, 0.08);
}

.steps span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  place-items: center;
  color: var(--paper);
  background: var(--brand-dark);
  border-radius: var(--radius);
  font-weight: 950;
}

.steps p,
.gallery figcaption {
  color: var(--muted);
}

.results-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 54%, var(--night) 54%, var(--night) 100%);
}

.results-section::before {
  top: 52%;
  left: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(95, 185, 243, 0.12);
}

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}

.gallery figure {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  margin: 0;
  background: var(--mist);
  border-radius: var(--radius);
  box-shadow: 0 18px 48px rgba(6, 23, 39, 0.18);
}

.gallery-large {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transition: transform 360ms ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.gallery figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(18, 53, 87, 0.82);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
}

.story-section {
  color: var(--paper);
  background: var(--navy);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 54px;
  align-items: center;
}

.story-media {
  padding: 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.story-media img {
  border-radius: 6px;
}

.story-copy p,
.story-copy .section-number {
  color: rgba(255, 255, 255, 0.78);
}

.quote-section {
  background:
    linear-gradient(180deg, rgba(237, 247, 255, 0.9), rgba(255, 255, 255, 1)),
    var(--mist);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.quote-contact-card,
.quote-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(16, 32, 51, 0.08);
}

.quote-contact-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
}

.quote-contact-card a {
  color: var(--brand-dark);
  font-weight: 850;
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.form-row,
.form-row > div {
  display: grid;
  gap: 8px;
}

.two-col {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label,
legend {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cfdce8;
  border-radius: 7px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-dark);
  box-shadow: 0 0 0 4px rgba(95, 185, 243, 0.18);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  margin-top: 12px;
}

.checkbox-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 750;
}

.checkbox-grid input {
  width: 18px;
  min-height: 18px;
}

.field-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--success);
  font-weight: 850;
}

.contact-section {
  padding: 0;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(6, 23, 39, 0.96), rgba(18, 53, 87, 0.96)),
    var(--night);
}

.contact-section::before {
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 44%, rgba(95, 185, 243, 0.1) 44% 51%, transparent 51%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 18px);
}

.contact-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.86fr 0.9fr 1.24fr;
  gap: 26px;
  align-items: stretch;
  padding: 82px 0;
}

.contact-photo {
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-copy .section-number {
  color: var(--brand);
}

.contact-copy h2 {
  max-width: 460px;
}

.contact-copy p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.05rem;
}

.contact-board {
  display: grid;
  align-content: center;
  gap: 12px;
}

.contact-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.56fr) 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.contact-row span {
  display: block;
  margin-bottom: 4px;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-row h3 {
  margin: 0;
  color: var(--paper);
  font-size: 1.5rem;
}

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

.contact-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.contact-actions .contact-pill {
  color: var(--night);
  background: var(--paper);
}

.contact-row-cta {
  background: linear-gradient(135deg, rgba(25, 120, 182, 0.95), rgba(95, 185, 243, 0.74));
}

.chatbot {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
}

.chat-toggle {
  min-height: 52px;
  padding: 0 18px;
  color: var(--paper);
  background: var(--navy);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-weight: 950;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 66px;
  width: min(370px, calc(100vw - 32px));
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--paper);
  background: var(--navy);
}

.chat-close {
  width: 30px;
  height: 30px;
  color: var(--paper);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.chat-messages {
  display: grid;
  max-height: 330px;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
  background: #f8fbff;
}

.message {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.92rem;
}

.message.bot {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
}

.message.user {
  justify-self: end;
  color: var(--paper);
  background: var(--brand-dark);
}

.chat-options {
  display: grid;
  gap: 8px;
  padding: 12px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.chat-options button {
  padding: 10px 12px;
  color: var(--navy);
  background: var(--mist);
  border: 1px solid rgba(25, 120, 182, 0.16);
  border-radius: 7px;
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.site-footer {
  color: var(--paper);
  background: #06111d;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px 0;
}

.site-footer img {
  width: 88px;
  height: 60px;
  object-fit: contain;
  border-radius: 5px;
}

.site-footer p {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.btn-footer {
  color: var(--navy);
  background: var(--paper);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
  }

  .site-nav,
  .header-call {
    display: none;
  }

  .site-nav.is-open {
    position: absolute;
    top: 84px;
    right: 20px;
    left: 20px;
    display: grid;
    gap: 8px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .hero-grid,
  .split-heading,
  .process-grid,
  .story-grid,
  .quote-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-media {
    min-height: 420px;
  }

  .hero-media img {
    min-height: 380px;
  }

  .service-grid,
  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .featured-service {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .process-copy {
    position: static;
  }

  .process-section {
    background:
      linear-gradient(180deg, var(--night) 0%, var(--navy) 42%, #eef8ff 42%, #ffffff 100%);
  }

  .contact-shell {
    gap: 20px;
    padding: 64px 0;
  }

  .contact-photo {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .brand img {
    width: 118px;
    height: 78px;
  }

  .header-inner {
    min-height: 72px;
  }

  .site-nav.is-open {
    top: 72px;
  }

  .hero {
    min-height: auto;
    padding: 42px 0 32px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.4rem;
  }

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

  .quick-quote-grid,
  .service-grid,
  .featured-service,
  .steps,
  .gallery,
  .footer-grid,
  .two-col,
  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .quick-quote a {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .section {
    padding: 72px 0;
  }

  .service-card,
  .quote-form {
    box-shadow: none;
  }

  .featured-service {
    grid-column: auto;
  }

  .gallery-large {
    grid-row: auto;
  }

  .chatbot {
    right: 14px;
    bottom: 14px;
  }

  .chat-panel {
    width: calc(100vw - 28px);
  }

  .footer-grid {
    justify-items: start;
  }

  .contact-row,
  .steps article {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .contact-actions a {
    width: 100%;
  }
}
