/* ==========================================================================
   Shopden layout — core stylesheet
   Colors sampled directly from the supplied screenshots:
     --sd-green   #28b032  (SHOPden logo mark / links / underlines)
     --sd-accent  #66bb66  (icon circles, buttons, checkmarks)
     --sd-navy    #345676  (headings)
     --sd-hero    #b6e4b5  (hero section background)
     --sd-bg-alt  #f2f6f9  (alternating section background)
     --sd-parallax #458052 (Efficiency/"See in action" overlay)
   ========================================================================== */

:root {
  --sd-green: #28b032;
  --sd-accent: #66bb66;
  --sd-accent-dark: #4fa14f;
  --sd-navy: #345676;
  --sd-hero: #b6e4b5;
  --sd-bg-alt: #f2f6f9;
  --sd-parallax: #458052;
  --sd-text: #5a6472;
  --sd-text-dark: #333f4d;
  --sd-white: #ffffff;
  --sd-border: #e4e9ee;
  --sd-radius: 10px;
  --sd-shadow: 0 10px 30px rgba(52, 86, 118, .08);
  --sd-heading-font: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sd-body-font: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sd-container-max: 1200px;
}

/* ---------- base ---------- */
.shopden-layout {
  font-family: var(--sd-body-font);
  color: var(--sd-text);
  overflow-x: hidden;
}

.shopden-layout img {
  max-width: 100%;
  height: auto;
}

.shopden-layout a {
  text-decoration: none;
}

.shopden-layout .container {
  max-width: var(--sd-container-max);
}

.sd-section {
  padding: 88px 0;
}

.sd-section--alt {
  background: var(--sd-bg-alt);
}

.sd-section--tight {
  padding: 64px 0;
}

@media (max-width:991.98px) {
  .sd-section {
    padding: 64px 0;
  }
}

@media (max-width:575.98px) {
  .sd-section {
    padding: 48px 0;
  }
}

.sd-heading {
  font-family: var(--sd-heading-font);
  color: var(--sd-navy);
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: .2px;
  margin-bottom: .55rem;
}

.sd-heading-rule {
  width: 52px;
  height: 3px;
  background: var(--sd-green);
  border: 0;
  margin: 0 0 1.4rem;
}

.sd-subtext {
  color: var(--sd-text);
  font-size: 1rem;
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.sd-eyebrow {
  color: var(--sd-green);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.sd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--sd-accent);
  color: #fff;
  border: 2px solid var(--sd-accent);
  padding: .65rem 1.6rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: .95rem;
  transition: all .2s ease;
}

.sd-btn:hover {
  background: var(--sd-accent-dark);
  border-color: var(--sd-accent-dark);
  color: #fff;
}

.sd-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .75);
}

.sd-btn--outline:hover {
  background: #fff;
  color: var(--sd-parallax);
  border-color: #fff;
}

.sd-btn--pill-sm {
  padding: .5rem 1.3rem;
  font-size: .85rem;
}

.sd-btn--outline-green {
  background: transparent;
  color: var(--sd-green);
  border: 2px solid var(--sd-green);
}

.sd-btn--outline-green:hover {
  background: var(--sd-green);
  border-color: var(--sd-green);
  color: #fff;
}

.sd-btn--block {
  display: flex;
  width: 100%;
}

.sd-icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
}

/* placeholder illustration blocks used in place of licensed stock photos —
   swap the .sd-ph elements for real <img> tags at the noted asset paths */
.sd-ph {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: linear-gradient(135deg, #eef6ee, #dff0e0);
  border-radius: var(--sd-radius);
  color: var(--sd-accent-dark);
  overflow: hidden;
}

.sd-ph .sd-icon {
  width: 2.4rem;
  height: 2.4rem;
  opacity: .55;
  margin-bottom: .4rem;
}

.sd-ph span {
  font-size: .78rem;
  color: #7c9c88;
  text-align: center;
  padding: 0 .8rem;
}

.sd-ph::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255, 255, 255, .35) 0 2px, transparent 2px 14px);
}

/* Defensive (added): if a real <img> is placed inside .sd-ph (e.g. content
   was edited to swap the SVG icon placeholder for a real photo) instead of
   swapping .sd-ph out entirely, keep it constrained to the same box instead
   of rendering at its natural/intrinsic size and blowing out the card. */
.sd-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

/* Defensive (added): same safety net for a real <img> used directly as a
   card's media -- without an aspect-ratio, a raw photo renders at its
   natural size and breaks the card grid/spacing. */
.sd-whyus-card>img,
.sd-exp-card>img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
}

.sd-testi-card .avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}

/* ================= NAVBAR ================= */
.sd-navbar {
  background: #fff;
  padding: 1.15rem 0;
  position: sticky;
  top: 0;
  /* Must stay above .sd-nav-backdrop (z-index:1040, appended to <body> by
     shopden.js). .sd-navbar's own z-index sets a stacking context ceiling
     for everything inside it, including the mobile off-canvas
     .navbar-collapse panel (z-index:1050) and .sd-nav-backdrop is a
     *sibling* of .sd-navbar (not a descendant), so it was only being
     compared against this 1000, not the panel's inner 1050 — putting the
     backdrop visually/interactively on top of the open mobile menu and
     silently swallowing every tap on a nav link/dropdown as a "click
     outside" that closed the panel. */
  z-index: 1060;
  box-shadow: 0 1px 0 rgba(52, 86, 118, .08);
}

.sd-navbar .container {
  flex-wrap: nowrap;
}

.sd-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.sd-navbar .sd-logo-text {
  font-family: var(--sd-heading-font);
  font-weight: 800;
  font-size: 1.65rem;
  line-height: 1;
}

.sd-navbar .sd-logo-text span:first-child {
  color: var(--sd-green);
}

.sd-navbar .sd-logo-text span:last-child {
  color: var(--sd-navy);
}

.sd-navbar .sd-logo-sub {
  display: block;
  font-size: .55rem;
  letter-spacing: .08em;
  color: var(--sd-green);
  font-weight: 700;
}

.sd-navbar .sd-logo-icon {
  width: 26px;
  height: 26px;
  color: var(--sd-text-dark);
}

/* Real navbar uses an uploaded logo <img class="sd-logo-img"> (confirmed from
   live DOM) instead of the text/icon logo above -- no rule existed for it,
   so it rendered at its native upload size (huge). Capped to a sane navbar
   logo height, matching the ~26-40px scale of the text/icon logo above. */
.sd-navbar .sd-logo-img {
  height: 40px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

@media (max-width:575.98px) {
  .sd-navbar .sd-logo-img {
    height: 32px;
  }
}

@media (max-width:575.98px) {
  .sd-navbar .sd-logo-text {
    font-size: 1.3rem;
  }

  .sd-navbar .sd-logo-icon {
    width: 22px;
    height: 22px;
  }
}

.sd-navbar .nav-link {
  color: var(--sd-text-dark);
  font-weight: 600;
  font-size: .94rem;
  padding: .5rem .9rem !important;
}

.sd-navbar .nav-link.active,
.sd-navbar .nav-link:hover {
  color: var(--sd-green);
}

.sd-navbar .dropdown-menu {
  border: 0;
  box-shadow: var(--sd-shadow);
  border-radius: 8px;
  padding: .5rem;
}

/* Right-align the dropdowns closest to the viewport edge (Services, Pricing)
   so they open leftward instead of overflowing past the right edge. */
.sd-navbar .navbar-nav .nav-item.dropdown:nth-last-child(-n+3) .dropdown-menu {
  left: auto;
  right: 0;
}

.sd-navbar .dropdown-item {
  border-radius: 6px;
  font-size: .92rem;
  padding: .65rem 1.25rem;
}

.sd-navbar .dropdown-item:hover {
  background: var(--sd-bg-alt);
  color: var(--sd-green);
}

.sd-navbar .navbar-toggler {
  border: 0;
  padding: .25rem .4rem;
  background: transparent;
  line-height: 0;
}

.sd-navbar .navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--sd-accent);
  outline-offset: 2px;
}

/* self-contained hamburger — does NOT rely on Bootstrap's .navbar-toggler-icon
   background-image (that icon only paints if the host page's Bootstrap CSS
   defines --bs-navbar-toggler-icon-bg correctly, which this layout can't
   assume, and silently renders blank/invisible otherwise) */
.sd-hamburger {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 20px;
  vertical-align: middle;
}

.sd-hamburger span {
  position: absolute;
  left: 0;
  display: block;
  height: 2px;
  width: 100%;
  background: var(--sd-navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.sd-hamburger span:nth-child(1) {
  top: 0;
}

.sd-hamburger span:nth-child(2) {
  top: 9px;
}

.sd-hamburger span:nth-child(3) {
  top: 18px;
}

.sd-navbar-toggler[aria-expanded="true"] .sd-hamburger span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

.sd-navbar-toggler[aria-expanded="true"] .sd-hamburger span:nth-child(2) {
  opacity: 0;
}

.sd-navbar-toggler[aria-expanded="true"] .sd-hamburger span:nth-child(3) {
  top: 9px;
  transform: rotate(-45deg);
}

/* Small-laptop safety valve: with .container now nowrap, tighten nav-link
   spacing in the tight 992-1200px zone so links stay on one row without
   forcing horizontal overflow instead of wrapping. */
@media (min-width:992px) and (max-width:1199.98px) {
  .sd-navbar .nav-link {
    padding: .5rem .55rem !important;
    font-size: .88rem;
  }
}

@media (max-width:991.98px) {
  .sd-navbar .navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 86vw);
    background: #fff;
    box-shadow: -8px 0 30px rgba(0, 0, 0, .15);
    transform: translateX(100%);
    transition: transform .3s ease;
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    z-index: 1050;
  }

  .sd-navbar .navbar-collapse.show {
    transform: translateX(0);
  }

  .sd-navbar .navbar-nav {
    gap: .15rem;
  }

  .sd-navbar .nav-link {
    padding: .7rem .5rem !important;
    border-bottom: 1px solid var(--sd-border);
  }

  .sd-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 30, 40, .4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1040;
  }

  .sd-nav-backdrop.show {
    pointer-events: auto;
  }

  .sd-navbar .navbar-toggler-close {
    display: block;
    position: absolute;
    top: 1.1rem;
    right: 1.2rem;
    background: none;
    border: 0;
    font-size: 1.4rem;
    color: var(--sd-navy);
  }

  /* JS toggles this class on <body> to lock background scroll while the
     off-canvas menu is open — no rule existed for it, so the page kept
     scrolling behind the fixed panel/backdrop. */
  body.sd-nav-open {
    overflow: hidden;
  }

  /* Inside the off-canvas panel, dropdowns (Products, Pricing, etc.) should
     behave like an accordion — expand inline in the stacked list — instead
     of Bootstrap's absolutely-positioned flyout, which renders off-screen
     or overlapping when the panel is a fixed, narrow column. */
  .sd-navbar .navbar-collapse .dropdown-menu {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    display: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0 0 .35rem 1rem;
    margin: 0;
    background: transparent;
  }

  .sd-navbar .navbar-collapse .nav-item.dropdown.sd-open .dropdown-menu {
    display: block;
  }

  .sd-navbar .navbar-collapse .dropdown-toggle::after {
    float: right;
    margin-top: .5em;
    transition: transform .2s ease;
  }

  .sd-navbar .navbar-collapse .nav-item.dropdown.sd-open .dropdown-toggle::after {
    transform: rotate(180deg);
  }

  .sd-navbar .navbar-collapse .dropdown-item {
    padding: .55rem .25rem;
    border-bottom: 0;
  }
}

/* ================= HERO ================= */
.sd-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .25), transparent 45%),
    var(--sd-hero);
  padding: 110px 0 90px;
  position: relative;
  overflow: hidden;
}

.sd-hero .sd-check {
  position: absolute;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sd-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
  z-index: 2;
}

.sd-hero .sd-check .sd-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.sd-hero h1 {
  color: #fff;
  font-family: var(--sd-heading-font);
  font-weight: 700;
  font-size: 2.6rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .18);
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

.sd-hero .sd-hero-visual {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sd-hero .sd-hero-illustration {
  width: 100%;
  max-width: 640px;
  height: auto;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .18));
}

@media (max-width:767.98px) {
  .sd-hero h1 {
    font-size: 1.6rem;
  }

  .sd-hero {
    padding: 50px 0 30px;
  }

  .sd-hero .sd-hero-visual {
    min-height: 220px;
  }

  .sd-hero .sd-hero-illustration {
    max-width: 380px;
  }
}

/* ================= ABOUT ================= */
.sd-about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2.2rem;
}

.sd-about-stats .num {
  font-family: var(--sd-heading-font);
  color: var(--sd-navy);
  font-weight: 800;
  font-size: 2rem;
}

.sd-about-stats .label {
  font-size: .8rem;
  color: var(--sd-text);
  max-width: 150px;
}

.sd-about-media .sd-ph {
  aspect-ratio: 16/10;
}

/* ================= WHY US ================= */
.sd-whyus-card {
  border-radius: var(--sd-radius);
  overflow: hidden;
  box-shadow: var(--sd-shadow);
  background: #fff;
  height: 100%;
}

.sd-whyus-card .sd-ph {
  aspect-ratio: 16/10;
  border-radius: 0;
}

.sd-whyus-card .tag {
  position: relative;
  margin-top: -1.6rem;
  margin-left: 1rem;
  display: inline-block;
  background: var(--sd-accent);
  color: #fff;
  padding: .35rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: .85rem;
}

.sd-whyus-card ul {
  padding: 1.2rem 1.4rem 1.4rem 1.6rem;
  margin: 0;
  font-size: .92rem;
}

.sd-whyus-card li {
  margin-bottom: .35rem;
}

/* ================= USP ================= */
.sd-usp-row {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.sd-usp-item {
  background: var(--sd-accent);
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .85rem 1.1rem;
  border-radius: 4px 4px 0 0;
  border-bottom: 3px solid var(--sd-navy);
}

.sd-usp-visual .sd-ph {
  aspect-ratio: 4/3;
}

/* ================= SETUP BUSINESS (process timeline) ================= */
.sd-process-col h4 {
  color: var(--sd-navy);
  font-family: var(--sd-heading-font);
  font-size: 1.15rem;
  margin-top: 1.6rem;
}

.sd-process-col h4:first-child {
  margin-top: 0;
}

.sd-process-step {
  position: relative;
  padding-left: 1.9rem;
  margin-bottom: 1.2rem;
  border-left: 2px solid var(--sd-accent);
  padding-bottom: .2rem;
}

.sd-process-step:last-child {
  border-color: transparent;
}

.sd-process-step::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--sd-accent);
}

.sd-process-step .step-title {
  font-weight: 700;
  color: var(--sd-text-dark);
}

.sd-process-tag {
  display: inline-block;
  background: #eef1f4;
  color: var(--sd-text-dark);
  font-size: .72rem;
  font-weight: 700;
  padding: .15rem .6rem;
  border-radius: 3px;
  margin: .35rem 0;
}

.sd-process-note {
  color: var(--sd-green);
  font-style: italic;
  font-size: .85rem;
  margin-bottom: .3rem;
}

.sd-process-step ul {
  font-size: .88rem;
  margin: .3rem 0 0;
  padding-left: 1.1rem;
}

/* ================= SERVICES / ICON CARD GRID (reused by advantage, resources, platform, offer cards) ================= */
.sd-icon-card {
  background: #fff;
  border-radius: var(--sd-radius);
  box-shadow: var(--sd-shadow);
  padding: 2.1rem 1.4rem;
  text-align: center;
  height: 100%;
  transition: transform .2s ease;
}

.sd-icon-card:hover {
  transform: translateY(-4px);
}

.sd-icon-card .circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sd-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
}

.sd-icon-card .circle .sd-icon {
  width: 1.7rem;
  height: 1.7rem;
}

.sd-icon-card h5 {
  font-family: var(--sd-heading-font);
  color: var(--sd-navy);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: .6rem;
}

.sd-icon-card p {
  font-size: .9rem;
  margin: 0;
}

.sd-icon-card ul {
  text-align: left;
  font-size: .88rem;
  margin: 0;
  padding-left: 1.1rem;
}

/* ================= EXPERIENCE CENTER ================= */
.sd-exp-card {
  background: #fff;
  border-radius: var(--sd-radius);
  box-shadow: var(--sd-shadow);
  overflow: hidden;
  text-align: center;
  height: 100%;
}

.sd-exp-card .sd-ph {
  aspect-ratio: 3/4;
  border-radius: 0;
}

.sd-exp-card .sd-exp-img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
}

.sd-exp-card .body {
  padding: 1.1rem;
}

.sd-exp-card h5 {
  font-family: var(--sd-heading-font);
  color: var(--sd-navy);
  font-size: 1.05rem;
  margin-bottom: .35rem;
}

.sd-exp-card a {
  color: var(--sd-green);
  font-weight: 600;
  font-size: .9rem;
}

/* ================= TESTIMONIALS ================= */
.sd-testi-card {
  background: #fff;
  border-radius: var(--sd-radius);
  box-shadow: var(--sd-shadow);
  padding: 1.6rem;
  height: 100%;
}

.sd-testi-card .quote-mark {
  color: var(--sd-accent);
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: .5;
}

.sd-testi-card p {
  font-style: italic;
  font-size: .9rem;
  color: var(--sd-text);
}

.sd-testi-card .who {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 1rem;
}

/* Real markup (confirmed from live DOM) uses <img class="avatar-img"> directly
   inside .who -- there is no wrapping .avatar div, so the .avatar / .avatar img
   rules below never matched it. This is the actual fix. */
.sd-testi-card .avatar-img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex: none;
  display: block;
}

.sd-testi-card .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--sd-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sd-accent-dark);
  overflow: hidden;
  flex: none;
  position: relative;
}

.sd-testi-card .name {
  font-weight: 700;
  color: var(--sd-text-dark);
  font-size: .9rem;
}

/* ================= CONTACT ================= */
.sd-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sd-contact-info .row-item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .92rem;
}

.sd-contact-info .sd-icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--sd-accent);
  flex: none;
  margin-top: .15rem;
}

.sd-form .form-control {
  border-radius: 6px;
  border-color: var(--sd-border);
  padding: .65rem .9rem;
  margin-bottom: 1rem;
}

.sd-form .form-control:focus {
  border-color: var(--sd-accent);
  box-shadow: 0 0 0 .2rem rgba(102, 187, 102, .15);
}

.sd-map .sd-ph {
  aspect-ratio: 4/3;
}

/* ================= FOOTER ================= */
.sd-footer {
  background: var(--sd-bg-alt);
  padding: 1.6rem 0;
  text-align: center;
  font-size: .85rem;
  color: var(--sd-text);
}

.sd-footer a {
  color: var(--sd-text);
}

.sd-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sd-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
  font-size: 1.5rem;
  z-index: 900;
}

/* ================= FAQ (multi-section tabs + accordion) ================= */
.sd-faq-wrap {
  display: flex;
  gap: 2.2rem;
  align-items: flex-start;
}

.sd-faq-tabs {
  flex: 0 0 190px;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.sd-faq-tab {
  background: transparent;
  color: var(--sd-green);
  border: 0;
  text-align: left;
  font-weight: 700;
  padding: .7rem 1rem;
  border-radius: 6px;
  font-size: .95rem;
  cursor: pointer;
}

.sd-faq-tab.active {
  background: var(--sd-accent);
  color: #fff;
}

.sd-faq-groups {
  flex: 1;
  min-width: 0;
}

.sd-faq-group {
  display: none;
}

.sd-faq-group.active {
  display: block;
}

.sd-faq-group .accordion-item {
  border: 1px solid var(--sd-border);
  border-radius: 8px !important;
  margin-bottom: .8rem;
  overflow: hidden;
}

.sd-faq-group .accordion-button {
  font-weight: 600;
  color: var(--sd-text-dark);
  font-size: .96rem;
}

.sd-faq-group .accordion-button:not(.collapsed) {
  background: var(--sd-bg-alt);
  color: var(--sd-green);
  box-shadow: none;
}

.sd-faq-group .accordion-button:focus {
  box-shadow: none;
  border-color: var(--sd-border);
}

.sd-faq-group .accordion-body {
  font-size: .9rem;
  color: var(--sd-text);
}

@media (max-width:767.98px) {
  .sd-faq-wrap {
    flex-direction: column;
  }

  .sd-faq-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
}

/* ================= PLATFORM / FEATURES GRID variants ================= */
.sd-features-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.sd-features-row:last-child {
  margin-bottom: 0;
}

.sd-features-row.reverse {
  flex-direction: row-reverse;
}

.sd-features-row .sd-ph {
  aspect-ratio: 4/3;
}

/* Real markup (confirmed from live DOM) uses <img class="sd-features-img">
   directly inside .col-media, not wrapped in .sd-ph -- no rule existed for
   it, so it rendered at native upload size, overflowing the 42%-wide
   .col-media column entirely (that's the full-bleed giant photos). */
.sd-features-row .sd-features-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--sd-radius);
  display: block;
}

.sd-features-row .col-text h3 {
  font-family: var(--sd-heading-font);
  color: var(--sd-navy);
  font-size: 1.3rem;
  margin-bottom: .7rem;
}

.sd-features-row .col-text p {
  font-size: .92rem;
}

.sd-features-row .col-text h6 {
  font-weight: 700;
  color: var(--sd-text-dark);
  margin: .8rem 0 .2rem;
  font-size: .92rem;
}

.sd-features-row .col-text ul {
  font-size: .9rem;
  padding-left: 1.1rem;
}

@media (max-width:767.98px) {

  .sd-features-row,
  .sd-features-row.reverse {
    flex-direction: column;
    gap: 1.3rem;
  }

  .sd-features-row>div {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}

/* ================= BUSINESS TYPES GRID ================= */
.sd-biztype-card {
  border-radius: var(--sd-radius);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--sd-shadow);
  height: 100%;
}

.sd-biztype-card .sd-ph {
  aspect-ratio: 4/3;
  border-radius: 0;
}

.sd-biztype-card.is-active {
  background: var(--sd-accent);
  color: #fff;
}

.sd-biztype-card.is-active .sd-ph {
  background: rgba(255, 255, 255, .15);
}

.sd-biztype-card .body {
  padding: 1rem;
}

.sd-biztype-card h5 {
  font-family: var(--sd-heading-font);
  font-size: 1rem;
  margin-bottom: .5rem;
}

.sd-biztype-card.is-active h5 {
  color: #fff;
}

.sd-biztype-card a {
  font-weight: 600;
  font-size: .88rem;
  color: var(--sd-green);
}

.sd-biztype-card.is-active a {
  color: #fff;
  text-decoration: underline;
}

/* ================= APPAREL INTRO (feature bars, two column) ================= */
.sd-apparel-hero .sd-ph {
  aspect-ratio: 4/3;
}

.sd-feature-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
}

.sd-feature-bars .bar-item {
  background: var(--sd-accent);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .03em;
  padding: .75rem 1rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

@media (max-width:575.98px) {
  .sd-feature-bars {
    grid-template-columns: 1fr;
  }
}

/* ================= GALLERY ================= */
.sd-gallery-phone {
  width: 220px;
  height: 420px;
  margin: 0 auto;
  border-radius: 26px;
  border: 10px solid #16181c;
  background: #f4f4f4;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .18);
  overflow: hidden;
}

.sd-gallery-phone .sd-ph {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.sd-gallery .carousel-indicators [data-bs-target] {
  background: var(--sd-accent);
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

/* ================= WHERE TO START ================= */
.sd-start-card {
  text-align: center;
  height: 100%;
}

.sd-start-card .sd-ph {
  aspect-ratio: 4/3;
  margin-bottom: .9rem;
}

.sd-start-card h5 {
  font-family: var(--sd-heading-font);
  color: var(--sd-navy);
  font-size: 1.05rem;
  margin-bottom: .4rem;
}

.sd-start-card p {
  font-size: .88rem;
}

.sd-start-card a {
  color: var(--sd-green);
  font-weight: 700;
  font-size: .88rem;
}

/* ================= PARALLAX CTA ("Efficiency and Digitizing" scroll section) ================= */
.sd-parallax {
  position: relative;
  padding: 100px 0;
  background-color: var(--sd-parallax);
  background-image:
    linear-gradient(120deg, rgba(35, 66, 45, .82), rgba(69, 128, 82, .72)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 40px, transparent 40px 80px),
    repeating-linear-gradient(rgba(255, 255, 255, .05) 0 60px, transparent 60px 120px);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.sd-parallax h2 {
  font-family: var(--sd-heading-font);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: .6rem;
}

.sd-parallax p {
  opacity: .92;
  margin-bottom: 1.6rem;
}

/* mobile fallback — background-attachment:fixed is unreliable/laggy on iOS
   Safari & many Android browsers, so it is disabled below 768px and a
   static (still fully styled) background is used instead */
@media (max-width:767.98px) {
  .sd-parallax {
    background-attachment: scroll;
    padding: 64px 0;
  }
}

/* extra safety: JS (shopden.js) adds this class when it detects no support
   for background-attachment:fixed */
.sd-parallax.sd-parallax--static {
  background-attachment: scroll;
}


/* ================= PRICING (plans + compare) ================= */
.sd-pricing-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

/* category tabs (catalog / web / ecommerce, Project Based / Time Based, Transaction) */
.sd-pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.sd-pricing-tab {
  border: 0;
  background: transparent;
  color: var(--sd-green);
  font-weight: 700;
  font-size: .95rem;
  padding: .55rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  transition: all .2s ease;
}

.sd-pricing-tab.active {
  background: var(--sd-green);
  color: #fff;
}

.sd-pricing-tab:hover:not(.active) {
  background: var(--sd-bg-alt);
}

/* month / yearly billing switch */
.sd-pricing-toggle {
  display: inline-flex;
  background: var(--sd-bg-alt);
  border-radius: 30px;
  padding: 4px;
}

.sd-pricing-toggle button {
  border: 0;
  background: transparent;
  padding: .4rem 1.1rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--sd-text);
  cursor: pointer;
  transition: all .2s ease;
}

.sd-pricing-toggle button.active {
  background: var(--sd-green);
  color: #fff;
}

.sd-pricing-panel {
  display: none;
}

.sd-pricing-panel.active {
  display: block;
}

.sd-pricing-panel-head {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

/* plan cards */
.sd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(var(--sd-plan-count, 3), minmax(0, 1fr));
  gap: 1.6rem;
  margin-bottom: 2.5rem;
}

@media (max-width:991.98px) {
  .sd-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:575.98px) {
  .sd-pricing-grid {
    grid-template-columns: 1fr;
  }
}

.sd-pricing-card {
  background: #fff;
  border: 1px solid var(--sd-border);
  border-radius: var(--sd-radius);
  box-shadow: var(--sd-shadow);
  padding: 2rem 1.6rem;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.sd-pricing-card--custom {
  background: var(--sd-bg-alt);
}

.sd-pricing-card-name {
  font-family: var(--sd-heading-font);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--sd-text-dark);
  margin-bottom: .9rem;
}

.sd-pricing-card-price {
  color: var(--sd-navy);
  margin-bottom: .2rem;
}

.sd-pricing-card-price .sd-pricing-currency {
  font-size: .85rem;
  font-weight: 700;
  vertical-align: top;
}

.sd-pricing-card-price .sd-pricing-value {
  font-size: 2.1rem;
  font-weight: 800;
  margin: 0 .15rem;
}

.sd-pricing-card-price .sd-pricing-period {
  font-size: .8rem;
  color: var(--sd-text);
}

.sd-pricing-card-custom-rate {
  font-family: var(--sd-heading-font);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--sd-green);
  margin-bottom: .2rem;
}

.sd-pricing-card-billing {
  font-size: .78rem;
  color: var(--sd-text);
  margin-bottom: .8rem;
}

.sd-pricing-card-setup {
  display: inline-block;
  background: #e7f4ff;
  color: var(--sd-navy);
  font-size: .78rem;
  font-weight: 600;
  padding: .35rem .9rem;
  border-radius: 20px;
  margin: 0 auto 1.2rem;
}

.sd-pricing-card-setup del {
  opacity: .6;
  margin-right: .3rem;
}

.sd-pricing-card-setup ins {
  color: var(--sd-green);
  font-weight: 700;
  text-decoration: none;
}

.sd-pricing-card .sd-btn {
  margin-bottom: 1.4rem;
}

.sd-pricing-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.sd-pricing-card-features li {
  display: flex;
  gap: .55rem;
  font-size: .9rem;
  color: var(--sd-text-dark);
  padding: .5rem 0;
  border-top: 1px solid var(--sd-border);
}

.sd-pricing-card-features li:first-child {
  border-top: 0;
}

.sd-pricing-card-features li i {
  color: var(--sd-green);
  flex: none;
  margin-top: .15rem;
}

/* the small centered category badge above the compare table */
.sd-pricing-divider {
  display: flex;
  justify-content: center;
  margin: 2.5rem 0 2rem;
}

.sd-pricing-divider-pill {
  background: var(--sd-green);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .55rem 1.8rem;
  border-radius: 8px;
  text-transform: lowercase;
}

/* compare block: intro + sticky plan header row */
.sd-compare-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
}

.sd-compare-intro-title {
  font-family: var(--sd-heading-font);
  color: var(--sd-navy);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: .3rem;
}

.sd-compare-intro-sub {
  font-size: .85rem;
  color: var(--sd-text);
  max-width: 420px;
}

.sd-compare-head {
  display: grid;
  grid-template-columns: 1.6fr repeat(var(--sd-plan-count, 3), 1fr);
  gap: 1rem;
  align-items: end;
  padding-bottom: 1rem;
}

.sd-compare-head-label {
  display: none;
}

.sd-compare-plan {
  text-align: center;
}

.sd-compare-plan-name {
  font-weight: 700;
  color: var(--sd-text-dark);
  font-size: .95rem;
  margin-bottom: .15rem;
}

.sd-compare-plan-caption {
  font-size: .72rem;
  color: var(--sd-text);
  margin-bottom: .6rem;
}

@media (max-width:767.98px) {
  .sd-compare-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sd-compare-plan {
    padding-bottom: .5rem;
    border-bottom: 1px dashed var(--sd-border);
  }
}

/* accordion groups */
.sd-compare-group {
  border-top: 1px solid var(--sd-border);
}

.sd-compare-group:last-child {
  border-bottom: 1px solid var(--sd-border);
}

.sd-compare-group-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #e9f8ee;
  border: 0;
  padding: .9rem 1.4rem;
  font-weight: 700;
  color: var(--sd-text-dark);
  font-size: .92rem;
  cursor: pointer;
  text-align: left;
}

.sd-compare-group-header .sd-chevron {
  transition: transform .2s ease;
  color: var(--sd-navy);
  font-size: .8em;
}

.sd-compare-group.open .sd-compare-group-header .sd-chevron {
  transform: rotate(180deg);
  display: inline-block;
}

.sd-compare-group-rows {
  display: none;
}

.sd-compare-group.open .sd-compare-group-rows {
  display: block;
}

.sd-compare-row {
  display: grid;
  grid-template-columns: 1.6fr repeat(var(--sd-plan-count, 3), 1fr);
  gap: 1rem;
  padding: .85rem 1.4rem;
  border-top: 1px solid var(--sd-border);
  font-size: .88rem;
}

.sd-compare-row:first-child {
  border-top: 0;
}

.sd-compare-row-label {
  color: var(--sd-text-dark);
  font-weight: 600;
}

.sd-compare-row-value {
  text-align: center;
  color: var(--sd-text);
}

@media (max-width:767.98px) {
  .sd-compare-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: .25rem;
  }

  .sd-compare-row-label {
    font-weight: 700;
    color: var(--sd-navy);
  }
}

.sd-map iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
  border-radius: 10px;
}

.sd-map-frame iframe {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  display: block;
}