/*==============================
BLOG INTRO
==============================*/

.blog-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.intro-content {
  font-size: 18px;
  color: #555;
  line-height: 1.9;
}

.intro-content p {
  margin-bottom: 24px;
}

.intro-lead {
  font-size: 22px;
  line-height: 1.8;
  color: #222;
  font-weight: 500;
}

.intro-content strong {
  color: var(--primary);

  font-weight: 600;
}

/*==============================
HIGHLIGHT CARD
==============================*/

.highlight-card {
  position: sticky;
  top: 110px;

  background: #fff;

  border: 1px solid #ececec;

  border-radius: 18px;

  padding: 30px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.highlight-label {
  display: inline-block;

  background: var(--primary);

  color: #fff;

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 22px;
}

.highlight-card ul {
  list-style: none;

  margin: 0;

  padding: 0;
}

.highlight-card li {
  display: flex;

  align-items: center;

  gap: 12px;

  padding: 14px 0;

  border-bottom: 1px solid #f3f3f3;

  color: #444;

  font-weight: 500;
}

.highlight-card li:last-child {
  border: none;
}

.highlight-card i {
  color: var(--primary);

  font-size: 18px;
}

/*==============================
RESPONSIVE
==============================*/

@media (max-width: 992px) {
  .blog-intro {
    grid-template-columns: 1fr;
  }

  .highlight-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .intro-content {
    font-size: 17px;
  }

  .intro-lead {
    font-size: 20px;
  }

  .highlight-card {
    padding: 24px;
  }
}

/*====================================
SECTION
====================================*/

.section-heading {
  max-width: 850px;

  margin-bottom: 45px;
}

.section-heading span {
  display: inline-block;

  background: #f8eef3;

  color: var(--primary);

  padding: 8px 18px;

  border-radius: 40px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 20px;
}

.section-heading h2 {
  font-size: 42px;

  line-height: 1.3;

  margin-bottom: 20px;

  color: #222;
}

.section-heading p {
  font-size: 18px;

  color: #666;
}

/*====================================
SERVICES
====================================*/

.services-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 25px;
}

.service-card {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 18px;

  padding: 28px;

  transition: 0.35s;
}

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

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-card i {
  width: 60px;

  height: 60px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 14px;

  background: #f8eef3;

  color: var(--primary);

  font-size: 24px;

  margin-bottom: 20px;
}

.service-card h3 {
  margin-bottom: 12px;

  font-size: 22px;
}

.service-card p {
  color: #666;
}

/*====================================
GOAL BOX
====================================*/

.goal-box {
  margin-top: 45px;

  background: linear-gradient(135deg, #8d0b41, #6f0833);

  color: #fff;

  padding: 45px;

  border-radius: 20px;

  text-align: center;
}

.goal-box h3 {
  font-size: 32px;

  margin-bottom: 15px;
}

.goal-box p {
  font-size: 20px;
}

/*====================================
SEARCH TAGS
====================================*/

.search-examples {
  background: #fafafa;

  padding: 35px;

  border-radius: 18px;

  margin-bottom: 45px;
}

.search-examples h4 {
  margin-bottom: 25px;
}

.search-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 15px;
}

.search-tags span {
  padding: 12px 18px;

  background: #fff;

  border-radius: 50px;

  border: 1px solid #ececec;

  font-weight: 500;
}

/*====================================
BENEFITS
====================================*/

.benefits-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 25px;
}

.benefit-card {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 18px;

  padding: 30px;

  text-align: center;

  transition: 0.35s;
}

.benefit-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.benefit-card i {
  font-size: 34px;

  color: var(--primary);

  margin-bottom: 20px;
}

.benefit-card h4 {
  font-size: 20px;
}

/*====================================
RESPONSIVE
====================================*/

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-heading h2 {
    font-size: 32px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .goal-box {
    padding: 35px 20px;
  }

  .goal-box h3 {
    font-size: 26px;
  }
}

/*==========================================
SERVICE SECTION
==========================================*/

.service-layout {
  display: grid;

  grid-template-columns: 120px 1fr;

  gap: 45px;

  align-items: flex-start;
}

/*==========================================
ICON
==========================================*/

.service-icon {
  display: flex;

  justify-content: center;
}

.icon-circle {
  width: 90px;

  height: 90px;

  border-radius: 22px;

  background: linear-gradient(135deg, #8d0b41, #b11354);

  display: flex;

  justify-content: center;

  align-items: center;

  position: sticky;

  top: 120px;

  box-shadow: 0 20px 45px rgba(141, 11, 65, 0.25);
}

.icon-circle i {
  color: #fff;

  font-size: 34px;
}

/*==========================================
CONTENT
==========================================*/

.service-content {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 22px;

  padding: 45px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.service-badge {
  display: inline-block;

  background: #f8eef3;

  color: #8d0b41;

  padding: 8px 18px;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 600;

  margin-bottom: 18px;
}

.service-content h2 {
  font-size: 40px;

  margin-bottom: 22px;

  color: #222;
}

.service-description {
  font-size: 20px;

  color: #444;

  margin-bottom: 22px;
}

.service-content p {
  color: #666;

  line-height: 1.9;

  margin-bottom: 22px;
}

.service-content strong {
  color: #8d0b41;
}

/*==========================================
KEYWORDS
==========================================*/

.keyword-box {
  background: #fafafa;

  border-radius: 18px;

  padding: 28px;

  margin: 35px 0;
}

.keyword-box h4 {
  margin-bottom: 18px;

  color: #222;
}

.keyword-list {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;
}

.keyword-list span {
  background: #fff;

  border: 1px solid #ececec;

  padding: 12px 18px;

  border-radius: 40px;

  font-size: 15px;

  transition: 0.3s;
}

.keyword-list span:hover {
  background: #8d0b41;

  color: #fff;
}

/*==========================================
BENEFITS
==========================================*/

.benefits-list {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin: 35px 0;
}

.benefits-list div {
  display: flex;

  align-items: center;

  gap: 12px;

  font-weight: 500;

  color: #444;
}

.benefits-list i {
  color: #8d0b41;

  font-size: 18px;
}

/*==========================================
LINK
==========================================*/

.service-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #8d0b41;

  font-weight: 700;

  margin-top: 10px;

  transition: 0.3s;
}

.service-link:hover {
  gap: 16px;
}

/*==========================================
RESPONSIVE
==========================================*/

@media (max-width: 992px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .icon-circle {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .service-content {
    padding: 30px;
  }

  .service-content h2 {
    font-size: 30px;
  }

  .service-description {
    font-size: 18px;
  }

  .benefits-list {
    grid-template-columns: 1fr;
  }
}

/*==================================================
REVERSE LAYOUT
==================================================*/

.reverse-layout {
  display: grid;

  grid-template-columns: 1fr 1.4fr;

  gap: 45px;

  align-items: center;
}

/*==================================================
LOCAL SEO VISUAL
==================================================*/

.local-seo-visual {
  position: sticky;

  top: 110px;
}

.map-card {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.map-header {
  background: linear-gradient(135deg, #8d0b41, #b11354);

  color: #fff;

  padding: 24px;

  display: flex;

  align-items: center;

  gap: 15px;

  font-size: 20px;

  font-weight: 600;
}

.map-header i {
  font-size: 26px;
}

.map-list {
  padding: 25px;
}

.map-item {
  display: flex;

  align-items: center;

  gap: 16px;

  padding: 18px 0;

  border-bottom: 1px solid #f3f3f3;

  font-weight: 500;

  color: #444;
}

.map-item:last-child {
  border: none;
}

.map-item i {
  width: 48px;

  height: 48px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 14px;

  background: #f8eef3;

  color: #8d0b41;

  font-size: 20px;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 992px) {
  .reverse-layout {
    grid-template-columns: 1fr;
  }

  .local-seo-visual {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .map-header {
    font-size: 18px;

    padding: 20px;
  }

  .map-item {
    padding: 15px 0;
  }

  .map-item i {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }
}

/* //// */

/*==========================================
SOCIAL MEDIA SECTION
==========================================*/

.social-marketing-section {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr;

  gap: 50px;

  align-items: center;
}

/*==========================================
LEFT
==========================================*/

.social-content {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 22px;

  padding: 45px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.social-benefits {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin: 35px 0;
}

.social-benefits div {
  display: flex;

  align-items: center;

  gap: 12px;

  color: #444;

  font-weight: 500;
}

.social-benefits i {
  color: #8d0b41;
}

/*==========================================
RIGHT DASHBOARD
==========================================*/

.social-dashboard {
  display: flex;

  flex-direction: column;

  gap: 18px;
}

.platform-card {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 18px;

  padding: 22px 25px;

  display: flex;

  align-items: center;

  gap: 18px;

  transition: 0.35s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.platform-card:hover {
  transform: translateX(10px);

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.platform-card i {
  width: 60px;

  height: 60px;

  border-radius: 16px;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #f8eef3;

  color: #8d0b41;

  font-size: 28px;
}

.platform-card h4 {
  margin-bottom: 6px;

  color: #222;
}

.platform-card small {
  color: #777;
}

/*==========================================
OPTIONAL ACCENT BORDERS
==========================================*/

.instagram {
  border-left: 5px solid #e1306c;
}

.facebook {
  border-left: 5px solid #1877f2;
}

.linkedin {
  border-left: 5px solid #0a66c2;
}

.youtube {
  border-left: 5px solid #ff0000;
}

.twitter {
  border-left: 5px solid #000000;
}

/*==========================================
RESPONSIVE
==========================================*/

@media (max-width: 992px) {
  .social-marketing-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .social-content {
    padding: 30px;
  }

  .social-benefits {
    grid-template-columns: 1fr;
  }

  .platform-card {
    padding: 18px;
  }

  .platform-card i {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }
}

/*==================================================
GOOGLE ADS
==================================================*/

.ads-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

/*==================================================
LEFT
==================================================*/

.ads-content {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/*==================================================
INDUSTRIES
==================================================*/

.industry-box {
  margin: 35px 0;
}

.industry-box h4 {
  margin-bottom: 18px;

  color: #222;
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.industry-tags span {
  padding: 12px 18px;

  border-radius: 40px;

  background: #fafafa;

  border: 1px solid #ececec;

  font-weight: 500;

  transition: 0.3s;
}

.industry-tags span:hover {
  background: #8d0b41;
  color: #fff;
}

/*==================================================
DASHBOARD
==================================================*/

.ads-dashboard {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.dashboard-header {
  background: linear-gradient(135deg, #8d0b41, #b11354);

  color: #fff;

  padding: 24px 30px;

  display: flex;

  align-items: center;

  gap: 15px;
}

.dashboard-header i {
  font-size: 26px;
}

.dashboard-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  padding: 30px;
}

.metric-card {
  background: #fafafa;

  border: 1px solid #ececec;

  border-radius: 16px;

  padding: 25px;

  text-align: center;

  transition: 0.35s;
}

.metric-card:hover {
  transform: translateY(-6px);

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.metric-card h2 {
  color: #8d0b41;

  font-size: 38px;

  margin-bottom: 8px;
}

.metric-card span {
  color: #666;

  font-size: 15px;
}

.ads-note {
  display: flex;

  align-items: flex-start;

  gap: 15px;

  padding: 25px 30px;

  border-top: 1px solid #ececec;

  background: #fafafa;
}

.ads-note i {
  color: #8d0b41;

  font-size: 20px;

  margin-top: 3px;
}

.ads-note p {
  margin: 0;

  color: #555;

  line-height: 1.7;
}

/*==================================================
RESPONSIVE
==================================================*/

@media (max-width: 992px) {
  .ads-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ads-content {
    padding: 30px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;

    padding: 20px;
  }

  .dashboard-header {
    padding: 20px;
  }

  .metric-card h2 {
    font-size: 32px;
  }
}

/*==========================================
WEBSITE DEVELOPMENT
==========================================*/

.website-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/*==========================================
BROWSER
==========================================*/

.browser-window {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.browser-top {
  display: flex;
  gap: 10px;
  padding: 18px 22px;
  background: #f7f7f7;
}

.dot {
  width: 13px;
  height: 13px;
  border-radius: 50%;
}

.red {
  background: #ff5f57;
}

.yellow {
  background: #febc2e;
}

.green {
  background: #28c840;
}

.browser-body {
  padding: 35px;
}

.hero-placeholder {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background: linear-gradient(135deg, #8d0b41, #b11354);
  margin-bottom: 30px;
}

.content-placeholder div {
  height: 14px;
  border-radius: 20px;
  background: #ececec;
  margin-bottom: 16px;
}

.content-placeholder div:nth-child(1) {
  width: 100%;
}

.content-placeholder div:nth-child(2) {
  width: 80%;
}

.content-placeholder div:nth-child(3) {
  width: 60%;
}

.button-placeholder {
  width: 170px;
  height: 48px;
  border-radius: 10px;
  background: #8d0b41;
  margin-top: 30px;
}

/*==========================================
CONTENT
==========================================*/

.website-content {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 22px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/*==========================================
WEBSITE FEATURES
==========================================*/

.website-features {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 20px;

  margin: 40px 0;
}

.feature-item {
  display: flex;

  align-items: flex-start;

  gap: 18px;

  padding: 22px;

  background: #fff;

  border: 1px solid #ececec;

  border-radius: 16px;

  transition: all 0.35s ease;
}

.feature-item:hover {
  transform: translateY(-6px);

  border-color: #8d0b41;

  box-shadow: 0 18px 35px rgba(141, 11, 65, 0.08);
}

.feature-item i {
  width: 55px;

  height: 55px;

  flex-shrink: 0;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 14px;

  background: #f8eef3;

  color: #8d0b41;

  font-size: 22px;
}

.feature-item h4 {
  font-size: 18px;

  margin-bottom: 6px;

  color: #222;

  line-height: 1.4;
}

.feature-item p {
  margin: 0;

  color: #666;

  font-size: 15px;

  line-height: 1.6;
}

/* Last card spans full width */

.feature-item:last-child {
  grid-column: 1 / -1;
}

/*==========================================
RESPONSIVE
==========================================*/

@media (max-width: 768px) {
  .website-features {
    grid-template-columns: 1fr;
  }

  .feature-item:last-child {
    grid-column: auto;
  }
}

/*==========================
LAYOUT
==========================*/

.content-marketing {
  display: grid;

  grid-template-columns: 1.4fr 0.8fr;

  gap: 50px;

  align-items: center;
}

/*==========================
LEFT
==========================*/

.content-left {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 20px;

  padding: 45px;
}

.content-benefits {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  margin: 35px 0;
}

.content-benefits div {
  display: flex;

  align-items: center;

  gap: 12px;
}

.content-benefits i {
  color: #8d0b41;
}

/*==========================
RIGHT
==========================*/

.content-right {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 20px;

  padding: 35px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.content-right h4 {
  margin-bottom: 25px;
}

.format-list {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.format-item {
  display: flex;

  align-items: center;

  gap: 15px;

  padding: 18px;

  border-radius: 14px;

  background: #fafafa;

  transition: 0.3s;
}

.format-item:hover {
  background: #8d0b41;

  color: #fff;
}

.format-item i {
  width: 45px;

  height: 45px;

  display: flex;

  justify-content: center;

  align-items: center;

  background: #fff;

  color: #8d0b41;

  border-radius: 12px;
}

/*==========================
PROCESS
==========================*/

.content-process {
  display: flex;

  justify-content: center;

  align-items: center;

  gap: 25px;

  margin-top: 60px;

  flex-wrap: wrap;
}

.process-step {
  text-align: center;
}

.process-step i {
  width: 70px;

  height: 70px;

  display: flex;

  justify-content: center;

  align-items: center;

  margin: auto auto 15px;

  border-radius: 18px;

  background: #8d0b41;

  color: #fff;

  font-size: 28px;
}

.arrow {
  color: #8d0b41;

  font-size: 24px;
}

@media (max-width: 992px) {
  .content-marketing {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .content-benefits {
    grid-template-columns: 1fr;
  }

  .content-process {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
}

/*=============================
TIMELINE
=============================*/

.benefit-timeline {
  margin-top: 60px;

  display: flex;

  flex-direction: column;

  gap: 35px;
}

.timeline-card {
  display: grid;

  grid-template-columns: 90px 1fr;

  gap: 30px;

  align-items: flex-start;
}

.timeline-number {
  width: 70px;

  height: 70px;

  border-radius: 18px;

  background: #8d0b41;

  color: #fff;

  font-size: 28px;

  font-weight: 700;

  display: flex;

  justify-content: center;

  align-items: center;
}

.timeline-content {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 18px;

  padding: 35px;
}

.timeline-content h3 {
  margin-bottom: 15px;
}

.timeline-content p {
  color: #666;
}

.mini-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;

  margin-top: 25px;
}

.mini-tags span {
  padding: 10px 16px;

  border-radius: 40px;

  background: #f8eef3;

  color: #8d0b41;

  font-size: 14px;
}

/*=============================
GROWTH GRID
=============================*/

.growth-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

  margin-top: 50px;
}

.growth-card {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 20px;

  padding: 35px;

  transition: 0.35s;
}

.growth-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.growth-card i {
  font-size: 38px;

  color: #8d0b41;

  margin-bottom: 20px;
}

.growth-card h3 {
  margin-bottom: 15px;
}

.growth-card p {
  color: #666;

  line-height: 1.8;
}

/*=============================
RESPONSIVE
=============================*/

@media (max-width: 768px) {
  .timeline-card {
    grid-template-columns: 1fr;
  }

  .growth-grid {
    grid-template-columns: 1fr;
  }
}

/*===================================
BUYER GUIDE
===================================*/

.buyer-guide {
  display: grid;

  grid-template-columns: 1.4fr 0.8fr;

  gap: 50px;

  align-items: start;
}

.buyer-content {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 20px;

  padding: 45px;
}

.buyer-checklist {
  margin: 40px 0;

  display: grid;

  gap: 18px;
}

.check-item {
  display: flex;

  align-items: center;

  gap: 18px;

  padding: 18px;

  background: #fafafa;

  border-radius: 14px;
}

.check-item i {
  color: #8d0b41;

  font-size: 20px;
}

.agency-note {
  display: flex;

  gap: 18px;

  background: #f8eef3;

  border-left: 5px solid #8d0b41;

  padding: 25px;

  border-radius: 14px;
}

.agency-note i {
  color: #8d0b41;

  font-size: 24px;
}

/*===================================
RIGHT CARD
===================================*/

.trust-card {
  position: sticky;

  top: 110px;

  background: #fff;

  border: 1px solid #ececec;

  border-radius: 20px;

  padding: 35px;
}

.trust-list {
  display: grid;

  gap: 16px;

  margin-top: 25px;
}

.trust-list div {
  background: #fafafa;

  padding: 16px;

  border-radius: 12px;
}

/*===================================
INDUSTRIES
===================================*/

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.industry-card {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 18px;

  text-align: center;

  padding: 30px 20px;

  transition: 0.35s;
}

.industry-card:hover {
  transform: translateY(-8px);

  border-color: #8d0b41;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.industry-card i {
  font-size: 34px;

  color: #8d0b41;

  margin-bottom: 18px;
}

.industry-card h4 {
  font-size: 18px;
}

/*===================================
RESPONSIVE
===================================*/

@media (max-width: 992px) {
  .buyer-guide {
    grid-template-columns: 1fr;
  }

  .trust-card {
    position: relative;
    top: 0;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }

  .buyer-content {
    padding: 30px;
  }
}
/*==========================================
CONCLUSION
==========================================*/

.conclusion-box {
  background: #fff;

  border: 1px solid #ececec;

  border-radius: 22px;

  padding: 50px;

  text-align: center;
}

.conclusion-box h2 {
  margin: 18px 0 25px;
}

.conclusion-box p {
  max-width: 850px;

  margin: 0 auto 20px;

  color: #666;

  line-height: 1.9;
}

.growth-points {
  margin-top: 40px;

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 18px;
}

.growth-points div {
  background: #f8eef3;

  color: #8d0b41;

  padding: 18px;

  border-radius: 14px;

  font-weight: 600;
}

.growth-points i {
  margin-right: 8px;
}

/*==========================================
FINAL CTA
==========================================*/

.final-cta-section {
  background: linear-gradient(135deg, #8d0b41, #5f062b);

  border-radius: 28px;

  overflow: hidden;

  color: #fff;
}

.cta-overlay {
  text-align: center;
}

.cta-overlay span {
  display: inline-block;

  padding: 8px 18px;

  background: rgba(255, 255, 255, 0.15);

  border-radius: 40px;

  margin-bottom: 20px;
}

.cta-overlay h2 {
  font-size: 48px;

  margin-bottom: 20px;
}

.cta-overlay p {
  max-width: 800px;

  margin: 0 auto 40px;

  opacity: 0.9;

  line-height: 1.9;
}

.cta-buttons {
  display: flex;

  justify-content: center;

  flex-wrap: wrap;

  gap: 18px;
}

.btn-white {
  background: #fff;

  color: #8d0b41;

  padding: 16px 28px;

  border-radius: 12px;

  font-weight: 700;
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.35);

  color: #fff;

  padding: 16px 28px;

  border-radius: 12px;

  font-weight: 600;

  transition: 0.3s;
}

.btn-outline-light:hover {
  background: #fff;

  color: #8d0b41;
}

/*==========================================
RESPONSIVE
==========================================*/

@media (max-width: 992px) {
  .growth-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-highlight {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .growth-points {
    grid-template-columns: 1fr;
  }

  .cta-overlay {
    padding: 60px 25px;
  }

  .cta-overlay h2 {
    font-size: 34px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-white,
  .btn-outline-light {
    width: 100%;

    text-align: center;
  }
}
