@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #212529;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.container {
    max-width: 1327px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}
.text-left {
    text-align: left;
}
.text-center { 
    text-align: center; 
}
.text-white { 
    color: #ffffff; 
}
.text-red {
    background: linear-gradient(90deg, #C51D15 0%, #FFD0CE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 42px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-size: 14px;
    line-height: 21px;
    font-weight: 600;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background-color: #c51d15;
    color: #ffffff;
}
.btn-primary:hover {
    background: #fff;
    color: #c51d15;
}
.btn-primary:hover svg path {
    fill: #c51d15;
}
.btn-secondary {
    background-color: #ffffff;
    color: #c51d15;
    padding: 12px 45px;
}
.btn-outline {
    background-color: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    padding: 11px 20px;
}
.btn-secondary:hover {
    background: #c51d15;
}
.btn-secondary:hover svg path {
    fill: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: #c51d15;
}
.btn-outline:hover svg path {
    fill: #c51d15;
}
.btn-dark {
    background-color: #212529;
    color: #ffffff;
}
.section-title {
    font-size: 36px;
    line-height: 55px;
    font-weight: 600;
    color: #212529;
}
.section-subtitle {
    font-size: 15px;
    line-height: 28px;
    color: #2e3f47;
}
.customBGsection .section-subtitle {
    text-align: left;
}

.customBGsection .section-title{
  text-align: left;
}



.site-header {
  background-color: #ffffff;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.14);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: #000000;
  font-weight: 500;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
}
/* 
.faq-body        { display: none; }
.faq-item.active .faq-body { display: block; } */

/* CSS for section section:Hero */
.hero-section {
    background-color: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    height: 854px;
    background-image: url("/wp-content/themes/mappingmaster/images/Ai-main-banner.png");
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(circle, rgba(197,29,21,0.15) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 863px;
    margin: 0 auto;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #C51D154D;
    border: 1px solid #FF9994DB;
    border-radius: 44px;
    color: #fff;
    font-size: 12px;
    line-height: 22px;
    font-weight: 500;
    padding: 6px 15px;
}
.hero-title {
    font-weight: 800;
    font-size: 56px;
    line-height: 66px;
    color: #FFFFFF;
    margin: 17px 0 13px;
}
.hero-subtitle {
    font-size: 16px;
    line-height: 28px;
    max-width: 688px;
    margin: 0 auto 40px;
    opacity: .8;
    font-family: 'Poppins';
}
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* Graphic Styles */
.hero-graphic {
  position: relative;
  z-index: 1;
  margin-top: 60px;
}
.graphic-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.g-box {
  background-color: rgba(0, 0, 0, 0.37);
  border: 1px solid rgba(197, 29, 21, 0.32);
  border-radius: 12px;
  padding: 20px;
  color: #ffffff;
  flex: 1;
  min-width: 250px;
  position: relative;
}
.g-box.mm-box {
  border-width: 2px;
  flex: 1.5;
}

/* Hotel Box */
.hotel-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.hotel-avatar { width: 40px; height: 40px; border-radius: 50%; }
.hotel-name { font-weight: 600; font-size: 16px; }
.stars { color: #e5981d; font-size: 12px; letter-spacing: 2px; }
.room-type { font-size: 14px; opacity: 0.6; margin-bottom: 8px; }
.price-row { display: flex; align-items: center; justify-content: space-between; }
.price { font-size: 24px; font-weight: 700; }
.per-night { font-size: 12px; opacity: 0.7; }
.status { font-size: 12px; color: #329849; display: flex; align-items: center; gap: 4px; }
.dot { width: 6px; height: 6px; background-color: currentColor; border-radius: 50%; display: inline-block; }

/* MM Box */
.mm-header { margin-bottom: 20px; }
.mm-sub { font-size: 12px; opacity: 0.6; }
.code-window { background: rgba(0,0,0,0.5); border-radius: 8px; padding: 10px; }
.code-header { margin-bottom: 10px; }
.live-badge { display: inline-flex; align-items: center; gap: 4px; background: rgba(197,29,21,0.2); color: #c51d15; padding: 2px 8px; border-radius: 12px; font-size: 10px; }
.code-img { width: 100%; border-radius: 4px; }

/* AI Box */
.ai-box { display: flex; flex-direction: column; gap: 16px; background: transparent; border: none; }
.ai-item { display: flex; align-items: center; gap: 12px; font-size: 14px; opacity: 0.9; }
.ai-icon { width: 40px; height: 40px; background: rgba(0,0,0,0.37); border: 1px solid rgba(197,29,21,0.32); border-radius: 8px; display: flex; align-items: center; justify-content: center; }

/* Direct Box */
.direct-box { text-align: center; display: flex; flex-direction: column; justify-content: center; }
.direct-title { font-weight: 600; font-size: 16px; margin-bottom: 8px; }
.direct-sub { color: #c51d15; font-size: 12px; font-weight: 600; }

@media (max-width: 1024px) {
  .hero-title { font-size: 40px; }
  .graphic-row { flex-direction: column; }
  .g-box { width: 100%; }
}

/* CSS for section section:Problem */
.problem-section {
    padding: 100px 0;
    background-color: #F6F7F9;
}
.comparison-container {
    display: flex;
    gap: 33px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 961px;
    width: 100%;
    margin: 60px auto 0;
    border: 1px solid rgba(0, 0, 0, .1);
    padding: 22px 22px 22px 39px;
    border-radius: 5px;
    background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 225, 223, 1) 100%);
    text-align: left;
}
.comparison-container .comp-card.bad-card {
    max-width: calc(48% - (33px * 1 / 2));
    width: 100%;
}
.comparison-container .comp-card svg {
    margin-bottom: 20px;
}
.comparison-container .comp-card .card-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 7px;
}
.comparison-container .comp-card .card-desc {
    font-size: 15px;
    line-height: 28px;
    color: #2e3f47;
    min-height: 80px;
}
.comparison-container .comp-card.bad-card .card-desc {
    margin-bottom: 44px;
}
.comparison-container .comp-card.good-card {
    max-width: calc(52% - (33px * 1/2));
    width: 100%;
    padding: 38px 14px 17px 21px;
    background: #fff;
    border-radius: 5px;
    border: 1px solid rgba(50, 152, 73, .77);
}
.comparison-container .comp-card.good-card .card-title {
    color: #329849;
}
.comparison-container .comp-card.good-card .card-desc {
    margin-bottom: 27px;
}
.comparison-container .comp-card.bad-card .code-box {
    padding: 25px 45px;
    background: #F6F7F9;
    border: 1px solid rgba(197, 29, 21, .1);
    border-left: 4px solid #C51D15;
}
.code-box {
  border-radius: 5px;
}
.comparison-container .comp-card.bad-card .code-box {
    padding: 25px 45px;
    background: #F6F7F9;
    border: 1px solid rgba(197, 29, 21, .1);
    border-left: 4px solid #C51D15;
}
.comparison-container .comp-card.good-card .code-box {
    padding: 14px 27px 10px;
    background: #212529;
    border: 1px solid rgba(197, 29, 21, .1);
    border-left: 4px solid #329849;
}


/* CSS for section section:WhatIs */
.what-is-section {
    padding: 100px 0;
    background-color: #fff;
}
.what-is-section .section-title {
    margin-bottom: 9px;
}
.what-is-section  .section-subtitle {
    max-width: 635px;
    margin: 0 auto 49px;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 70px;
}
.feature-item {
    position: relative;
    padding: 30px 20px;
    border-radius: 5px;
    border: 2px solid #fff;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    display: table;
    background: linear-gradient(#ffffff, #ffffff) padding-box,linear-gradient(90deg,rgba(197, 29, 21, 0) 0%, rgba(197, 29, 21, 1) 50%, rgba(197, 29, 21, 0) 100%) border-box;
}
.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 9.6px rgba(0, 0, 0, 0.25);
    border: 2px solid #0000;
}
.f-icon {
  margin-bottom: 20px;
  height: 48px;
}
.f-icon img { height: 100%; }
.f-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.f-desc {
  font-size: 14px;
  color: #2e3f47;
  line-height: 1.6;
}
.quote-box {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #c51d15;
}

/* CSS for section section:HowItWorksTimeline */
.timeline-section {
    background-color: #000000;
    padding: 100px 0 134px;
    position: relative;
    background-image: url(/wp-content/themes/mappingmaster/images/Frame-105.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
.timeline-section .section-title {
    margin-bottom: 2px;
}
.timeline-container {
      position: relative;
      margin: 73px 30px 0;
}
.timeline-line {
      position: absolute;
      top: 42px;
      left: 30px;
      right: 30px;
      height: 1px;
      background-color: #c51d15;
      z-index: 1;
}
.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.t-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
    /* width: 25%; */
}
.t-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    border: 2px solid #c51d15;
    background-color: #000000;
    color: #c51d15;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}
.t-label {
    color: #ffffff;
    font-size: 22px;
    line-height: 33px;
    font-weight: 600;
}
/* CSS for section section:WhyActivate */
.why-activate-section {
    padding: 107px 0 113px;
    background-color: #ffffff;
    position: relative;
}
.why-activate-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(/wp-content/themes/mappingmaster/images/Vector-7.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top left;
    max-width: 611px;
    width: 100%;
    height: 1067px;
    display: block;
}
.customBGsection {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 47px;
}
.why-activate-section .customBGsection .section-title {
    max-width: 55%;
    width: 100%;
}
.why-activate-section .customBGsection .section-subtitle {
    max-width: 45%;
    width: 100%;
}
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.why-activate-section .benefits-grid {
    gap: 20px;
    position: relative;
}
.b-card {
    background: #F6F7F9;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 30px 20px;
    text-align: left;
    flex: 1 1 calc(33.333% - 20px);
    transition: all .3s ease;
}
.b-card:hover {
    box-shadow: 0px 4px 9.6px rgba(0, 0, 0, .25);
}
.b-icon {
  height: 48px;
  margin-bottom: 20px;
}
.b-title {
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #212529;
}
.b-desc {
    font-size: 15px;
    color: #2E3F47;
    line-height: 28px;
}

/* CSS for section section:PMS */
.pms-section {
    background: #000;
    padding: 34px 0 0;
    overflow: hidden;
    position: relative;
}
.pms-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    background-image: url(/wp-content/themes/mappingmaster/images/pm-shape.png);
    max-width: 1127px;
    width: 100%;
    height: 728px;
    background-size: contain;
    background-repeat: no-repeat;
}
.pms-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}
.pms-image-col {
    flex: 1;
    position: relative;
}
.pms-img {
    width: 100%;
    border-radius: 12px;
    mix-blend-mode: lighten;
}
.pms-content-col {
    flex: 1;
    text-align: left;
}
.pms-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}
.pms-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.pms-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}
.pms-text h3 {
    color: #ffffff;
    font-size: 16px;
    margin: 0 0 8px 0;
    font-weight: bold;
}
.pms-text p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* CSS for section section:WhyMatters */
.why-matters-section {
  padding: 100px 0;
  background-color: #f6f7f9;
}
.matters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 54px;
}
.m-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 44px 25px 57px;
    box-shadow: 0 4px 9.8px rgba(0,0,0,0.12);
    position: relative;
    overflow: hidden;
}
.m-num {
    font-size: 100px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, #C51D15 0%, rgba(255,255,255,0) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: -15px;
    opacity: 40%;
}
.m-card p {
    position: relative;
    z-index: 1;
    font-size: 17px;
    line-height: 26px;
    font-weight: 600;
    color: #212529;
}
/* CSS for section section:FooterConcept */
/* .footer-concept-section {
  padding: 100px 0;
  background-color: #ffffff;
}
.fc-inner {
  display: flex;
  align-items: center;
  gap: 60px;
}
.fc-content {
  flex: 1;
}
.fc-highlight {
  font-size: 18px;
  color: #212529;
  margin-bottom: 16px;
}
.fc-desc {
  font-size: 16px;
  color: #2e3f47;
  margin-bottom: 40px;
  line-height: 1.6;
}
.fc-note {
  background: rgba(197, 29, 21, 0.05);
  border-left: 4px solid #c51d15;
  padding: 20px;
  border-radius: 0 8px 8px 0;
}
.fc-note h4 {
  margin: 0 0 8px 0;
  color: #212529;
  font-size: 16px;
}
.fc-note p {
  margin: 0;
  color: #2e3f47;
  font-size: 14px;
  font-style: italic;
}
.fc-image {
  flex: 1;
}
.fc-image img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
} */
/* CSS for section section:Video */
/* .video-section {
  padding: 80px 0;
  background-color: #ffffff;
} */
.video-section .text-red {
    color: #C51D15;
    -webkit-text-fill-color: inherit;
}
.video-wrapper {
    position: relative;
    max-width: 1122px;
    margin: 33px auto 0;
    border-radius: 26px;
    overflow: hidden;
}
.video-thumb {
    width: 100%;
    display: block;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: transform 0.2s;
}
.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* CSS for section section:FAQ */
.faq-section {
    padding: 100px 0;
    background-color: #ffffff;
}
.faq-section .text-red {
    color: #C51D15;
    -webkit-text-fill-color: inherit;
}
.faq-list {
    max-width: 1050px;
    margin: 60px auto 0;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 35px 0;
}
.faq-item:first-child {
    padding-top: 0;
}
.faq-item:last-child {
    padding-bottom: 0;
    border: 0;
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-q-wrap {
    display: flex;
    gap: 36px;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    color: #0E0E0E;
}
.faq-toggle {
    width: 48px;
    height: 32px;
    border-radius: 46px;
    background-color: rgba(14, 14, 14, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #0e0e0e;
}
.faq-item.active .faq-toggle {
    background-color: #c51d15;
    color: #ffffff;
}
.faq-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0 0 50px;  /* top/bottom 0 raho band hone par */
    display: block;        /* display: none bilkul mat likho */
    font-size: 17px;
    line-height: 28px;
    color: #2E3F47;
}

.faq-item.active .faq-body {
    max-height: 600px;     /* content se zyada bada value do */
    padding: 22px 0 22px 50px;
}

/* CSS for section section:CTA */
.cta-section {
    padding: 130px 0 63px;
    background-color: #f6f7f9;
}
.cta-section .section-title {
    font-size: 45px;
    line-height: 56px;
    max-width: 704px;
    width: 100%;
    margin: 0 auto;
}
.cta-section .section-subtitle {
    margin: 22px 0 34px;
    font-size: 17px;
    line-height: 23px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 11px;
    flex-wrap: wrap;
}

/* CSS for section section:Footer */
.footer-concept-section {
    padding: 100px 0 113px;
    background-color: #ffffff;
}
.fc-inner {
    display: flex;
    align-items: center;
    gap: 118px;
}
.fc-content {
    max-width: calc(44% - (118px * 1/2));
    width: 100%;
    text-align: left;
}
.fc-highlight {
    font-size: 16px;
    line-height: 25px;
    color: #212529;
    margin: 31px 0 12px;
}
.fc-desc {
    font-size: 15px;
    line-height: 28px;
    color: #2e3f47;
    margin-bottom: 66px;
    max-width: 455px;
}
.fc-note {
    background: rgba(197, 29, 21, .07);
    border: 1px solid rgba(197, 29, 21, .1);
    border-left: 4px solid #C51D15;
    padding: 26px 12px 28px 45px;
    border-radius: 5px;
}
.fc-note h4 {
    margin: 0 0 7px;
    color: #212529;
    font-size: 15px;
    line-height: 23px;
    font-weight: 500;
}
.fc-note p {
    margin: 0;
    color: #2E3F47;
    font-size: 13px;
    line-height: 28px;
}
.fc-image {
    max-width: calc(56% - (118px * 1 / 2));
    width: 100%;
}
.fc-image img {
    /* border-radius: 12px; */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
    width: 100%;
}
@media (max-width: 992px) {
  .fc-inner { flex-direction: column; }
}

/* .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
} */
/* ICON */
.f-icon {
  margin-bottom: 24px;
}

.f-icon img {
  width: 42px;
  height: auto;
  display: block;
}




/* Responsive */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
.hero-section {
    padding: 50px 0;
    height: auto;
}
.badge {
    line-height: 18px;
    padding: 6px 10px;
}
.hero-title {
    font-size: 30px;
    line-height: normal;
    margin: 10px 0;
}
.hero-subtitle {
    font-size: 14px;
    line-height: 26px;
    margin-bottom: 20px;
}
.section-title {
    font-size: 28px;
    line-height: normal;
}
.btn {
    width: 100%;
}
.problem-section {
    padding: 50px 0;
}
.comparison-container {
    gap: 30px;
    margin: 30px auto 0;
    padding: 20px 15px;
}
.comparison-container .comp-card svg {
    margin-bottom: 10px;
}
.comparison-container .comp-card.bad-card .card-desc,
.comparison-container .comp-card.good-card .card-desc {
    margin-bottom: 20px;
}
.comparison-container .comp-card.bad-card .code-box {
    padding: 15px 25px;
}
.comparison-container .comp-card.bad-card,
.comparison-container .comp-card.good-card {
    max-width: 100%;
}
.comparison-container .comp-card.good-card {
    padding: 20px 15px;
}
.comparison-container .comp-card.good-card .code-box {
    padding: 10px 15px;
}
.what-is-section {
    padding: 50px 0;
}
.what-is-section  .section-subtitle {
    margin: 0 auto 30px;
}
.features-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 30px;
}
.feature-item {
    padding: 20px 15px;
}
.f-icon {
    margin-bottom: 15px;
}
.quote-box {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    color: #c51d15;
}
.timeline-section {
    padding: 50px 0;
}
.timeline-container {
    margin: 30px 0 0;
}
.timeline-steps {
    flex-direction: column;
    gap: 40px;
}
.t-step {
    gap: 20px;
}
.t-circle {
    width: 60px;
    height: 60px;
    font-size: 20px;
}
.t-label {
    font-size: 20px;
    line-height: normal;
}
.timeline-line {
    display: none;
}
.why-activate-section {
    padding: 50px 0;
}
.customBGsection {
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}
.why-activate-section .customBGsection .section-title,
.why-activate-section .customBGsection .section-subtitle {
    max-width: 100%;
}
.b-card {
    padding: 20px 15px;;
    flex: 1 1 calc(100% - 20px);
}
.b-icon {
    margin-bottom: 15px;
}
.pms-section {
    padding: 50px 0;
}
.pms-inner {
    flex-wrap: wrap;
    gap: 30px;
}
.pms-image-col {
    flex: 100%;
}
.pms-list {
    gap: 20px;
    margin-top: 30px;
}
.why-matters-section {
    padding: 50px 0;
}
.matters-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 30px;
}
.m-card {
    padding: 30px 15px;
}
.m-num {
    font-size: 70px;
    margin-bottom: -10px;
}
.m-card p {
    font-size: 16px;
    line-height: 26px;
}
.footer-concept-section {
    padding: 50px 0;
}
.fc-inner {
    gap: 50px;
}
.fc-content,
.fc-image {
    max-width: 100%;
}
.fc-highlight {
    margin: 15px 0 10px;
}
.fc-desc {
    margin-bottom: 30px;
}
.fc-note {
    padding: 20px 15px;
}
.fc-note h4 {
    margin: 0 0 5px;
    font-size: 14px;
    line-height: normal;
}
.fc-note p {
    font-size: 12px;
    line-height: normal;
}
.faq-section {
    padding: 50px 0;
}
.faq-list {
    margin: 30px auto 0;
}
.faq-item {
    padding: 20px 0;
}
.faq-q-wrap {
    gap: 20px;
    font-size: 16px;
    line-height: normal;
}
.faq-body {
    padding: 15px 0 0 30px;
    font-size: 14px;
    line-height: 24px;
}
.cta-section {
    padding: 50px 0;
}
.cta-section .section-title {
    font-size: 28px;
    line-height: normal;
}
.cta-section .section-subtitle {
    margin: 10px 0 20px;
    font-size: 16px;
    line-height: 24px;
}
}