:root {
  color-scheme: light;
  --ink: #111923;
  --muted: #5d6974;
  --paper: #f7faf8;
  --line: #d9e4e2;
  --green: #15956a;
  --green-dark: #06364c;
  --copper: #e4a72a;
  --blue: #146f9c;
  --royal: #0b4e9b;
  --aqua: #20b8a0;
  --steel: #243f52;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(25, 33, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(23, 33, 31, 0.08);
  backdrop-filter: blur(18px);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  min-height: 74px;
  padding: 12px clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
}

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

.brand-logo {
  height: 48px;
  width: 48px;
}

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

.brand strong {
  font-size: 15px;
  line-height: 1.15;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

nav a {
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 12px;
}

nav a:hover,
.nav-cta {
  border-color: rgba(29, 91, 75, 0.24);
  color: var(--green);
}

.hero {
  background: #0b2637;
  color: var(--white);
  min-height: min(820px, 96vh);
  overflow: hidden;
  position: relative;
}

.hero-premium-image,
.hero-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-premium-image {
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
  z-index: 0;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 20, 30, 0.94) 0%, rgba(4, 20, 30, 0.82) 38%, rgba(4, 20, 30, 0.42) 68%, rgba(4, 20, 30, 0.16) 100%),
    linear-gradient(180deg, rgba(9, 34, 50, 0.26), rgba(9, 34, 50, 0.18) 52%, rgba(9, 34, 50, 0.5)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 54px);
  z-index: 1;
}

.hero-content {
  max-width: 790px;
  padding: clamp(142px, 19vh, 210px) clamp(22px, 6vw, 84px) 92px;
  position: relative;
  z-index: 2;
}

.hero-brand-card {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  color: var(--ink);
  display: grid;
  gap: 12px;
  max-width: 305px;
  padding: 24px;
  position: absolute;
  bottom: 64px;
  right: clamp(22px, 6vw, 84px);
  z-index: 2;
}

.hero-brand-card img {
  height: 84px;
  object-fit: contain;
  width: 84px;
}

.hero-brand-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-brand-card strong {
  font-size: 21px;
  line-height: 1.16;
}

.hero-brand-card small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.48;
}

.eyebrow,
.section-kicker {
  color: var(--copper);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.97;
  margin: 0;
  max-width: 850px;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.45;
  margin: 26px 0 0;
  max-width: 710px;
}

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

.hero-actions {
  margin-top: 34px;
}

.proof-strip {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-strip span {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  padding: 10px 12px;
}

.button {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 30px rgba(17, 25, 35, 0.14);
  display: inline-flex;
  font-size: 15px;
  font-weight: 850;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
}

.button.primary {
  background: linear-gradient(135deg, #ffd66d, var(--copper));
  border-color: #ffd66d;
  color: #0f2634;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.button.whatsapp {
  background: linear-gradient(135deg, #27d86e, #0a9b53);
  border-color: #3cf07d;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(10, 155, 83, 0.3);
}

.button.dark {
  background: linear-gradient(135deg, var(--royal), var(--green));
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--white);
  box-shadow: 0 20px 42px rgba(11, 78, 155, 0.28);
}

.intro,
.premium-split,
.vehicle-showcase,
.services,
.quote-funnel,
.seo-section,
.team,
.documents,
.cta {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 6vw, 84px);
}

.intro-grid {
  align-items: start;
  display: grid;
  gap: clamp(24px, 5vw, 80px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  margin: 0 auto;
  max-width: 1180px;
}

h2 {
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.04;
  margin: 0;
}

.intro p:last-child,
.roof-copy p,
.cta p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
  margin: 0;
}

.premium-split {
  align-items: start;
  background:
    radial-gradient(circle at 92% 12%, rgba(32, 184, 160, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(20, 111, 156, 0.12), transparent 46%),
    linear-gradient(180deg, #ffffff, #f3fbf8);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.vehicle-showcase {
  align-items: center;
  background:
    radial-gradient(circle at 18% 22%, rgba(228, 167, 42, 0.18), transparent 28%),
    linear-gradient(135deg, #f9fcff 0%, #eef9f5 48%, #ffffff 100%);
}

.vehicle-frame {
  background: var(--white);
  border: 1px solid rgba(20, 111, 156, 0.14);
  box-shadow: 0 28px 70px rgba(17, 25, 35, 0.13);
  max-width: 1180px;
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.vehicle-frame img {
  aspect-ratio: 16 / 9;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.premium-split > div:first-child,
.premium-points {
  max-width: 640px;
}

.premium-points {
  display: grid;
  gap: 12px;
}

.premium-points article {
  align-items: start;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 111, 156, 0.16);
  box-shadow: 0 12px 34px rgba(17, 25, 35, 0.06);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(96px, 0.26fr) 1fr;
  padding: 20px;
}

.premium-points strong {
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 900;
}

.premium-points span {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.55;
}

.section-heading {
  margin: 0 auto 28px;
  max-width: 1180px;
}

.service-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

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

.service-grid article,
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(17, 25, 35, 0.04);
  min-height: 272px;
  padding: 28px;
}

.service-card {
  display: block;
  overflow: hidden;
  position: relative;
}

.service-card::after {
  background: linear-gradient(135deg, transparent, rgba(43, 99, 128, 0.12));
  bottom: 0;
  content: "";
  height: 86px;
  position: absolute;
  right: 0;
  width: 128px;
}

.service-card:hover {
  border-color: rgba(43, 99, 128, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.card-cta {
  align-items: center;
  background: linear-gradient(135deg, #22c96b, #0b8f53);
  color: var(--white);
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  margin-top: 24px;
  min-height: 38px;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.service-card:hover .card-cta {
  background: linear-gradient(135deg, #ffd66d, var(--copper));
  color: #0f2634;
}

.quote-funnel {
  align-items: start;
  background:
    radial-gradient(circle at 88% 18%, rgba(32, 184, 160, 0.22), transparent 26%),
    linear-gradient(135deg, #082d44 0%, #0b4e9b 48%, #15956a 100%);
  color: var(--white);
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.quote-copy {
  max-width: 600px;
}

.quote-copy p:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.62;
  margin: 22px 0 0;
}

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

.quote-options a {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 20px;
}

.quote-options a:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.42);
}

.quote-options strong {
  color: #ffe08a;
  font-size: 18px;
  font-weight: 950;
}

.quote-options span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.service-card.electrical::after {
  background: linear-gradient(135deg, transparent, rgba(228, 167, 42, 0.24));
}

.service-card.plumbing::after {
  background: linear-gradient(135deg, transparent, rgba(20, 111, 156, 0.24));
}

.service-card.tiling::after {
  background: linear-gradient(135deg, transparent, rgba(21, 149, 106, 0.24));
}

.service-card.painting::after {
  background: linear-gradient(135deg, transparent, rgba(126, 86, 184, 0.24));
}

.service-card.roof::after {
  background: linear-gradient(135deg, transparent, rgba(11, 78, 155, 0.24));
}

.service-index {
  color: var(--copper);
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 46px;
}

.service-grid h3,
.contact-panel h3 {
  font-size: 22px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.service-grid p,
.contact-panel p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.roof-band {
  align-items: stretch;
  background: var(--green-dark);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
}

.roof-media {
  min-height: 520px;
}

.roof-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.roof-copy {
  align-self: center;
  padding: clamp(42px, 7vw, 90px);
}

.roof-copy p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 22px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.check-list li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  line-height: 1.45;
  padding-top: 12px;
}

.team-layout {
  align-items: stretch;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.team-layout img {
  background: var(--white);
  border: 1px solid var(--line);
  height: 100%;
  max-height: 420px;
  object-fit: contain;
  padding: clamp(28px, 5vw, 64px);
  width: 100%;
}

.contact-panel {
  align-content: stretch;
  display: grid;
  gap: 16px;
}

.contact-panel article {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 188px;
  padding: 28px;
}

.contact-panel a {
  color: var(--green);
  display: block;
  font-size: 17px;
  font-weight: 900;
  margin-top: 12px;
  overflow-wrap: anywhere;
}

.documents {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(228, 167, 42, 0.16), transparent 42%),
    #eef7f3;
  border-top: 1px solid #d7e5df;
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
}

.trust-band {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(11, 78, 155, 0.08), transparent 42%),
    var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  padding: clamp(54px, 8vw, 104px) clamp(20px, 6vw, 84px);
}

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

.trust-grid article {
  align-items: center;
  background: #f8fcff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17, 25, 35, 0.05);
  display: grid;
  gap: 18px;
  grid-template-columns: 52px 1fr;
  min-height: 96px;
  padding: 18px;
}

.trust-grid strong {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
}

.trust-grid span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.45;
}

.documents > div:first-child,
.document-list {
  max-width: 640px;
}

.document-list {
  display: grid;
  gap: 12px;
}

.document-list article {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(43, 99, 128, 0.15);
  box-shadow: 0 12px 34px rgba(17, 25, 35, 0.06);
  padding: 22px;
}

.document-list strong,
.document-list span {
  display: block;
}

.document-list strong {
  color: var(--blue);
  font-size: 16px;
  margin-bottom: 8px;
}

.document-list span {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.trade-hero {
  background: var(--green-dark);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  min-height: 620px;
  overflow: hidden;
  padding: 140px clamp(20px, 6vw, 84px) 70px;
  position: relative;
}

.trade-hero::before,
.trade-hero::after {
  content: "";
  inset: 0;
  position: absolute;
}

.trade-hero::before {
  background: url("/assets/premium-dubai-maintenance-hero.png") center / cover no-repeat;
  opacity: 0.34;
  transform: scale(1.02);
}

.trade-hero::after {
  background:
    linear-gradient(90deg, rgba(3, 22, 34, 0.94), rgba(3, 22, 34, 0.76) 52%, rgba(3, 22, 34, 0.5)),
    radial-gradient(circle at 92% 16%, rgba(32, 184, 160, 0.2), transparent 34%);
}

.trade-hero-copy {
  align-self: center;
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.trade-hero h1 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  margin: 0;
}

.trade-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.5;
  margin: 24px 0 0;
  max-width: 690px;
}

.trade-visual {
  align-self: center;
  backdrop-filter: blur(16px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 22px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  min-height: 360px;
  padding: 28px;
  position: relative;
  z-index: 1;
}

.trade-visual strong {
  display: block;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 0.95;
  max-width: 290px;
}

.trade-visual span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-weight: 850;
  margin-top: 24px;
}

.trade-photo {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px;
}

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

.trade-photo span {
  margin: 14px 4px 0;
}

.trade-page-section {
  padding: clamp(54px, 8vw, 104px) clamp(20px, 6vw, 84px);
}

.trade-page-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 34px auto 0;
  max-width: 1180px;
}

.trade-page-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  min-height: 190px;
  padding: 24px;
}

.trade-page-grid h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.trade-page-grid p {
  color: var(--muted);
  line-height: 1.62;
  margin: 0;
}

.seo-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(32, 184, 160, 0.16), transparent 28%),
    #ffffff;
  border-top: 1px solid var(--line);
}

.seo-columns {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1180px;
}

.seo-columns article,
.faq-list article {
  background: #f8fcff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(17, 25, 35, 0.05);
  padding: 24px;
}

.seo-columns h3,
.faq-list h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.seo-columns p,
.faq-list p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.64;
  margin: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 30px auto 0;
  max-width: 1180px;
}

.area-links {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 24px auto 0;
  max-width: 1180px;
}

.area-links a {
  color: var(--blue);
  font-weight: 850;
  text-decoration: none;
}

.service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.service-links a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  padding: 10px 12px;
}

.cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 214, 109, 0.22), transparent 28%),
    linear-gradient(180deg, #ffffff, #eef9f5);
  border-top: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  min-height: 430px;
  text-align: center;
}

.cta h2,
.cta p {
  max-width: 760px;
}

.cta p {
  margin-bottom: 12px;
}

footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  padding: 24px clamp(20px, 6vw, 84px);
}

footer span:first-child {
  color: var(--white);
  font-weight: 850;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #27d86e, #0b9a56);
  border: 1px solid rgba(255, 255, 255, 0.72);
  bottom: 22px;
  box-shadow: 0 20px 52px rgba(9, 124, 68, 0.34);
  color: var(--white);
  font-size: 15px;
  font-weight: 950;
  min-height: 52px;
  padding: 16px 20px;
  position: fixed;
  right: 22px;
  z-index: 20;
}

@media (max-width: 980px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero-content {
    padding-top: 184px;
  }

  .hero-brand-card {
    display: none;
  }

  .intro-grid,
  .premium-split,
  .vehicle-showcase,
  .quote-funnel,
  .roof-band,
  .team-layout,
  .documents,
  .trust-band,
  .trade-hero {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-grid-wide,
  .quote-options,
  .seo-columns,
  .trade-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trade-hero {
    padding-top: 180px;
  }

  .roof-media {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .topbar {
    position: absolute;
  }

  nav a {
    font-size: 13px;
    padding: 8px 9px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 720px;
  }

  .hero-premium-image {
    object-position: 60% center;
  }

  .hero-content {
    padding: 178px 20px 54px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .service-grid-wide,
  .quote-options,
  .seo-columns,
  .trade-page-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article,
  .service-card {
    min-height: auto;
  }

  .service-index {
    margin-bottom: 28px;
  }

  .roof-copy,
  .intro,
  .premium-split,
  .vehicle-showcase,
  .quote-funnel,
  .seo-section,
  .services,
  .team,
  .documents,
  .trust-band,
  .trade-page-section,
  .cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .proof-strip span {
    width: 100%;
  }

  .trade-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .floating-whatsapp {
    bottom: 14px;
    left: 14px;
    right: 14px;
    text-align: center;
  }
}
