:root {
  --ink: #11141b;
  --muted: #626977;
  --line: #e5e0d8;
  --paper: #ffffff;
  --soft: #f7f2ea;
  --deep: #080a10;
  --navy: #161b2a;
  --blue: #1096d4;
  --gold: #f6ba23;
  --orange: #f57920;
  --teal: var(--blue);
  --coral: var(--orange);
  --shadow: 0 18px 45px rgba(8, 10, 16, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0 0 1rem; line-height: 1.12; letter-spacing: 0; }
h1 { font-size: clamp(2.35rem, 7vw, 5.4rem); max-width: 12ch; }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: 1.15rem; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { width: min(820px, calc(100% - 40px)); }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--gold);
  color: var(--deep);
  padding: .75rem 1rem;
  border-radius: var(--radius);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,224,216,.9);
}
.nav-shell {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  min-width: max-content;
}
.brand-logo {
  width: auto;
  height: 50px;
  max-width: 190px;
  object-fit: contain;
}
.brand strong, .brand small { display: block; }
.brand small { color: var(--muted); font-size: .78rem; margin-top: -.1rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--muted);
  font-weight: 700;
}
.site-nav a[aria-current="page"], .site-nav a:hover { color: var(--orange); }
.nav-toggle { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .8rem 1.15rem;
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(245, 121, 32, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover {
  transform: translateY(-1px);
  background: #df6518;
  box-shadow: 0 14px 26px rgba(245, 121, 32, .28);
}
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 1px solid rgba(17,20,27,.12);
  box-shadow: 0 8px 18px rgba(8, 10, 16, .1);
}
.btn-small { min-height: 42px; padding: .65rem .95rem; }

.hero {
  min-height: calc(100vh - 76px);
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--deep);
}
.hero-track, .hero-slide, .hero img, .hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero img { object-fit: cover; object-position: center; }
.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 250, 240, .78) 0%, rgba(255, 250, 240, .5) 30%, rgba(255, 250, 240, .08) 58%, rgba(255, 250, 240, 0) 100%),
    linear-gradient(180deg, rgba(8, 10, 16, .02), rgba(8, 10, 16, .12));
}
.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: calc(100vh - 76px);
  padding: 5rem 0 6.5rem;
  color: var(--ink);
}
.hero-content > .eyebrow,
.hero-content > h1,
.hero-content > .hero-copy,
.hero-content > .hero-actions {
  width: min(620px, 100%);
}
.hero-content h1 {
  text-shadow: 0 2px 16px rgba(255,255,255,.72);
}
.hero-copy {
  color: #3d4350;
  max-width: 620px;
  font-size: 1.16rem;
}
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.5rem; }
.eyebrow {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
  font-weight: 900;
}
.hero .eyebrow { color: var(--orange); }
.slider-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: .65rem;
  transform: translateX(-50%);
}
.slider-controls button {
  min-width: 15px;
  min-height: 15px;
  border: 1px solid rgba(8, 10, 16, .1);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--deep);
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(8, 10, 16, .12);
}
.slider-controls button:hover {
  background: var(--orange);
  color: #fff;
}
.slider-dots {
  display: flex;
  gap: .5rem;
  padding: .55rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 8px 20px rgba(8, 10, 16, .1);
}
.slider-dot {
  width: 9px;
  height: 9px;
  min-width: 9px;
  min-height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(18,24,38,.35);
}
.slider-dot.is-active { background: var(--coral); }

.stats-band { background: var(--navy); color: #fff; border-top: 1px solid rgba(255,255,255,.12); }
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-grid div {
  padding: 1.4rem 1rem;
  border-left: 1px solid rgba(255,255,255,.12);
}
.stat-grid div:last-child { border-right: 1px solid rgba(255,255,255,.12); }
.stat-grid strong { display: block; color: var(--orange); font-size: 1.55rem; }
.stat-grid span { color: rgba(255,255,255,.74); }

.section { padding: 5.5rem 0; }
.section-intro {
  max-width: 820px;
  margin-bottom: 2rem;
}
.muted { background: var(--soft); }
.split {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 4rem;
  align-items: start;
}
.service-list { display: grid; gap: 1rem; }
.service-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.service-list span {
  color: var(--coral);
  font-weight: 900;
}
.service-list h3, .service-list p { grid-column: 2; }
.section-head { max-width: 700px; margin-bottom: 2rem; }
.process-grid, .cards-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.process-grid article, .card, .values-grid article, .contact-panel, .contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 10px 30px rgba(8, 10, 16, .06);
}
.process-grid article:hover,
.card:hover,
.values-grid article:hover {
  border-color: rgba(245, 121, 32, .35);
  box-shadow: 0 16px 36px rgba(8, 10, 16, .1);
}
.cards-grid {
  grid-template-columns: repeat(4, 1fr);
}
.cards-grid.compact { grid-template-columns: repeat(2, 1fr); }
.card h2, .values-grid h2, .contact-panel h2 { font-size: 1.22rem; }
.card { min-height: 210px; }
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.service-detail {
  position: relative;
  min-height: 360px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(8, 10, 16, .06);
}
.service-detail span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--soft);
  color: var(--orange);
  font-weight: 900;
}
.service-detail h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}
.service-detail h3 {
  margin-top: 1.25rem;
  color: var(--navy);
}
.service-detail ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.service-detail li + li {
  margin-top: .35rem;
}
.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--orange);
  font-weight: 900;
}
.text-link:hover {
  color: var(--navy);
}
.case-grid, .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.case-card, .testimonial-grid figure {
  margin: 0;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(8, 10, 16, .06);
}
.case-type {
  display: inline-flex;
  margin-bottom: .75rem;
  padding: .35rem .6rem;
  border-radius: 999px;
  background: var(--soft);
  color: var(--orange);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.case-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.testimonial-grid blockquote {
  margin: 0 0 1rem;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.55;
}
.testimonial-grid figcaption {
  color: var(--muted);
  font-weight: 800;
}
.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), #0a0d15);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta-panel p { color: rgba(255,255,255,.76); }
.cta-panel h2 { max-width: 690px; }
.plan-builder {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}
.plan-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-bottom: 1rem;
}
.plan-option {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--deep);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.plan-option.is-active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.plan-result {
  padding: 1rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, var(--soft));
}
.plan-result ul {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: var(--muted);
}
.faq-list {
  display: grid;
  gap: .75rem;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
}
.faq-list summary {
  color: var(--deep);
  cursor: pointer;
  font-weight: 900;
}
.faq-list p {
  margin-top: .8rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background-color: #ffffffd3;
  background-blend-mode: overlay;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/Digital-Marketing-Slider-1-G3D-Media.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
  z-index: -1;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.65));
  pointer-events: none;
  z-index: 0;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}
.breadcrumb a { color: var(--coral); }
.breadcrumb span::before {
  content: "/";
  margin-right: .55rem;
  color: #9aa4b2;
}
.page-hero h1 { max-width: 960px; font-size: clamp(2.1rem, 5vw, 4.4rem); }
.page-hero p { font-size: 1.1rem; max-width: 760px; }
.check-list p {
  position: relative;
  padding: 1rem 1rem 1rem 2.8rem;
  margin: 0 0 .8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.check-list p::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.35rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: var(--teal);
}
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 1.5rem;
}
.contact-form {
  display: grid;
  gap: .75rem;
}
label { font-weight: 800; }
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .75rem .85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(245, 121, 32, .17);
  border-color: var(--orange);
}
.small-note, .form-status { font-size: .92rem; }
.service-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  padding: .85rem;
  font-size: .94rem;
}
.legal-copy h2 { font-size: 1.4rem; margin-top: 2rem; }

.site-footer {
  background: #080a10;
  color: #fff;
  padding: 3rem 0 1.2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 2rem;
}
.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(255,255,255,.74); }
.footer-grid h2 { font-size: 1rem; color: #fff; }
.footer-grid a { display: block; margin-bottom: .45rem; }
.footer-brand { margin-bottom: 1rem; color: #fff; }
.footer-brand {
  width: fit-content;
  padding: .6rem;
  background: #fff;
  border-radius: var(--radius);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: .55rem;
}
.floating-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 0;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(8, 10, 16, .22);
}
.floating-contact a::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}
.floating-call {
  order: 1;
  background: var(--orange);
}
.floating-call::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.5 3 3.9 5.4 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.8 22 2 13.2 2 3.2 2 2.5 2.5 2 3.2 2h3.6C7.5 2 8 2.5 8 3.2c0 1.4.2 2.7.6 4 .1.4 0 .8-.3 1.2l-1.7 2.4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.5 3 3.9 5.4 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.6.6 4 .6.7 0 1.2.5 1.2 1.2v3.5c0 .7-.5 1.2-1.2 1.2C10.8 22 2 13.2 2 3.2 2 2.5 2.5 2 3.2 2h3.6C7.5 2 8 2.5 8 3.2c0 1.4.2 2.7.6 4 .1.4 0 .8-.3 1.2l-1.7 2.4z'/%3E%3C/svg%3E");
}
.floating-whatsapp {
  order: 2;
  background: #1fae62;
}
.floating-whatsapp::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a9.7 9.7 0 0 0-8.4 14.6L2.4 22l5.5-1.2A9.7 9.7 0 1 0 12 2zm0 17.7c-1.4 0-2.7-.3-3.8-1l-.3-.2-3.2.7.7-3.1-.2-.3A7.8 7.8 0 1 1 12 19.7zm4.4-5.9c-.2-.1-1.4-.7-1.6-.8-.2-.1-.4-.1-.6.1-.2.3-.7.8-.8 1-.2.2-.3.2-.6.1-.2-.1-1-.4-1.9-1.2-.7-.6-1.2-1.4-1.3-1.6-.1-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.3-.9.9-.9 2.1s.9 2.5 1 2.7c.1.2 1.8 2.8 4.4 3.9.6.3 1.1.4 1.5.5.6.2 1.2.2 1.6.1.5-.1 1.4-.6 1.6-1.1.2-.5.2-1 .1-1.1 0-.2-.2-.3-.5-.4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a9.7 9.7 0 0 0-8.4 14.6L2.4 22l5.5-1.2A9.7 9.7 0 1 0 12 2zm0 17.7c-1.4 0-2.7-.3-3.8-1l-.3-.2-3.2.7.7-3.1-.2-.3A7.8 7.8 0 1 1 12 19.7zm4.4-5.9c-.2-.1-1.4-.7-1.6-.8-.2-.1-.4-.1-.6.1-.2.3-.7.8-.8 1-.2.2-.3.2-.6.1-.2-.1-1-.4-1.9-1.2-.7-.6-1.2-1.4-1.3-1.6-.1-.2 0-.4.1-.5l.4-.5c.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5 0-.1-.6-1.4-.8-1.9-.2-.5-.4-.4-.6-.4h-.5c-.2 0-.5.1-.7.3-.2.3-.9.9-.9 2.1s.9 2.5 1 2.7c.1.2 1.8 2.8 4.4 3.9.6.3 1.1.4 1.5.5.6.2 1.2.2 1.6.1.5-.1 1.4-.6 1.6-1.1.2-.5.2-1 .1-1.1 0-.2-.2-.3-.5-.4z'/%3E%3C/svg%3E");
}

@media (max-width: 991px) {
  body.nav-open {
    overflow: hidden;
  }
  .site-header {
    z-index: 300;
  }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }
  .nav-toggle span {
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--deep);
    transition: transform .2s ease, opacity .2s ease;
  }
  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .site-nav {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 320;
    width: min(340px, 86vw);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5.75rem 1.1rem 1.25rem;
    background: #fff;
    border-right: 1px solid var(--line);
    border-radius: 0;
    box-shadow: 20px 0 54px rgba(8, 10, 16, .22);
    transform: translateX(-105%);
    transition: transform .28s ease;
    height: 100vh !important;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .site-nav::before {
    content: "Menu";
    position: absolute;
    top: 1.35rem;
    left: 1.25rem;
    color: var(--orange);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }
  .site-nav a {
    width: 100%;
    padding: .95rem .2rem;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1rem;
  }
  .site-nav.is-open { transform: translateX(0); }
  body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 240;
    background: rgba(8, 10, 16, .34);
  }
  .nav-toggle {
    position: relative;
    z-index: 340;
  }
  .nav-shell > .btn-small { display: none; }
  .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .process-grid, .cards-grid, .values-grid, .case-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-options { grid-template-columns: 1fr; }
  .cta-panel { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(100% - 28px, 1160px); }
  .hero { min-height: 720px; }
  .hero-content { min-height: 720px; }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(255,250,240,.82), rgba(255,250,240,.5));
  }
  .brand-logo { height: 42px; max-width: 156px; }
  .section { padding: 4rem 0; }
  .process-grid, .cards-grid, .cards-grid.compact, .values-grid, .stat-grid { grid-template-columns: 1fr; }
  .case-grid, .testimonial-grid { grid-template-columns: 1fr; }
  .page-hero {
    background:
      linear-gradient(180deg, rgba(255,250,240,.92), rgba(255,250,240,.72)),
      url("../images/Slider-3-G3D-Media-2.jpg") center / cover no-repeat;
  }
  .service-list article { grid-template-columns: 42px 1fr; }
  .footer-bottom { flex-direction: column; }
  .floating-contact {
    left: auto;
    right: 14px;
    grid-template-columns: 1fr;
  }
  .floating-contact a {
    min-width: 52px;
  }
}

/* custom styles */
.values-grid
{
  display: flex !important;
  disjustify-content: space-between !important;
}
