/* ═══════════════════════════════════════════════════════════════
   HostCurator – Single Service Page Styles
   Pixel-matched to service.html original design
   Fonts: Unbounded (headings) · Syne (body)
   Palette: #000 bg · #212232 card · #7947dd purple · #fdb920 yellow
════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@300;400;600;700&family=Unbounded:wght@400;600;700&display=swap');
body {
    background: linear-gradient(0deg, var(--color-black-solid, #000) 0%, var(--color-black-solid, #000) 100%), var(--color-white-solid, #FFF);
    margin: 0;
}

:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
}

.main-container {
  overflow: hidden;
}

.main-container,
.main-container * {
  box-sizing: border-box;
}

.main-container {
  position: relative;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

@media (min-width: 1600px) {
    .main-container {
        width: 1536px;
        height: 4300px;
    }
}


/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
#main-page-body-id{
  background-color: #161616!important;
}
:root {
  --bg:         #000000;
  --card:       #222333;
  --surface:    #18181f;
  --border:     rgba(255,255,255,.09);
  --purple:     #7947dd;
  --purple-h:   rgba(121,71,221,.18);
  --yellow:     #fdb920;
  --white:      #ffffff;
  --muted:      rgba(255,255,255,.5);
  --muted2:     rgba(255,255,255,.7);

  --fh:         'Unbounded', sans-serif;
  --fb:         'Syne', sans-serif;

  --r-card:     24px;
  --r-pill:     999px;
  --ease:       .22s ease;

 --px: clamp(1.5rem, 4vw, 60px);
  --max:        1800px;
}

html { scroll-behavior: smooth; }

body {
  /* background: var(--bg); */
  color: var(--white);
  font-family: var(--fb);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Section wrapper ─────────────────────────────────────────── */
.sc-section {
 padding: clamp(3rem, 5vw, 60px) var(--px);
}



.sc-section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

/* ── Shared dot ──────────────────────────────────────────────── */
.sc-feat-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  display: inline-block;
}


/* ════════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════════ */
.sc-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 26px;
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: var(--r-pill);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  transition: background var(--ease), border-color var(--ease);
}
.sc-btn-outline:hover { background: rgba(255,255,255,.07); border-color: var(--white); }

.sc-btn-yellow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto; /* center */
  width: fit-content;

  padding: 10px 20px;
  background: var(--yellow);
  border: 2px solid #000;
  border-radius: var(--r-pill);

  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  color: #000;

  text-transform: uppercase;
  letter-spacing: .04em;

  white-space: nowrap; /* keep if text is short */
  overflow: hidden;

  transition: opacity var(--ease), transform var(--ease);
}
.sc-btn-yellow:hover { opacity: .87; transform: translateY(-1px); }
.sc-btn-yellow--full { width: 100%; justify-content: center; }


/* ════════════════════════════════════════════════════════════════
   SECTION 1 – HERO
   Dark card #212232 · purple glow bottom-left · price card right
════════════════════════════════════════════════════════════════ */
/* ===== SECTION WRAP ===== */
.sc-hero-wrap {
  background: #000;
  padding: 60px 0;
  overflow: visible;
}

/* ===== MAIN DARK CARD ===== */
.sc-hero-card {
  position: relative;
  display: flex;
  align-items: center;
  background: #16171d;
  border-radius: 30px;
  padding: 50px 50px;
  width: 94%;
  margin: 0 auto;
  min-height: 420px;
  overflow: visible;
}

/* ===== BACKGROUND IMAGE WRAPPER ===== */
.sc-hero-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80%;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  z-index: 1;
  pointer-events: none;
}

/* ===== UNION IMAGE ===== */
.sc-hero-bg-img {
  position: absolute;
 bottom: -2%;
  left: -1%;
  width: 50%;
  height: 100%;
  background: url('./Union1.png') no-repeat;
  background-size: contain;
  background-position: bottom left;
  opacity: 0.7;
}


/* ===== LEFT CONTENT ===== */
.sc-hero-left {
  flex: 1;
  max-width: 65%;
  position: relative;
  z-index: 3;
}

.sc-hero-title {
  color: #fff;
  font-family: var(--fh);
  font-size: clamp(24px, 3vw, 40px); 
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.sc-hero-desc {
  color: rgba(255,255,255,0.8);
  margin-top: 20px;
  line-height: 1.6;
  
}

/* ===== BUTTONS ===== */
.sc-hero-ctas {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sc-btn-outline {
  padding: 12px 20px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.sc-btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ===== FLOATING PRICE CARD ===== */
.sc-price-card {
  position: absolute;
  right: 45px;
  top: -26px;
  bottom: -26px;
  background: var(--purple);
  border-radius: 25px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 5;
  width:30%;
  box-shadow: 20px 0px 60px rgba(0,0,0,0.5);
}

/* ===== PRICE TEXT ===== */
.sc-price-label {
  color: rgba(255,255,255,0.85);
  
}

.sc-price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  
}

.sc-price-number {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.sc-price-duration {

  font-weight: 800;
  color: #fff;
}

/* ===== FEATURE LIST ===== */
.sc-feat-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0rem;
}

.sc-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
 
}

.sc-feat-dot {
  width: 10px;
  height: 10px;
  background: #f89e97;
  border-radius: 50%;
}

@media (min-width: 1200px) {
.sc-plan-card--popular{
margin: 10px;
}
}
/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .sc-hero-card {
    flex-direction: column;
    padding: 25px;
  }

  .sc-hero-left {
    max-width: 100%;
  }

  .sc-price-card {
    position: relative;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    margin-top: 40px;
  }

  .sc-hero-bg {
    width: 100%;
  }

  .sc-hero-bg-img {
    width: 70%;
  }
}

/* ════════════════════════════════════════════════════════════════
   SECTION 2 – FEATURES
   Big faded heading · 4-col grid · transparent bg · just dividers
════════════════════════════════════════════════════════════════ */
.sc-features { background: transparent; }
/* Target the bootstrap icons in your feature tiles */
.bi {
    color: #8b5cf6; 
    stroke-width: 1.5px;
}
.sc-features-heading {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 72px);
}

/* BIG faded heading – huge, grey, all-caps */
.sc-heading-faded {
  font-family: var(--fh);
  font-size: clamp(24px, 3vw, 40px); 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: 1.0;
  color: #666666;
  margin-bottom: 16px;
}

.sc-heading--center { text-align: center; }

.sc-subheading {
  font-family: var(--fb);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
}

/* 4-column grid — no outer card, just internal right-border dividers */
.sc-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.sc-feature-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(1.25rem, 2.5vw, 28px) clamp(1rem, 2vw, 24px);
  border-right: 1px solid var(--border);
  transition: background var(--ease);
}
.sc-feature-card:last-child { border-right: none; }
.sc-feature-card:hover { background: var(--purple-h); }

.sc-feature-icon {
  font-size: 1.4rem;
  line-height: 1;
  opacity: .85;
}

.sc-feature-title {
  font-family: var(--fb);
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
}

.sc-feature-desc {
  padding-top: 15px;
  font-family: var(--fb);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .sc-features-grid { grid-template-columns: 1fr 1fr; }
  .sc-feature-card:nth-child(2) { border-right: none; }
  .sc-feature-card:nth-child(1),
  .sc-feature-card:nth-child(2) { border-bottom: 1px solid var(--border); }
}
@media (max-width: 560px) {
  .sc-features-grid { grid-template-columns: 1fr; }
  .sc-feature-card { border-right: none; border-bottom: 1px solid var(--border); }
  .sc-feature-card:last-child { border-bottom: none; }
}


/* ════════════════════════════════════════════════════════════════
   SECTION 3 – COMPARISON TABLE
   Dark card · centered BIG title · purple header row · yellow managed col
════════════════════════════════════════════════════════════════ */
.sc-compare-section { background: transparent; }

.sc-compare-card {
  background: var(--card);
  border-radius: var(--r-card);
  overflow: hidden;
}
.sc-compare-card {
  background: var(--card);
  border-radius: var(--r-card);
  overflow: hidden;
}
/* ── Comparison Section – Purple Ambient Glow ── */
.sc-compare-section {
  position: relative;
}

.sc-compare-section::before,
.sc-compare-section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 220px;
  background: radial-gradient(ellipse at center, rgba(111, 65, 203, 0.45) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(30px);
}

.sc-compare-section::before {
 
   top: -80px;  
}

.sc-compare-section::after {
  bottom: -80px; 
}

/* Make sure the card sits above the glow */
.sc-compare-section .sc-section-inner {
  position: relative;
  z-index: 1;
}
.sc-compare-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: clamp(1.5rem, 3vw, 36px) clamp(1.5rem, 3vw, 36px) clamp(1.25rem, 2.5vw, 28px);
  flex-wrap: wrap;
}

.sc-compare-title {
  font-family: var(--fh);
  font-size: clamp(1rem, 2.2vw, 1.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: var(--white);
}

.sc-yellow-badge {
  background: var(--yellow);
  color: #000;
  font-family: var(--fh);
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}

.sc-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.sc-table-header,
.sc-table-row {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 2fr;
}

/* Purple header row */
.sc-table-header { background: var(--purple); }

.sc-th {
  padding: 14px clamp(1rem, 2.5vw, 28px);
  font-family: var(--fb);
  font-size: clamp(.7rem, .95vw, .82rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.9);
}
.sc-th--last { color: var(--white); }

.sc-table-row {
  border-bottom: 1px solid var(--border);
  transition: background var(--ease);
}
.sc-table-row:last-child { border-bottom: none; }
.sc-table-row:hover { background: rgba(255,255,255,.03); }

.sc-td {
  padding: 16px clamp(1rem, 2.5vw, 28px);
  font-family: var(--fb);
  font-size: clamp(.8rem, 1.1vw, .92rem);
  color: rgba(255,255,255,.65);
}
.sc-td--feature { font-weight: 600; color: var(--white); }
.sc-td--unmanaged { color: var(--muted); }
/* Managed col — yellow text, no checkmark */
.sc-td--highlight { color: var(--yellow); font-weight: 600; }

@media (max-width: 600px) {
  .sc-table-header, .sc-table-row { min-width: 480px; }
}


/* wp_editor table output */
.sc-comp-html-wrap {
  /* Remove the left/right padding so the purple header touches the edges like the screenshot */
  padding: 0; 
 
  border-radius: 25px; 
  overflow: hidden;    
  border: 1px solid var(--border);
  background-color:#161626;
    margin: 50px;
}

.sc-comp-html-wrap table {
  width: 100%;
  border-radius: 10p;
  font-family: var(--fb);
  background-color:#161626;

}

.sc-comp-html-wrap table th {
  background: var(--purple);
  padding: 20px; 
  text-align: left;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--white);
  padding: 30px 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.sc-comp-html-wrap table td {
  padding: 30px 35px; 
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border); 
  color: rgba(255,255,255,.6);
  

}

/* Remove last right border */
.sc-comp-html-wrap table th:last-child,
.sc-comp-html-wrap table td:last-child {
  border-right: none;
}

/* Remove last bottom border */
.sc-comp-html-wrap table tr:last-child td {
  border-bottom: none;
}

/* Styling specific columns */
.sc-comp-html-wrap table td:first-child { 
  font-weight: 700; 
  color: var(--white); 
  
  font-size: 1.1rem; /* Bigger feature labels */
}

.sc-comp-html-wrap table td:last-child { 
  color: var(--yellow); 
  font-weight: 600; 
}

@media (max-width: 768px) {
  /* 1. Fix the outer container spacing */
  .sc-comp-html-wrap {
    margin: 20px 15px;
    overflow-x: auto;   
    -webkit-overflow-scrolling: touch;
  }

  /* 2. Prevent the table from squishing */
  .sc-comp-html-wrap table {
    min-width: 550px; 
  }

  /* 3. Scale down the bulky padding for smaller screens */
  .sc-comp-html-wrap table th, 
  .sc-comp-html-wrap table td {
    padding: 15px 20px; 
  }

  /* 4. Adjust font sizes for mobile readability */
  .sc-comp-html-wrap table td:first-child { 
    font-size: 0.95rem; 
  }
  
  .sc-comp-html-wrap table th {
    font-size: 0.7rem;
    padding: 20px;
  }

  /* 5. Optional: Add a visible scrollbar so users know they can swipe */
  .sc-comp-html-wrap::-webkit-scrollbar {
    height: 4px;
  }
  .sc-comp-html-wrap::-webkit-scrollbar-thumb {
    background: var(--purple);
    border-radius: 10px;
  }
}

/* ════════════════════════════════════════════════════════════════
   SECTION 4 – PLATFORMS
   Big faded heading · 4-col dark cards · yellow category · circular badges
════════════════════════════════════════════════════════════════ */
.logo-list {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}


.platform-logo:hover {
    filter: grayscale(0%); 
    opacity: 1;
    transform: translateY(-2px);
}
.sc-platforms-heading {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 60px);
}

.sc-platforms-title {
  font-family: var(--fh);
  font-size: clamp(24px, 3vw, 40px); 
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: 1.0;
  color: #6b696f;
   padding-bottom: 25px;
  text-align: center;
}

.sc-platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}


.sc-platform-box:hover { border-color: var(--purple); transform: translateY(-3px); }

.sc-platform-category {
  font-family: var(--fb);
  font-size: .88rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #c0c1c5;
}

.sc-platform-items {
  font-family: var(--fb);
  line-height: 1.5;
  padding-top: 12px;
   font-size: 22px;
}



/* 1. Ensure the container pushes icons to the bottom */
.sc-platform-box {
  background: #212233; 
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  height: 100%; 
  transition: all 0.3s ease;
}

/* 2. Fix the Badge Row */
.sc-platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; 
  margin-top: auto; 
  padding-top: 40px;
}

/* 3. The Icon Box */
.sc-platform-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px; 
  height: 32px;
  background: #ffffff;
  border-radius: 10px; 
  padding: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

/* 4. The Logo - Ensure opacity is 1 */
.platform-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 1 !important; 
  filter: none !important;
}




@media (max-width: 900px) {
  .sc-platforms-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  
}
@media (max-width: 500px) {
  .sc-platforms-grid { grid-template-columns: 1fr; }
}


/* ════════════════════════════════════════════════════════════════
   SECTION 5 – PRICING
   Title+badge · 3-col · middle card full purple bg · big price
════════════════════════════════════════════════════════════════ */

.sc-pricing-heading {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 60px);
}

.sc-pricing-title {
  font-family: var(--fh);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sc-plans-badge,
.sc-faq-badge {
  background: #ffdedd;
  color: black;
  font-family: var(--fh);
  
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--r-pill);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}

.sc-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sc-plan-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  margin-bottom: 20px;
  transition: transform var(--ease);
  z-index: 99;
}
.sc-plan-card:hover { transform: translateY(-4px); }

/* Popular = full purple */
/* Update this class in your CSS file */
.sc-plan-card--popular {
  background: var(--purple);
  border-color: var(--purple);
  transform: scale(1.09); 
  z-index: 10; 
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  will-change: transform; 
  outline: 1px solid transparent;

  /* Add this shadow effect below */
  box-shadow: 0 0 150px 50px rgba(121, 71, 221, 0.45);
}

.sc-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: #000;
  font-family: var(--fh);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.sc-plan-name-wrap { display: flex; flex-direction: column; gap: 4px; }

.sc-plan-name {
  font-family: var(--fh);
  
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}

.sc-plan-subtitle {
  font-family: var(--fb);
  color: rgba(255,255,255,.65);
}

.sc-plan-price-wrap {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px;
}

.sc-plan-price {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.sc-plan-suffix {
  font-family: var(--fb);
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  align-self: flex-end;
  padding-bottom: 2px;
}

.sc-plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding-left: 1px;
}

.sc-plan-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fb);
  color: rgba(255,255,255,.85);
}


/* ════════════════════════════════════════════════════════════════
   SECTION 6 – FAQ
   Semi-transparent items · chevron · centered list
════════════════════════════════════════════════════════════════ */

.sc-section-inners{
  padding:50px;
  background: var(--card);
  border-radius: var(--r-card);
}
.sc-faq-heading {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 48px);
}

.sc-faq-list {
 
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-faq-item {
  background: var(--white);;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--ease), background var(--ease);
}
.sc-faq-item:has(.sc-faq-btn[aria-expanded="true"]) {
  border-color: rgba(255,255,255,.2);
  background: #fbfbfc;
}

.sc-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: clamp(.9rem, 1.8vw, 18px) clamp(1.1rem, 2.2vw, 22px);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
}

.sc-faq-q {
  font-family: var(--fb);
  color: var(--black);
  line-height: 1.45;
}

/* Chevron — no circle */
.sc-faq-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
   color: var(--black);
  transition: transform var(--ease), color var(--ease);
  line-height: 1;
}
.sc-faq-btn[aria-expanded="true"] .sc-faq-icon {
  transform: rotate(180deg);
  color: var(--black);
}

.sc-faq-body {
  padding: 0 clamp(1.1rem, 2.2vw, 22px) clamp(.9rem, 1.8vw, 18px);
}

.sc-faq-answer {
  font-family: var(--fb);
  font-size: clamp(.8rem, 1.05vw, .9rem);
  color: black;
  line-height: 1.7;
}

@media (max-width: 860px) { .sc-contact-card { grid-template-columns: 1fr; } }
@media (max-width: 520px)  { .sc-form-grid { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════════════════════════════
   HERO RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  .sc-hero-card { flex-direction: column; }
  .sc-price-card { width: 100%; }
}
@media (max-width: 520px) {
  .sc-hero-ctas { flex-direction: column; }
  .sc-hero-ctas .sc-btn-outline,
  .sc-hero-ctas .sc-btn-yellow { width: 100%; justify-content: center; }
}

@media (min-width: 1440px) {
  .sc-price-card{
    width: 30%!important;
  }
 }

/* Swiper container */
.swiper {
    padding: 20px 0;
}

.swiper-slide {
    width: auto !important; 
    justify-content: center;
}

.swiper-wrapper{
    padding-bottom: 20px;
}

/* Service card */
.service-card {
    display: block;
    min-width: 220px;
    padding: 20px;
    background: #fff;
    border-radius: 100px;
    text-decoration: none;
    color: #000;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

/* Hover effect */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Title */
.service-card h3 {
    font-size: 16px;
    margin: 0;
}
#relatedservices{
  padding: 50px;
  background: var(--card);
  border-radius: var(--r-card);
}

@media (min-width: 1520px) {
    .container-fluid{
    --bs-gutter-x: 3.5rem;
    --bs-gutter-y: 0;
  }
} 

@media (max-width: 768px) {
  .service-card{
    min-width: 200px;
  }
  #relatedservices{
    padding: 35px;
  }
}

@media (min-width: 1200px) {
  .sc-plan-card--popular{
    margin: 10px;
  }
}