/* =====================================================
   GLOBAL RESET
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: #ffffff;
}

/* =====================================================
   GLOBAL LINKS
===================================================== */
a {
  color: var(--link-color);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  opacity: 0.85;
  text-decoration: underline;
}

/* =====================================================
   TOP BAR
===================================================== */
.top-bar {
background-color: var(--topbar-bg);
color: var(--topbar-text);
  font-size: 14px;
  padding: 6px 20px;
}

.top-bar > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar a {
  color: inherit;
  text-decoration: none;
  font-weight: 500;
}

.top-bar a:hover {
  text-decoration: underline;
}

/* =====================================================
   HEADER
===================================================== */
.site-header {
  background-color: var(--header-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
position: relative;  
align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* =====================================================
   BRANDING
===================================================== */
.site-branding {
  display: flex;
  align-items: center;
}

.site-branding__logo img {
  max-height: 65px;
}

.site-branding__name {
  font-size: 20px;
  font-weight: 600;
}

.site-branding__name a {
  color: #ffffff;
}

.site-branding__slogan {
  font-size: 13px;
  color: rgba(255,255,255,.85);
}

/* =====================================================
   PRIMARY NAVIGATION
===================================================== */
.top-bar nav ul {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 10px;
  padding: 20px 20px;;
  

}
.top-bar nav ul li {
  position: relative;
  width: 100%;

}
/* Submenu */
.top-bar nav ul li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  padding: 8px 8px;
  list-style: none;
  display: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  z-index: 999;

}


.top-bar nav ul li a,
.top-bar .menu a,
.top-bar a {
  color: var(--topbar-link) !important;
}

.top-bar nav ul li a:hover,
.top-bar .menu a:hover,
.top-bar a:hover {
  color: var(--topbar-link) !important;
  opacity: 0.85;
}

/* =====================================================
   PRIMARY NAVIGATION
===================================================== */
.main-navigation {
  color: var(--menu-text);
  display: flex;           /* always horizontal on desktop */
  gap: 25px;
  list-style: none;
  position: static;        /* normal flow */
  background: transparent;
  flex-direction: row;
  padding: 0;
}

.main-navigation a {
  color: var(--menu-link);
  font-weight: 500;
  text-decoration: none;
}

.main-navigation a:hover,
.main-navigation a:focus {
  color: var(--menu-hover);
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
 
}
/* Position submenus properly on desktop */
.main-navigation li {
  margin: 30;
  position: relative;
}
.main-navigation a:hover::after,
.main-navigation a.is-active::after {

}
/* Hide all submenus by default */
.main-navigation ul ul,
.top-bar nav ul li > ul {
  display: none;
  position: absolute;

  background: var(--header-bg, #57919e);
  min-width: 300px;
  padding: 10px 0;
  border-radius: 4px;
  z-index: 999;
  width: 100%;
}
/* Show submenu when parent has 'open' class */
.main-navigation li.open > ul,
.top-bar nav li.open > ul {
  display: block;
}
/* Ensure submenu links display nicely */
.main-navigation ul ul li a,
.top-bar nav ul li > ul li a {
  display: block;
  padding: 8px 8px;
  color: var(--menu-link) !important;
  white-space: nowrap;
}



/* =====================================================
   SECONDARY NAVIGATION
===================================================== */
.secondary-navigation {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e5e5e5;
  padding: 0px 0;
}

.secondary-navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.secondary-navigation a {
  color: var(--text-color);
}

/* =====================================================
   MAIN CONTENT
===================================================== */
.layout-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.main-container {
  padding: 30px 20px;
}

/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background-color: var(--header-bg);
  color: var(--sliderlayer-color);
  padding: 40px 0;
}

.site-footer a {
  color: #ffffff;
}
.footer-inner { 
max-width: 1140px; 
margin: 20px auto; 
padding: 0 15px; 
}

/* =====================================================
   BUTTONS
===================================================== */
button,
.btn {
  background-color: var(--header-bg);
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
}

/* =====================================================
   SLIDER
===================================================== */
.carousel-item {
  position: relative;
  height: 580px;
}
/* Center container logic */ 
.carousel-item .views-field-field-title, 
.carousel-item .views-field-field-subtitle, 
.carousel-item .views-field-field-link { 
left: 50%; 
transform: translateX(-50%); 
text-align: center; 
max-width: 700px; color: #ffffff; 
} 
/* Vertical centering */ 
.carousel-item .views-field-field-title { 
bottom: 70%; 
} 
.carousel-item .views-field-field-subtitle { 
bottom: 48%; 
} 
.carousel-item .views-field-field-link { 
bottom: 30%; 
}
.views-field-field-sliderimage img {
  width: 100%;
  height: 580px;
  object-fit: cover;
}

/* Desktop slider text positioning */
@media (min-width: 769px) {
  .views-field-field-title,
  .views-field-field-subtitle,
  .views-field-field-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 80%;
    text-align: center;
    z-index: 40;
    color: var(--slider-text, #ffffff);
  }

  .views-field-field-title {
    bottom: 60%;
  }

  .views-field-field-subtitle {
    bottom: 40%;
  }

  .views-field-field-link a{
display: inline-block; 
margin-top: 25px; 
padding: 12px 30px; 
background-color: var(--slider-bg); 
color: #ffffff; 
text-decoration: none; 
border-radius: 6px; 
font-weight: 600;    
bottom: 35%;
white-space: nowrap;
  }

  .views-field-field-title .field-content {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    background-color: var(--slider-bg-color, rgba(0, 0, 0, 0.5));
    padding: 10px 16px;
  }

  .views-field-field-subtitle .field-content {
    font-size: 1.2rem;
    margin-top: 10px;
    background-color: var(--slider-bg-color, rgba(0, 0, 0, 0.5));
    padding: 14px 14px;
  }
}

/* =====================================================
   MOBILE SLIDER (NO OVERLAP)768px
===================================================== */
@media (max-width: 768px) {
  .carousel-item {
    height: 380px;
    display: flex;
    align-items: flex-end;
  }

  .views-row {
    
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 15px;
    text-align: center;
  }

  .views-field-field-title,
  .views-field-field-subtitle,
  .views-field-field-link {
    position: static;
    transform: none;
    max-width: 100%;
  }

  .views-field-field-title .field-content {
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 6px;
    background-color: var(--slider-bg-color, rgba(0, 0, 0, 0.5));
    padding: 5px 5px;
  }

  .views-field-field-subtitle .field-content {
    font-size: 1rem;
    margin-bottom: 20px;
    background-color: var(--slider-bg-color, rgba(0, 0, 0, 0.5));
    padding: 5px 5px;
  }

  .views-field-field-link a {
    padding: 10px 22px;
    background-color: var(--slider-bg);
    border-radius: 6px;
    display: inline-block;

  }
}

=====================================================
   MOBILE SLIDER (NO OVERLAP)576px
===================================================== */
@media (max-width: 576px) {
  .carousel-item {
    height: 350px;
    display: flex;
    align-items: flex-end;
  }

  .views-row {
    
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 15px;
    text-align: center;
  }

  .views-field-field-title,
  .views-field-field-subtitle,
  .views-field-field-link {
    position: static;
    transform: none;
    max-width: 100%;
  }

  .views-field-field-title .field-content {
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 6px;
    background-color: var(--slider-bg-color, rgba(0, 0, 0, 0.5));
    padding: 5px 5px;
  }

  .views-field-field-subtitle .field-content {
    font-size: 1rem;
    margin-bottom: 20px;
    background-color: var(--slider-bg-color, rgba(0, 0, 0, 0.5));
    padding: 5px 5px;
  }

  .views-field-field-link a {
    padding: 10px 22px;
    background-color: var(--slider-bg);
    border-radius: 6px;
    display: inline-block;

  }
}
/* =====================================================
   MOBILE HEADER
===================================================== */
.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-color, #fff);
}

/* ================= MOBILE MENU ================= */
@media (max-width: 992px) {
 .site-branding__logo img {
    max-height: 32px;
    max-width: 150px;
  }
  .header-inner {
    position: relative;
    display: flex;

    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    z-index: 1101;
  }

  .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--header-bg, #57919e);
    flex-direction: column;
    padding: 10px 0;
    z-index: 1000;
gap: 10px;
  }

  .main-navigation.open {
    display: flex;
  }

  .main-navigation ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .main-navigation li {
    width: 100%;
  }

  .main-navigation li a {
    display: block;
    padding: 1px 20px;
  }

  /* Submenus */
  .main-navigation ul ul {
    position: static;
    display: none;
    width: 100%;
  }

  .main-navigation li.open > ul {
    display: block;
  }

  .main-navigation ul ul li a {
    padding-left: 35px;
  }
}
@media (max-width: 360px) {
  .site-branding__logo img {
    max-width: 140px;
    max-height: 40px;
  }

  .menu-toggle {
    font-size: 22px;
  }
 .main-navigation {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--header-bg, #57919e);
    flex-direction: column;
    padding: 10px 0;
    z-index: 1000;
gap: 10px;
  }
}


/* =====================================================
   FOOTER GRID
===================================================== */
.footer-top-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;

}

@media (max-width: 768px) {
  .footer-top-wrapper {
    grid-template-columns: 1fr;
  }
}


/* =========================================
   MOBILE SLIDER FIX (TOP OVERLAY)
========================================= */
@media (max-width: 768px) {

  /* Make slide shorter */
  .carousel-item {
    height: 400px;
  }

  .views-field-field-sliderimage img {
    height: 400px;
    object-fit: cover;
  }

  /* Keep overlay but adjust position */
  .views-field-field-title,
  .views-field-field-subtitle,
  .views-field-field-link {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    text-align: center;
    z-index: 50;
  }

  /* Stack vertically from top */
  .views-field-field-title {
    top: 8%;
    bottom: auto;
width: 80%;
    font-size: 1.6rem;
    line-height: 1.25;
    padding: 0 5px;

  }

  .views-field-field-subtitle {
    top: 32%;
width: 80%;
    bottom: auto;
    font-size: 1rem;
    padding: 0 5px;

  }

  .views-field-field-link {
    top: 65%;
    bottom: auto;
  }

  /* Button sizing */
  .views-field-field-link a {
    font-size: 0.95rem;
    padding: 10px 22px;
background-color: var(--slider-bg); 
color: #ffffff; 
  }
}

.views-slideshow-cycle-main-frame,
.views-slideshow-cycle-main-frame-row {
  width: 100% !important;
  max-width: 100%;
  height: auto !important;
}
.views-slideshow-cycle-main-frame .views-row {
  
  width: 100% !important;
  height: auto !important;
  box-sizing: border-box;
}
.views-field-field-review {
  text-align: center;
  padding: 15px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .views-field-field-review {
    font-size: 14px;
    padding: 10px;
  }
}

.feature-card:hover {
  transform: translateY(-10px);
  transition: 0.3s ease-in-out;
  background-color: #f0f8ff; /* light accent color */
}
/* Mobile / touch devices */
@media (hover: none) and (pointer: coarse) {
  .feature-card:active {
    transform: translateY(-10px);
    background-color: #f0f8ff;
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.2);
  }
}

.text-header {
  color: var(--header-bg);
  transition: color 0.3s ease;
}

.text-header:hover {
  opacity: 0.85;
}
:root {
  --link-color: var(--brand-primary);
}


/* Reviews */

.views-field-field-review {
  padding: 15px;

  text-align: center;

  line-height: 1.6;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.feature-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);

  background-color: #f0f8ff;

  box-shadow:
    0 1rem 2rem rgba(0, 0, 0, 0.10);
}

@media (hover: none) and (pointer: coarse) {

  .feature-card:active {
    transform: translateY(-5px);

    background-color: #f0f8ff;

    box-shadow:
      0 1rem 2rem rgba(0, 0, 0, 0.10);
  }

}


/* =========================================================
   TEXT HEADER
   ========================================================= */

.text-header {
  color: var(--header-bg, #57919e);

  transition: opacity 0.3s ease;
}

.text-header:hover {
  opacity: 0.85;
}


/* =========================================================
   MY NET SPIDER HOMEPAGE
   ========================================================= */

.mns-services,
.mns-growth-section,
.mns-portfolio,
.mns-process,
.mns-testimonials {
  background: #ffffff;
}

.mns-eyebrow {
  display: inline-block;

  font-size: 0.78rem;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: #0d6efd;
}

.mns-eyebrow-light {
  color: #8ec5ff;
}


/* =========================================================
   SERVICE CARDS
   ========================================================= */

.mns-service-card {
  position: relative;

  height: 100%;

  padding: 2rem;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 1.25rem;

  box-shadow:
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.04);

  overflow: hidden;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.mns-service-card::before {
  content: "";

  position: absolute;

  inset: 0 0 auto;

  height: 4px;

  background: #0d6efd;

  opacity: 0;

  transition: opacity 0.25s ease;
}

.mns-service-card:hover {
  transform: translateY(-7px);

  border-color: #cfe2ff;

  box-shadow:
    0 1rem 2.5rem rgba(0, 0, 0, 0.09);
}

.mns-service-card:hover::before {
  opacity: 1;
}

.mns-service-icon {
  width: 72px;
  height: 72px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;

  border-radius: 20px;
}

.mns-service-icon svg {
  width: 36px;
  height: 36px;
}

.mns-service-number {
  position: absolute;

  top: 1.5rem;
  right: 1.5rem;

  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 0.1em;

  color: #adb5bd;
}


/* =========================================================
   ICON COLORS
   ========================================================= */

.mns-icon-blue {
  color: #0d6efd;
  background: #eaf3ff;
}

.mns-icon-green {
  color: #198754;
  background: #eaf7f0;
}

.mns-icon-orange {
  color: #d97706;
  background: #fff4df;
}

.mns-icon-purple {
  color: #6f42c1;
  background: #f1ebff;
}


/* =========================================================
   LINKS
   ========================================================= */

.mns-text-link {
  display: inline-flex;

  align-items: center;

  gap: 0.5rem;

  color: #0d6efd;

  font-weight: 700;

  text-decoration: none;
}

.mns-text-link span {
  transition: transform 0.2s ease;
}

.mns-text-link:hover span,
.mns-text-link:focus span {
  transform: translateX(5px);
}

.mns-text-link:hover,
.mns-text-link:focus {
  color: #084298;
}


/* =========================================================
   GROWTH SECTION
   ========================================================= */

.mns-growth-section {
  background: #f8faff;
}

.mns-small-icon {
  width: 48px;
  height: 48px;

  flex: 0 0 48px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border-radius: 14px;
}

.mns-small-icon svg {
  width: 23px;
  height: 23px;
}


/* Dashboard */

.mns-dashboard-card {
  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 1.5rem;

  overflow: hidden;

  box-shadow:
    0 1.5rem 4rem rgba(13, 110, 253, 0.08);
}

.mns-dashboard-header {
  display: flex;

  gap: 7px;

  padding: 1rem 1.25rem;

  background: #f8f9fa;

  border-bottom: 1px solid #e9ecef;
}

.mns-dashboard-header span {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #adb5bd;
}

.mns-score-icon {
  width: 50px;
  height: 50px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #198754;

  background: #eaf7f0;

  border-radius: 50%;
}

.mns-score-icon svg {
  width: 25px;
  height: 25px;
}

.mns-stat-card {
  height: 100%;

  padding: 1rem;

  border: 1px solid #e9ecef;

  border-radius: 1rem;

  background: #ffffff;
}

.mns-stat-card strong {
  display: block;

  margin-top: 0.5rem;
}

.mns-stat-card span {
  display: block;

  margin-top: 0.2rem;

  font-size: 0.85rem;

  color: #6c757d;
}

.mns-stat-icon {
  width: 38px;
  height: 38px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #0d6efd;

  background: #eaf3ff;

  border-radius: 10px;
}

.mns-stat-icon svg {
  width: 21px;
  height: 21px;
}


/* =========================================================
   PORTFOLIO
   ========================================================= */

.mns-project-card {
  height: 100%;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 1.25rem;

  box-shadow:
    0 0.5rem 1.5rem rgba(0, 0, 0, 0.04);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mns-project-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 1rem 2.5rem rgba(0, 0, 0, 0.09);
}

.mns-project-placeholder {
  min-height: 220px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 0.75rem;

  color: #0d6efd;

  background:
    linear-gradient(
      135deg,
      #f1f7ff,
      #f8f9fa
    );

  border-bottom: 1px solid #e9ecef;
}

.mns-project-placeholder svg {
  width: 58px;
  height: 58px;
}

.mns-project-placeholder span {
  font-size: 0.85rem;

  font-weight: 700;

  color: #6c757d;
}

.mns-project-category {
  display: inline-block;

  font-size: 0.75rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: #0d6efd;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.mns-why {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #071a33,
      #0b2b52
    );
}

.mns-why-card {
  height: 100%;

  padding: 2rem;

  border: 1px solid rgba(255,255,255,0.14);

  border-radius: 1.25rem;

  background: rgba(255,255,255,0.045);

  transition:
    transform 0.25s ease,
    background 0.25s ease;
}

.mns-why-card:hover {
  transform: translateY(-5px);

  background: rgba(255,255,255,0.08);
}

.mns-why-icon {
  width: 60px;
  height: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;

  color: #8ec5ff;

  background: rgba(255,255,255,0.08);

  border-radius: 16px;
}

.mns-why-icon svg {
  width: 31px;
  height: 31px;
}

.mns-stat-number {
  margin-bottom: 0.5rem;

  font-size: 2rem;

  line-height: 1;

  font-weight: 800;
}


/* =========================================================
   PROCESS
   ========================================================= */

.mns-process-card {
  position: relative;

  height: 100%;

  padding: 2rem;

  text-align: center;

  border: 1px solid #e5e7eb;

  border-radius: 1.25rem;

  background: #ffffff;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mns-process-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 1rem 2.5rem rgba(0,0,0,0.07);
}

.mns-process-icon {
  position: relative;

  width: 88px;
  height: 88px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: 0 auto 1.5rem;

  color: #0d6efd;

  background: #eaf3ff;

  border-radius: 50%;
}

.mns-process-icon svg {
  width: 38px;
  height: 38px;
}

.mns-process-number {
  position: absolute;

  top: -6px;
  right: -5px;

  width: 30px;
  height: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-size: 0.7rem;

  font-weight: 800;

  color: #ffffff;

  background: #0d6efd;

  border-radius: 50%;
}


/* =========================================================
   PRICING
   ========================================================= */

.mns-price-card,
.mns-web-price,
.mns-seo-plan {
  position: relative;

  height: 100%;

  padding: 2rem;

  background: #ffffff;

  border: 1px solid #e1e5ea;

  border-radius: 1.25rem;

  box-shadow:
    0 0.5rem 1.5rem rgba(0,0,0,0.04);
}

.mns-price-featured,
.mns-web-price-featured,
.mns-seo-plan-featured {
  border: 2px solid #0d6efd;

  box-shadow:
    0 1rem 3rem rgba(13,110,253,0.12);
}

.mns-popular,
.mns-price-label {
  position: absolute;

  top: -13px;
  left: 50%;

  transform: translateX(-50%);

  padding: 0.4rem 1rem;

  white-space: nowrap;

  font-size: 0.72rem;

  font-weight: 700;

  color: #ffffff;

  background: #0d6efd;

  border-radius: 50px;
}

.mns-price-icon {
  width: 58px;
  height: 58px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;

  border-radius: 16px;
}

.mns-price-icon svg {
  width: 28px;
  height: 28px;
}

.mns-price,
.mns-web-price-value {
  margin: 1.5rem 0;

  font-size: 2rem;

  font-weight: 800;
}

.mns-check-list,
.mns-price-list,
.mns-seo-plan-list {
  margin-bottom: 2rem;

  padding-left: 0;

  list-style: none;
}

.mns-check-list li,
.mns-price-list li,
.mns-seo-plan-list li {
  position: relative;

  padding-left: 1.6rem;

  margin-bottom: 0.8rem;

  color: #495057;
}

.mns-check-list li::before,
.mns-price-list li::before,
.mns-seo-plan-list li::before {
  content: "✓";

  position: absolute;

  left: 0;

  font-weight: 800;

  color: #198754;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.mns-testimonials {
  background: #ffffff;
}

.mns-testimonial-card {
  position: relative;

  height: 100%;

  padding: 2rem;

  background: #f8f9fa;

  border: 1px solid #e9ecef;

  border-radius: 1.25rem;
}

.mns-quote-icon {
  font-size: 3.5rem;

  line-height: 1;

  color: #cfe2ff;
}

.mns-stars {
  margin: 0.5rem 0 1rem;

  font-size: 1rem;

  letter-spacing: 0.1em;

  color: #f59f00;
}

.mns-testimonial-card blockquote p {
  margin-bottom: 1.5rem;

  font-size: 1.05rem;

  line-height: 1.7;

  color: #343a40;
}

.mns-testimonial-card figcaption strong {
  display: block;
}

.mns-testimonial-card figcaption span {
  display: block;

  margin-top: 0.2rem;

  font-size: 0.85rem;

  color: #6c757d;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.mns-final-cta {
  background: #f8faff;
}

.mns-cta-box {
  position: relative;

  padding: 4rem 2rem;

  text-align: center;

  background: #ffffff;

  border: 1px solid #dbe7f5;

  border-radius: 1.5rem;

  box-shadow:
    0 1.5rem 4rem rgba(13,110,253,0.08);

  overflow: hidden;
}

.mns-cta-box::before,
.mns-service-cta-box::before {
  content: "";

  position: absolute;

  width: 280px;
  height: 280px;

  top: -160px;
  right: -100px;

  border-radius: 50%;

  background: rgba(13,110,253,0.05);
}

.mns-cta-icon {
  width: 72px;
  height: 72px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: 0 auto 1.5rem;

  color: #0d6efd;

  background: #eaf3ff;

  border-radius: 20px;
}

.mns-cta-icon svg {
  width: 36px;
  height: 36px;
}

.mns-cta-box .lead {
  max-width: 700px;
}


/* =========================================================
   WEBSITE DESIGN PAGE
   ========================================================= */

.mns-service-hero {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 20%,
      rgba(13,110,253,0.10),
      transparent 30%
    ),
    #f8faff;
}

.mns-service-hero h1 {
  max-width: 700px;
}

.mns-hero-trust {
  display: flex;

  flex-wrap: wrap;

  gap: 1.25rem;

  font-size: 0.9rem;

  font-weight: 600;

  color: #495057;
}


/* =========================================================
   WEBSITE VISUAL
   ========================================================= */

.mns-website-visual {
  padding: 1rem;
}

.mns-browser {
  overflow: hidden;

  background: #ffffff;

  border: 1px solid #dbe3ec;

  border-radius: 1.25rem;

  box-shadow:
    0 2rem 5rem rgba(13,110,253,0.14);

  transform: rotate(1deg);

  transition: transform 0.3s ease;
}

.mns-browser:hover {
  transform: rotate(0deg) translateY(-5px);
}

.mns-browser-bar {
  display: flex;

  align-items: center;

  gap: 1rem;

  padding: 0.8rem 1rem;

  background: #f1f3f5;

  border-bottom: 1px solid #e5e7eb;
}

.mns-browser-dots {
  display: flex;

  gap: 5px;
}

.mns-browser-dots span {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #adb5bd;
}

.mns-browser-url {
  flex: 1;

  padding: 0.3rem 0.8rem;

  font-size: 0.72rem;

  color: #6c757d;

  background: #ffffff;

  border-radius: 5px;
}

.mns-browser-content {
  padding: 1.25rem;
}

.mns-demo-nav {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding-bottom: 1rem;

  border-bottom: 1px solid #edf0f3;
}

.mns-demo-nav strong {
  font-size: 0.75rem;

  color: #0d6efd;
}

.mns-demo-hero {
  padding: 2rem 1rem;

  text-align: center;

  background:
    linear-gradient(
      135deg,
      #f1f7ff,
      #ffffff
    );

  border-radius: 1rem;
}

.mns-demo-hero > span {
  font-size: 0.65rem;

  font-weight: 800;

  letter-spacing: 0.1em;

  color: #0d6efd;
}

.mns-demo-hero h2 {
  margin: 0.7rem 0 1rem;

  font-size: clamp(1.5rem, 4vw, 2.3rem);

  font-weight: 800;

  line-height: 1.1;
}

.mns-demo-button {
  display: inline-block;

  padding: 0.6rem 1rem;

  font-size: 0.75rem;

  font-weight: 700;

  color: #ffffff;

  background: #0d6efd;

  border-radius: 7px;
}

.mns-demo-card {
  height: 60px;

  background: #f1f3f5;

  border-radius: 8px;
}


/* =========================================================
   DESIGN INTRO / BENEFITS
   ========================================================= */

.mns-design-intro {
  background: #ffffff;
}

.mns-benefit-card {
  height: 100%;

  padding: 2rem;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 1.25rem;

  box-shadow:
    0 0.5rem 1.5rem rgba(0,0,0,0.035);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mns-benefit-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 1rem 2.5rem rgba(0,0,0,0.08);
}

.mns-feature-icon {
  width: 64px;
  height: 64px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;

  border-radius: 18px;
}

.mns-feature-icon svg {
  width: 30px;
  height: 30px;
}


/* =========================================================
   WHAT WE BUILD
   ========================================================= */

.mns-build-section {
  background: #f8faff;
}

.mns-build-card {
  height: 100%;

  padding: 2rem;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 1.25rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mns-build-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 1rem 2.5rem rgba(0,0,0,0.07);
}

.mns-build-icon {
  width: 60px;
  height: 60px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 1.25rem;

  border-radius: 16px;
}

.mns-build-icon svg {
  width: 29px;
  height: 29px;
}


/* =========================================================
   FEATURES
   ========================================================= */

.mns-features-section {
  background: #ffffff;
}

.mns-feature-item {
  height: 100%;

  display: flex;

  align-items: flex-start;

  gap: 1rem;

  padding: 1.25rem;

  background: #f8faff;

  border: 1px solid #e6edf5;

  border-radius: 1rem;
}

.mns-check-icon {
  flex: 0 0 30px;

  width: 30px;
  height: 30px;

  display: flex;

  align-items: center;
  justify-content: center;

  font-weight: 800;

  color: #198754;

  background: #eaf7f0;

  border-radius: 50%;
}


/* =========================================================
   DESIGN PROCESS
   ========================================================= */

.mns-design-process {
  background: #f8faff;
}

.mns-process-step {
  position: relative;

  height: 100%;

  padding: 2rem;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 1.25rem;

  box-shadow:
    0 0.5rem 1.5rem rgba(0,0,0,0.035);
}

.mns-step-number {
  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 1.5rem;

  font-size: 0.8rem;

  font-weight: 800;

  color: #0d6efd;

  background: #eaf3ff;

  border-radius: 14px;
}


/* =========================================================
   WEBSITE PRICING
   ========================================================= */

.mns-web-price-value {
  margin: 1.25rem 0;

  font-size: 2rem;

  font-weight: 800;
}


/* =========================================================
   FAQ
   ========================================================= */

.mns-faq {
  background: #ffffff;
}

.mns-faq .accordion-item {
  margin-bottom: 0.75rem;

  overflow: hidden;

  border: 1px solid #e5e7eb !important;

  border-radius: 0.75rem !important;
}

.mns-faq .accordion-button {
  padding: 1.25rem;

  font-weight: 700;

  background: #ffffff;

  box-shadow: none;
}

.mns-faq .accordion-button:not(.collapsed) {
  color: #0d6efd;

  background: #f8faff;
}

.mns-faq .accordion-button:focus {
  box-shadow:
    0 0 0 3px rgba(13,110,253,0.15);
}

.mns-faq .accordion-body {
  padding: 1.25rem;
}


/* =========================================================
   SERVICE CTA
   ========================================================= */

.mns-service-cta {
  background: #f8faff;
}

.mns-service-cta-box {
  position: relative;

  padding: 4rem 2rem;

  overflow: hidden;

  background: #ffffff;

  border: 1px solid #dbe7f5;

  border-radius: 1.5rem;

  box-shadow:
    0 1.5rem 4rem rgba(13,110,253,0.08);
}


/* =========================================================
   SEO PAGE
   ========================================================= */

.mns-seo-hero {
  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(25,135,84,0.10),
      transparent 30%
    ),
    #f8faff;
}

.mns-seo-hero h1 {
  max-width: 700px;
}


/* =========================================================
   SEO VISUAL
   ========================================================= */

.mns-seo-visual {
  padding: 1rem;
}

.mns-seo-dashboard {
  padding: 1.5rem;

  background: #ffffff;

  border: 1px solid #dfe7ef;

  border-radius: 1.25rem;

  box-shadow:
    0 2rem 5rem rgba(25,135,84,0.12);

  transform: rotate(-1deg);

  transition: transform 0.3s ease;
}

.mns-seo-dashboard:hover {
  transform: rotate(0deg) translateY(-5px);
}

.mns-seo-dashboard-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 1.25rem;
}

.mns-seo-dashboard-header strong {
  display: block;

  margin-top: 0.15rem;

  font-size: 1.05rem;
}

.mns-seo-status {
  padding: 0.4rem 0.7rem;

  font-size: 0.7rem;

  font-weight: 800;

  color: #198754;

  background: #eaf7f0;

  border-radius: 50px;
}


/* Search */

.mns-search-preview {
  display: flex;

  align-items: center;

  gap: 0.75rem;

  padding: 0.85rem 1rem;

  color: #6c757d;

  background: #f8f9fa;

  border: 1px solid #e5e7eb;

  border-radius: 0.75rem;
}

.mns-search-icon {
  width: 28px;
  height: 28px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #ffffff;

  border-radius: 50%;
}

.mns-search-icon svg {
  width: 15px;
  height: 15px;
}


/* Ranking */

.mns-ranking-card {
  margin-top: 1rem;

  padding: 1.25rem;

  background: #f8faff;

  border-radius: 1rem;
}

.mns-ranking-top {
  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 1rem;

  font-size: 0.85rem;
}

.mns-ranking-top strong {
  color: #198754;
}

.mns-ranking-row {
  display: grid;

  grid-template-columns: 70px 1fr 35px;

  align-items: center;

  gap: 0.6rem;

  margin-bottom: 0.8rem;

  font-size: 0.7rem;
}

.mns-ranking-row:last-child {
  margin-bottom: 0;
}

.mns-ranking-row strong {
  text-align: right;
}

.mns-ranking-bar {
  height: 7px;

  overflow: hidden;

  background: #e9ecef;

  border-radius: 10px;
}

.mns-ranking-bar span {
  display: block;

  height: 100%;

  background: #0d6efd;

  border-radius: inherit;
}


/* SEO stats */

.mns-seo-stat {
  display: flex;

  flex-direction: column;

  padding: 1rem;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 0.9rem;
}

.mns-seo-stat span {
  font-size: 0.7rem;

  color: #6c757d;
}

.mns-seo-stat strong {
  margin-top: 0.25rem;

  font-size: 1.3rem;

  color: #198754;
}


/* =========================================================
   SEO INTRO
   ========================================================= */

.mns-seo-intro {
  background: #ffffff;
}

.mns-seo-benefit {
  height: 100%;

  padding: 2rem;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 1.25rem;

  box-shadow:
    0 0.5rem 1.5rem rgba(0,0,0,0.035);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mns-seo-benefit:hover {
  transform: translateY(-5px);

  box-shadow:
    0 1rem 2.5rem rgba(0,0,0,0.08);
}


/* =========================================================
   SEO SERVICES
   ========================================================= */

.mns-seo-services {
  background: #f8faff;
}

.mns-seo-service-card {
  height: 100%;

  padding: 2rem;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 1.25rem;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mns-seo-service-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 1rem 2.5rem rgba(0,0,0,0.07);
}

.mns-seo-service-card .mns-service-icon {
  width: 60px;
  height: 60px;

  margin-bottom: 1.25rem;

  border-radius: 16px;
}

.mns-seo-service-card .mns-service-icon svg {
  width: 29px;
  height: 29px;
}

.mns-seo-list {
  padding: 0;

  margin: 1.25rem 0 0;

  list-style: none;
}

.mns-seo-list li {
  position: relative;

  padding-left: 1.5rem;

  margin-bottom: 0.65rem;

  font-size: 0.9rem;

  color: #495057;
}

.mns-seo-list li::before {
  content: "✓";

  position: absolute;

  left: 0;

  font-weight: 800;

  color: #198754;
}


/* =========================================================
   SEO PROCESS
   ========================================================= */

.mns-seo-process {
  background: #ffffff;
}

.mns-seo-step {
  height: 100%;

  padding: 2rem;

  background: #f8faff;

  border: 1px solid #e5e7eb;

  border-radius: 1.25rem;
}


/* =========================================================
   SEO AUDIT CTA
   ========================================================= */

.mns-seo-audit-cta {
  background: #eaf3ff;
}

.mns-seo-audit-cta .mns-eyebrow {
  color: #0d6efd;
}


/* =========================================================
   SEO PLANS
   ========================================================= */

.mns-seo-plans {
  background: #f8faff !important;
}

.mns-seo-plan-price {
  margin: 1.25rem 0;

  font-size: 2.2rem;

  font-weight: 800;
}

.mns-seo-plan-price span {
  font-size: 0.9rem;

  font-weight: 500;

  color: #6c757d;
}


/* =========================================================
   WEBSITE SUPPORT PAGE
   ========================================================= */

.mns-support-page {
  color: #374151;
}


/* =========================================================
   SUPPORT HERO
   ========================================================= */

.mns-support-hero {
  padding: 100px 0;

  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(13,110,253,0.10),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #f7fbff 0%,
      #ffffff 100%
    );
}

.mns-support-hero h1 {
  max-width: 650px;

  margin: 18px 0 25px;

  color: #111827;

  font-size: clamp(2.5rem,5vw,4.4rem);

  font-weight: 800;

  line-height: 1.05;

  letter-spacing: -0.045em;
}

.mns-support-hero h1 span {
  display: block;

  color: #0d6efd;
}

.mns-support-eyebrow {
  display: inline-block;

  color: #0d6efd;

  font-size: 0.75rem;

  font-weight: 800;

  letter-spacing: 0.14em;
}

.mns-support-lead {
  max-width: 650px;

  font-size: 1.25rem;

  line-height: 1.7;

  color: #4b5563;
}

.mns-support-hero p:not(.mns-support-lead) {
  max-width: 650px;

  line-height: 1.8;
}

.mns-support-buttons {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 30px;
}


/* =========================================================
   SUPPORT DASHBOARD
   ========================================================= */

.mns-support-card {
  max-width: 500px;

  margin: auto;

  padding: 24px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 24px;

  box-shadow:
    0 25px 70px rgba(15,23,42,0.12);
}

.mns-support-card-header {
  display: flex;

  align-items: center;

  justify-content: space-between;

  padding-bottom: 18px;

  border-bottom: 1px solid #eef2f7;

  color: #6b7280;

  font-size: 0.8rem;

  font-weight: 700;
}


/* =========================================================
   SUPPORT HEALTH
   ========================================================= */

.mns-health-box {
  display: flex;

  align-items: center;

  gap: 15px;

  margin-top: 22px;

  padding: 17px;

  background: #f0fdf4;

  border: 1px solid #dcfce7;

  border-radius: 15px;
}

.mns-health-check {
  width: 46px;
  height: 46px;

  flex-shrink: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #15803d;

  background: #dcfce7;

  border-radius: 13px;

  font-size: 1.3rem;

  font-weight: 800;
}

.mns-health-box small {
  display: block;

  margin-bottom: 3px;

  color: #6b7280;

  font-size: 0.62rem;

  font-weight: 800;

  letter-spacing: 0.1em;
}

.mns-health-box strong {
  color: #166534;

  font-size: 0.95rem;
}


/* =========================================================
   HEALTH LIST
   ========================================================= */

.mns-health-list {
  margin-top: 14px;
}

.mns-health-row {
  display: grid;

  grid-template-columns: 30px 1fr auto;

  align-items: center;

  gap: 8px;

  padding: 14px 0;

  border-bottom: 1px solid #eef2f7;

  font-size: 0.85rem;
}

.mns-health-row:last-child {
  border-bottom: 0;
}

.mns-health-row strong {
  color: #198754;

  font-size: 0.72rem;
}

.mns-check {
  width: 25px;
  height: 25px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #198754;

  background: #ecfdf3;

  border-radius: 50%;

  font-size: 0.7rem;

  font-weight: 800;
}


/* =========================================================
   SUPPORT PERFORMANCE
   ========================================================= */

.mns-performance {
  display: flex;

  align-items: flex-end;

  justify-content: space-between;

  margin-top: 15px;

  padding: 16px;

  background: #f8fafc;

  border-radius: 15px;
}

.mns-performance small {
  display: block;

  color: #6b7280;

  font-size: 0.6rem;

  font-weight: 800;

  letter-spacing: 0.08em;
}

.mns-performance strong {
  display: block;

  margin-top: 3px;

  color: #0d6efd;

  font-size: 1.5rem;
}

.mns-performance-bars {
  height: 45px;

  display: flex;

  align-items: flex-end;

  gap: 5px;
}

.mns-performance-bars span {
  width: 8px;

  display: block;

  background: #0d6efd;

  border-radius: 5px 5px 0 0;
}

.mns-performance-bars .bar-1 {
  height: 30%;
}

.mns-performance-bars .bar-2 {
  height: 45%;
}

.mns-performance-bars .bar-3 {
  height: 40%;
}

.mns-performance-bars .bar-4 {
  height: 60%;
}

.mns-performance-bars .bar-5 {
  height: 55%;
}

.mns-performance-bars .bar-6 {
  height: 72%;
}

.mns-performance-bars .bar-7 {
  height: 85%;
}

.mns-performance-bars .bar-8 {
  height: 100%;
}


/* =========================================================
   SUPPORT SECTION HEADINGS
   ========================================================= */

.mns-section-heading {
  max-width: 800px;

  margin: 0 auto 55px;

  text-align: center;
}

.mns-section-heading-left {
  margin-left: 0;

  text-align: left;
}

.mns-section-heading h2 {
  margin: 15px 0;

  color: #111827;

  font-size: clamp(2rem,4vw,3rem);

  font-weight: 800;

  letter-spacing: -0.035em;
}

.mns-section-heading p {
  margin: 0;

  color: #6b7280;

  font-size: 1.1rem;

  line-height: 1.75;
}


/* =========================================================
   WHY SUPPORT
   ========================================================= */

.mns-support-why {
  padding: 100px 0;

  background: #ffffff;
}

.mns-support-benefit {
  position: relative;

  height: 100%;

  padding: 35px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 20px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mns-support-benefit:hover {
  transform: translateY(-5px);

  box-shadow:
    0 20px 50px rgba(15,23,42,0.08);
}

.mns-support-icon {
  width: 54px;
  height: 54px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: #0d6efd;

  background: #edf4ff;

  border-radius: 14px;
}

.mns-support-icon svg,
.mns-support-service-icon svg {
  fill: none;

  stroke: currentColor;

  stroke-width: 1.7;

  stroke-linecap: round;

  stroke-linejoin: round;
}

.mns-support-icon svg {
  width: 27px;
  height: 27px;
}

.mns-card-number {
  position: absolute;

  top: 35px;
  right: 35px;

  color: #d1d5db;

  font-size: 0.75rem;

  font-weight: 800;
}

.mns-support-benefit h3 {
  margin: 25px 0 12px;

  color: #111827;

  font-size: 1.3rem;
}

.mns-support-benefit p {
  margin: 0;

  color: #6b7280;

  line-height: 1.75;
}


/* =========================================================
   SUPPORT SERVICES
   ========================================================= */

.mns-support-services {
  padding: 100px 0;

  background: #f8fafc;
}

.mns-support-service {
  position: relative;

  height: 100%;

  padding: 35px;

  background: #ffffff;

  border: 1px solid #e5e7eb;

  border-radius: 18px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.mns-support-service:hover {
  transform: translateY(-5px);

  box-shadow:
    0 18px 45px rgba(15,23,42,0.08);
}

.mns-service-number {
  position: absolute;

  top: 30px;
  right: 30px;

  color: #d1d5db;

  font-size: 0.75rem;

  font-weight: 800;
}

.mns-support-service-icon {
  width: 52px;
  height: 52px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin-bottom: 25px;

  color: #0d6efd;

  background: #edf4ff;

  border-radius: 14px;
}

.mns-support-service-icon svg {
  width: 25px;
  height: 25px;
}

.mns-support-service h3 {
  margin-bottom: 12px;

  color: #111827;

  font-size: 1.25rem;
}

.mns-support-service p {
  color: #6b7280;

  line-height: 1.7;
}

.mns-support-service a {
  display: inline-block;

  margin-top: 8px;

  color: #0d6efd;

  font-weight: 700;

  text-decoration: none;
}

.mns-support-service a:hover {
  text-decoration: underline;
}


/* =========================================================
   SUPPORT PROCESS
   ========================================================= */

.mns-support-process {
  padding: 100px 0;

  background: #ffffff;
}

.mns-support-process .mns-process-step {
  text-align: center;

  padding: 0;

  border: 0;

  box-shadow: none;
}

.mns-support-process .mns-process-step > span {
  width: 62px;
  height: 62px;

  display: flex;

  align-items: center;
  justify-content: center;

  margin: 0 auto;

  color: #0d6efd;

  background: #edf4ff;

  border: 1px solid #dbeafe;

  border-radius: 50%;

  font-weight: 800;
}

.mns-support-process .mns-process-step h3 {
  margin: 22px 0 10px;

  color: #111827;

  font-size: 1.2rem;
}

.mns-support-process .mns-process-step p {
  max-width: 330px;

  margin: auto;

  color: #6b7280;

  line-height: 1.7;
}


/* =========================================================
   SUPPORT CTA
   ========================================================= */

.mns-support-cta {
  padding: 100px 0;
}

.mns-support-cta-box {
  padding: 75px 30px;

  text-align: center;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(13,110,253,0.10),
      transparent 30%
    ),
    #f8fbff;

  border: 1px solid #dbeafe;

  border-radius: 25px;
}

.mns-support-cta-box h2 {
  max-width: 750px;

  margin: 15px auto;

  color: #111827;

  font-size: clamp(2rem,4vw,3rem);

  font-weight: 800;

  letter-spacing: -0.035em;
}

.mns-support-cta-box p {
  max-width: 650px;

  margin: 0 auto 28px;

  color: #6b7280;

  font-size: 1.1rem;

  line-height: 1.7;
}


/* =========================================================
   ACCESSIBILITY / FOCUS
   ========================================================= */

a:focus-visible,
button:focus-visible,
.mns-text-link:focus-visible,
.mns-service-card a:focus-visible,
.mns-project-card a:focus-visible,
.mns-price-card a:focus-visible,
.mns-cta-box a:focus-visible,
.mns-service-hero a:focus-visible,
.mns-service-cta a:focus-visible,
.mns-faq button:focus-visible,
.mns-seo-hero a:focus-visible,
.mns-seo-audit-cta a:focus-visible,
.mns-support-page a:focus-visible {
  outline: 3px solid rgba(13,110,253,0.45);

  outline-offset: 4px;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
  }

  .mns-service-card,
  .mns-project-card,
  .mns-why-card,
  .mns-process-card,
  .mns-text-link span,
  .mns-browser,
  .mns-benefit-card,
  .mns-build-card,
  .mns-seo-dashboard,
  .mns-seo-benefit,
  .mns-seo-service-card,
  .mns-support-benefit,
  .mns-support-service {
    transition: none !important;
  }

  .mns-service-card:hover,
  .mns-project-card:hover,
  .mns-why-card:hover,
  .mns-process-card:hover,
  .mns-browser:hover,
  .mns-benefit-card:hover,
  .mns-build-card:hover,
  .mns-seo-dashboard:hover,
  .mns-seo-benefit:hover,
  .mns-seo-service-card:hover,
  .mns-support-benefit:hover,
  .mns-support-service:hover {
    transform: none;
  }
}


/* =========================================================
   TABLET / MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 992px) {

  .header-inner {
    min-height: 70px;

    padding: 10px 15px;
  }

  .site-branding__logo img {
    max-width: 170px;

    max-height: 50px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-navigation {
    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    display: none;

    width: 100%;

    margin: 0;

    padding: 10px 15px 15px;

    background: var(--header-bg, #57919e);

    box-shadow:
      0 10px 25px rgba(0,0,0,0.15);

    z-index: 1050;
  }

  .main-navigation.open {
    display: block;
  }

  .main-navigation > ul {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;
  }

  .main-navigation li {
    width: 100%;
  }

  .main-navigation li a {
    width: 100%;

    min-height: 44px;

    padding: 11px 15px;

    color: var(--menu-link, #ffffff);

    border-radius: 5px;
  }

  .main-navigation li a:hover,
  .main-navigation li a:focus {
    background: rgba(255,255,255,0.10);
  }


  /* Mobile dropdown */

  .main-navigation ul ul {
    position: static;

    display: none;

    width: 100%;
    min-width: 0;

    margin: 3px 0 5px;

    padding: 5px 0;

    background: rgba(0,0,0,0.10);

    border-radius: 5px;

    box-shadow: none;
  }

  .main-navigation li.open > ul {
    display: block;
  }

  .main-navigation ul ul li a {
    padding-left: 30px;

    font-size: 14px;
  }

}


/* =========================================================
   MOBILE SLIDER
   ========================================================= */

@media (max-width: 768px) {

  .carousel-item {
    height: 400px;
  }

  .views-field-field-sliderimage img {
    height: 400px;

    object-fit: cover;
  }

  .carousel-item .views-field-field-title,
  .carousel-item .views-field-field-subtitle,
  .carousel-item .views-field-field-link {
    position: absolute;

    left: 50%;

    width: 82%;
    max-width: 100%;

    transform: translateX(-50%);

    text-align: center;

    z-index: 50;
  }

  .carousel-item .views-field-field-title {
    top: 8%;

    bottom: auto;
  }

  .carousel-item .views-field-field-subtitle {
    top: 32%;

    bottom: auto;
  }

  .carousel-item .views-field-field-link {
    top: 65%;

    bottom: auto;
  }

  .views-field-field-title .field-content {
    font-size: 1.6rem;

    line-height: 1.25;

    padding: 7px 10px;
  }

  .views-field-field-subtitle .field-content {
    font-size: 1rem;

    line-height: 1.45;

    padding: 7px 10px;
  }

  .views-field-field-link a {
    padding: 10px 22px;

    font-size: 0.95rem;
  }

  .views-field-field-review {
    padding: 10px;

    font-size: 14px;
  }

}


/* =========================================================
   MOBILE GENERAL
   ========================================================= */

@media (max-width: 767.98px) {

  .layout-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-container {
    padding: 25px 15px;
  }

  .mns-service-card,
  .mns-price-card,
  .mns-process-card,
  .mns-testimonial-card,
  .mns-web-price,
  .mns-seo-plan {
    padding: 1.5rem;
  }

  .mns-dashboard-card {
    border-radius: 1rem;
  }

  .mns-cta-box {
    padding: 3rem 1.5rem;

    border-radius: 1rem;
  }

  .mns-project-placeholder {
    min-height: 180px;
  }


  /* Website Design */

  .mns-service-hero {
    text-align: center;
  }

  .mns-hero-trust {
    justify-content: center;
  }

  .mns-website-visual {
    padding: 0;
  }

  .mns-browser {
    transform: none;
  }

  .mns-service-cta-box {
    padding: 3rem 1.5rem;
  }


  /* SEO */

  .mns-seo-hero {
    text-align: center;
  }

  .mns-seo-visual {
    padding: 0;
  }

  .mns-seo-dashboard {
    transform: none;
  }

  .mns-ranking-row {
    grid-template-columns: 60px 1fr 30px;
  }

  .mns-seo-audit-cta {
    text-align: center;
  }


  /* Support */

  .mns-support-hero,
  .mns-support-why,
  .mns-support-services,
  .mns-support-process,
  .mns-support-cta {
    padding: 65px 0;
  }

  .mns-support-hero h1 {
    font-size: 2.5rem;
  }

  .mns-support-card {
    padding: 18px;
  }

  .mns-health-row {
    grid-template-columns: 28px 1fr;
  }

  .mns-health-row strong {
    grid-column: 2;
  }

  .mns-support-buttons {
    flex-direction: column;
  }

  .mns-support-buttons .btn {
    width: 100%;
  }


  /* Footer */

  .footer-top-wrapper {
    grid-template-columns: 1fr;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 576px) {

  .header-inner {
    min-height: 65px;

    padding: 8px 12px;
  }

  .site-branding__logo img {
    max-width: 145px;

    max-height: 42px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;

    font-size: 22px;
  }

  .main-navigation {
    padding: 8px 12px 12px;
  }

  .main-navigation li a {
    padding: 10px 12px;

    font-size: 15px;
  }

  .carousel-item {
    height: 350px;
  }

  .views-field-field-sliderimage img {
    height: 350px;
  }

  .carousel-item .views-field-field-title {
    top: 7%;
  }

  .carousel-item .views-field-field-subtitle {
    top: 31%;
  }

  .carousel-item .views-field-field-link {
    top: 65%;
  }

  .views-field-field-title .field-content {
    font-size: 1.35rem;
  }

  .views-field-field-subtitle .field-content {
    font-size: 0.9rem;
  }

}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

  .site-branding__logo img {
    max-width: 135px;

    max-height: 40px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;

    font-size: 21px;
  }

  .carousel-item {
    height: 330px;
  }

  .views-field-field-sliderimage img {
    height: 330px;
  }

  .views-field-field-title .field-content {
    font-size: 1.2rem;
  }

  .views-field-field-subtitle .field-content {
    font-size: 0.85rem;
  }

}


/* =========================================================
   LARGE DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

  .mns-service-card {
    padding: 2.25rem;
  }

  .mns-why-card {
    padding: 2.25rem;
  }

}