/* StyleSlots public site — shared luxury UI */
:root {
  --ss-gold: #d6a354;
  --ss-gold-soft: #f3e0b8;
  --ss-gold-deep: #b8893a;
  --ss-ink: #111114;
  --ss-ink-2: #1c1c20;
  --ss-muted: #667085;
  --ss-line: rgba(17, 17, 20, 0.08);
  --ss-cream: #f7f3ec;
  --ss-paper: #fffdf9;
  --ss-radius: 20px;
  --ss-shadow: 0 18px 50px rgba(17, 17, 20, 0.08);
}

html.ss-site {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.ss-login-short { display: none; }

.ss-site body,
.ss-site .page-wrapper {
  background: var(--ss-paper);
  color: var(--ss-ink);
}

.ss-site .theme-btn {
  border-radius: 999px !important;
  letter-spacing: 0.04em;
  box-shadow: 0 10px 24px rgba(214, 163, 84, 0.28);
}

.ss-site .theme-btn:before,
.ss-site .theme-btn:after {
  border-radius: 999px;
}

/* Header */
.ss-site .main-header.header-one {
  z-index: 1000;
}

.ss-site .site-header-top {
  background: #0d0d0f;
  border-bottom: 1px solid rgba(214, 163, 84, 0.18);
  padding: 10px 0;
}

.ss-site .site-header-top__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  min-height: 36px;
}

.ss-site .site-header-top__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.5rem;
}

.ss-site .site-header-top__list li {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
}

.ss-site .site-header-top a,
.ss-site .site-header-top b,
.ss-site .site-header-top li,
.ss-site .site-header-top span {
  color: #efe7d6 !important;
}

.ss-site .site-header-top i {
  color: var(--ss-gold) !important;
}

.ss-site .site-header-top__right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ss-site .site-header-top__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
}

.ss-site .site-header-top__email:hover span {
  color: #fff !important;
}

.ss-site .ss-social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ss-site .ss-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214, 163, 84, 0.4);
  color: #f3e0b8 !important;
  background: rgba(214, 163, 84, 0.1);
  line-height: 1;
}

.ss-site .ss-social-links a i {
  color: inherit !important;
  margin: 0;
  font-size: 14px;
}

.ss-site .ss-social-links a:hover {
  background: var(--ss-gold);
  border-color: var(--ss-gold);
  color: #111114 !important;
}

.ss-site .ss-header-social--bar a {
  width: 34px;
  height: 34px;
}

.ss-site .header-upper {
  background: rgba(10, 10, 12, 0.92) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ss-site .main-menu .navbar-collapse > ul > li.current > a,
.ss-site .site-main-menu-always-row .navbar-collapse > ul.navigation > li.current > a {
  color: var(--ss-gold) !important;
  opacity: 1 !important;
}

@media (min-width: 992px) {
  .ss-site .site-main-menu-always-row .navbar-collapse > ul.navigation > li > a {
    position: relative;
    padding-bottom: 4px;
  }

  .ss-site .site-main-menu-always-row .navbar-collapse > ul.navigation > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--ss-gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
  }

  .ss-site .site-main-menu-always-row .navbar-collapse > ul.navigation > li > a:hover::after,
  .ss-site .site-main-menu-always-row .navbar-collapse > ul.navigation > li.current > a::after {
    transform: scaleX(1);
  }
}

.ss-site .main-menu .navbar-collapse li.dropdown ul {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(214, 163, 84, 0.16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

/* Page banners */
.ss-site .page-banner {
  position: relative;
  min-height: 280px;
  padding-top: 160px !important;
  padding-bottom: 72px !important;
  background-size: cover;
  background-position: center;
}

.ss-site .page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 280px at 15% 20%, rgba(214, 163, 84, 0.28), transparent 55%),
    linear-gradient(180deg, rgba(8, 8, 10, 0.72), rgba(8, 8, 10, 0.55));
}

.ss-site .page-banner .container,
.ss-site .page-banner .banner-inner {
  position: relative;
  z-index: 1;
}

.ss-site .page-banner .page-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

/* Shared cards / chips */
.ss-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(214, 163, 84, 0.12);
  color: #8a5d17;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ss-card,
.ss-site .ss-card,
.ss-site .ss-panel,
.ss-site .plan-card,
.ss-site .ss-pair {
  background: #fff;
  border: 1px solid var(--ss-line);
  border-radius: var(--ss-radius);
  box-shadow: var(--ss-shadow);
}

.ss-site .ss-card,
.ss-site .ss-panel {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ss-site a.ss-card:hover,
.ss-site .ss-card:hover,
.ss-site .plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214, 163, 84, 0.35);
  box-shadow: 0 22px 48px rgba(17, 17, 20, 0.12);
}

.ss-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fff6e6, #f3e0b8);
  color: var(--ss-gold-deep);
  font-size: 22px;
  flex: 0 0 auto;
}

.ss-section-title {
  margin-bottom: 36px;
}

.ss-section-title .kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--ss-gold-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.ss-section-title h2,
.ss-site .section-title .title {
  letter-spacing: -0.03em;
  line-height: 1.15;
}

/* Home hero */
.ss-hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  padding: 180px 0 90px;
}

.ss-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 420px at 12% 18%, rgba(214, 163, 84, 0.32), transparent 52%),
    linear-gradient(115deg, rgba(8, 8, 10, 0.88) 0%, rgba(8, 8, 10, 0.55) 58%, rgba(8, 8, 10, 0.35) 100%);
}

.ss-hero > .container { position: relative; z-index: 1; }

.ss-hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.ss-hero p.lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 38rem;
}

.ss-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(214, 163, 84, 0.35);
  color: #f3e0b8;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ss-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0 16px;
}

.ss-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.ss-stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 576px) {
  .ss-stat-grid { grid-template-columns: 1fr 1fr; }
}

.ss-stat {
  padding: 20px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #fff;
}

.ss-stat b {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: var(--ss-gold-soft);
}

.ss-stat span {
  font-size: 13px;
  opacity: 0.8;
}

/* Home sections */
.ss-home-industries {
  background: linear-gradient(180deg, #fff 0%, var(--ss-cream) 100%);
  padding: 90px 0 70px;
}

.ss-industry-card {
  display: block;
  height: 100%;
  padding: 22px;
  color: inherit !important;
  text-decoration: none !important;
}

.ss-industry-card h4 {
  margin-bottom: 6px;
}

.ss-compare {
  padding: 80px 0;
  background: #fff;
}

.ss-compare-card {
  padding: 22px;
  height: 100%;
}

.ss-compare-card .old {
  color: #9a3a3a;
  margin-bottom: 10px;
}

.ss-compare-card .now {
  color: #1f6b45;
  font-weight: 600;
}

.ss-features {
  padding: 80px 0 90px;
  background: radial-gradient(800px 300px at 80% 0%, rgba(214, 163, 84, 0.1), transparent 55%), var(--ss-cream);
}

.ss-feature {
  padding: 26px;
  height: 100%;
}

.ss-feature .num {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: var(--ss-ink);
  color: var(--ss-gold);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.ss-steps {
  padding: 20px 0 80px;
}

.ss-step {
  text-align: center;
  padding: 28px 20px;
}

.ss-cta-band {
  background:
    radial-gradient(700px 280px at 18% 20%, rgba(214, 163, 84, 0.24), transparent 55%),
    linear-gradient(180deg, #101012, #17171b);
  border-radius: 24px;
  padding: 38px 28px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ss-cta-band h3 { color: #fff; }

.ss-faq {
  margin-bottom: 28px;
}

.ss-faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.ss-faq-item {
  background: #fff;
  border: 1px solid var(--ss-line);
  border-radius: 16px;
  margin-bottom: 10px;
  padding: 0 20px;
  box-shadow: var(--ss-shadow);
}

.ss-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ss-faq-item summary::-webkit-details-marker { display: none; }

.ss-faq-item summary::after {
  content: "+";
  float: right;
  color: var(--ss-gold-deep);
  font-weight: 700;
}

.ss-faq-item[open] summary::after { content: "–"; }

.ss-faq-item p {
  color: var(--ss-muted);
  line-height: 1.75;
  padding-bottom: 18px;
  margin: 0;
}

.ss-btn-ghost {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
  box-shadow: none !important;
}

.ss-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16) !important;
}

/* Footer */
.ss-site .main-footer {
  background-color: #0c0c0e !important;
  padding-top: 64px;
}

.ss-site .footer-title {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--ss-gold-soft) !important;
}

.ss-site .footer-widget.menu-widget ul li a {
  opacity: 0.82;
}

.ss-site .footer-widget.menu-widget ul li a:hover {
  color: var(--ss-gold) !important;
  opacity: 1;
}

.ss-site .copyright-area {
  background: transparent !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  margin-top: 28px !important;
}

.ss-site .copyright-area p {
  color: rgba(255, 255, 255, 0.72);
}

.ss-site .ss-footer-legal {
  margin-top: 10px;
}

.ss-site .ss-footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  margin: 0 10px;
  font-size: 13px;
}

.ss-site .ss-footer-legal a:hover {
  color: var(--ss-gold);
}

/* Demo modal */
.ss-modal .modal-content {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.ss-modal .modal-header {
  border: 0;
  background: linear-gradient(135deg, #111114, #2a2216);
  color: #fff;
  padding: 22px 24px;
}

.ss-modal .modal-title {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.ss-modal .close {
  color: #fff;
  opacity: 0.8;
  text-shadow: none;
}

.ss-modal .modal-body {
  padding: 24px;
}

.ss-modal-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.ss-modal-list li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ss-line);
  color: #3f3f46;
}

.ss-modal-list li:last-child { border-bottom: 0; }

.ss-modal-list i { color: var(--ss-gold-deep); margin-top: 3px; }

/* Plans + industry polish */
.ss-site .plan-card {
  padding: 22px;
}

.ss-site .plan-price-main {
  background: linear-gradient(180deg, #fffaf1, #fff);
  border: 1px solid rgba(214, 163, 84, 0.22);
}

.ss-site .plan-card.plan-featured {
  border: 2px solid var(--ss-gold);
  box-shadow: 0 20px 50px rgba(214, 163, 84, 0.18);
}

.ss-site .ss-services-list {
  box-shadow: var(--ss-shadow);
}

.ss-site h1,
.ss-site h2,
.ss-site .page-title,
.ss-site .section-title .title,
.ss-hero h1 {
  font-family: "Cormorant Garamond", "Oswald", serif;
  font-weight: 600;
}

.ss-site .ss-panel { padding: 26px; }
.ss-site .ss-page-wrap { background: linear-gradient(180deg, #fff 0%, var(--ss-cream) 100%); }

/* Product preview (homepage) */
.ss-preview {
  background: linear-gradient(180deg, #1a1a1e, #111114);
  border: 1px solid rgba(214, 163, 84, 0.28);
  border-radius: 22px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  overflow: hidden;
  color: #fff;
}

.ss-preview__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f3e0b8;
}

.ss-preview__dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  background: #d6a354;
  opacity: 0.55;
}

.ss-preview__dots span:first-child { opacity: 1; }

.ss-preview__body { padding: 16px; }

.ss-preview__days {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.ss-preview__day {
  text-align: center;
  padding: 10px 4px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px;
}

.ss-preview__day.is-on {
  background: linear-gradient(160deg, #d6a354, #b8893a);
  color: #1a1208;
  font-weight: 700;
}

.ss-preview__slots {
  display: grid;
  gap: 8px;
}

.ss-preview__slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
}

.ss-preview__slot b { color: #f3e0b8; font-weight: 500; }

.ss-preview__tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(214, 163, 84, 0.18);
  color: #f3e0b8;
}

.ss-preview__tag.is-busy {
  background: rgba(255, 255, 255, 0.08);
  color: #c4c4c4;
}

.ss-how {
  padding: 70px 0 20px;
  background: #fff;
}

.ss-how .ss-step {
  height: 100%;
}

.ss-how .ss-step .num {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111114;
  color: #d6a354;
  font-weight: 700;
}

/* Forms + contact */
.ss-site .contact-page-form .form-control,
.ss-site .ss-contact-card .form-control,
.ss-site .contact-info-part {
  border-radius: 14px;
}

.ss-site .contact-page-form .form-control,
.ss-site .ss-contact-card .form-control {
  min-height: 52px;
  border: 1.5px solid #ebe4d8;
  background: #fff;
}

.ss-site .ss-contact-card textarea.form-control {
  min-height: 130px;
}

.ss-site .contact-page-form .form-control:focus,
.ss-site .ss-contact-card .form-control:focus {
  border-color: var(--ss-gold);
  box-shadow: 0 0 0 4px rgba(214, 163, 84, 0.16);
}

.ss-site .contact-info-part {
  background: #111114 !important;
  color: #efe7d6;
  border: 1px solid rgba(214, 163, 84, 0.2);
}

.ss-site .contact-info-item h3,
.ss-site .contact-info-item a,
.ss-site .contact-info-item span {
  color: #efe7d6 !important;
}

.ss-site .contact-info-item .icon {
  background: rgba(214, 163, 84, 0.16) !important;
  color: var(--ss-gold) !important;
}

.ss-contact-card {
  background: #fff;
  border: 1px solid var(--ss-line);
  border-radius: 22px;
  box-shadow: var(--ss-shadow);
  padding: 28px;
}

/* Richer modal */
.ss-modal .modal-dialog { max-width: 640px; }

.ss-modal-preview {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}

/* Header demo chip */
.ss-header-demo {
  display: none;
}

@media (min-width: 1200px) {
  .ss-header-demo {
    display: inline-flex;
    align-items: center;
    margin-right: 0;
    padding: 0.72rem 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(214, 163, 84, 0.45);
    background: transparent;
    color: #f3e0b8;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    line-height: 1.2;
  }
  .ss-header-demo:hover { background: rgba(214, 163, 84, 0.14); color: #fff; }
}

.ss-site .ss-header-login i {
  margin-left: 0 !important;
  margin-right: 0.45rem !important;
  font-size: 0.95em;
}

.ss-site .ss-header-login {
  display: inline-flex;
  align-items: center;
}

/* About */
.ss-about-hero {
  min-height: 78vh;
  padding: 170px 0 80px;
}

.ss-about-portrait {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 28px 26px;
  color: #fff;
}

.ss-about-portrait__label {
  color: var(--ss-gold-soft);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}

.ss-about-portrait h3 {
  color: #fff;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.ss-about-portrait p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.ss-about-portrait ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ss-about-portrait li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ss-about-portrait li i {
  color: var(--ss-gold);
  margin-top: 3px;
}

.ss-about-story {
  padding: 90px 0 70px;
  background: #fff;
}

.ss-about-story p {
  color: var(--ss-muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.ss-about-quote {
  margin: 0;
  padding: 36px 32px;
  border-radius: 24px;
  background:
    radial-gradient(600px 240px at 10% 0%, rgba(214, 163, 84, 0.16), transparent 55%),
    #111114;
  color: #fff;
  border: 1px solid rgba(214, 163, 84, 0.2);
}

.ss-about-quote p {
  color: #f7f3ec;
  font-size: 1.2rem;
  line-height: 1.7;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.ss-about-quote footer {
  color: var(--ss-gold-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

.ss-about-mv {
  padding: 20px 0 70px;
  background: linear-gradient(180deg, #fff 0%, var(--ss-cream) 100%);
}

.ss-about-mv-card {
  padding: 32px 28px;
  height: 100%;
}

.ss-about-mv-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ss-ink);
  color: var(--ss-gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.ss-about-mv-card h3 {
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.ss-about-mv-card p {
  color: var(--ss-muted);
  line-height: 1.75;
}

.ss-about-serve {
  padding-top: 40px;
}

.ss-about-values {
  padding: 80px 0 70px;
  background: #fff;
}

.ss-value-card {
  padding: 26px 24px;
  height: 100%;
}

.ss-value-card h4 {
  margin-bottom: 8px;
}

.ss-about-brand {
  padding: 20px 0 80px;
  background: #fff;
}

.ss-about-brand-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 36px;
  border-radius: 28px;
  background:
    radial-gradient(700px 260px at 50% 0%, rgba(214, 163, 84, 0.14), transparent 60%),
    var(--ss-cream);
  border: 1px solid var(--ss-line);
}

.ss-about-brand-inner .kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ss-gold-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.ss-about-brand-inner h2 {
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.ss-about-brand-inner p {
  color: var(--ss-muted);
  font-size: 1.08rem;
  line-height: 1.8;
  margin: 0;
}

.ss-about-cta {
  padding: 0 0 90px;
  background: linear-gradient(180deg, #fff 0%, var(--ss-cream) 40%);
}

/* Industry / solutions */
.ss-ind-hero {
  min-height: 78vh;
  padding: 170px 0 72px;
}

.ss-ind-switch {
  background: #111114;
  border-bottom: 1px solid rgba(214, 163, 84, 0.16);
}

.ss-ind-switch__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
}

.ss-ind-switch a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
}

.ss-ind-switch a:hover,
.ss-ind-switch a.is-on {
  color: #1a1208 !important;
  background: var(--ss-gold);
  border-color: var(--ss-gold);
}

.ss-ind-intro {
  padding: 70px 0 20px;
  background: #fff;
}

.ss-ind-intro-card {
  padding: 36px 40px;
  border-radius: 24px;
  background:
    radial-gradient(700px 240px at 8% 0%, rgba(214, 163, 84, 0.12), transparent 55%),
    var(--ss-cream);
  border: 1px solid var(--ss-line);
}

.ss-ind-intro-card .kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ss-gold-deep);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.ss-ind-intro-card p {
  color: var(--ss-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.ss-ind-features {
  padding: 50px 0 70px;
  background: linear-gradient(180deg, #fff 0%, var(--ss-cream) 100%);
}

.ss-ind-feature {
  height: 100%;
}

.ss-ind-feature h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.ss-ind-feature p {
  color: var(--ss-muted);
  line-height: 1.7;
}

.ss-ind-services {
  padding: 20px 0 70px;
  background: var(--ss-cream);
}

.ss-site .ss-services-list {
  position: relative;
  overflow: hidden;
  background: #141414;
  border-radius: 24px;
  padding: 40px 36px;
  color: #cfcfcf;
  min-height: 280px;
}

.ss-site .ss-services-list::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.04) 0 1px, transparent 1.5px),
    radial-gradient(circle at 82% 72%, rgba(255, 255, 255, 0.035) 0 1px, transparent 1.5px);
  background-size: 48px 48px, 64px 64px;
  pointer-events: none;
}

.ss-site .ss-services-list__inner { position: relative; z-index: 1; }

.ss-site .ss-services-list h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.ss-site .ss-services-list ul {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 32px;
}

@media (min-width: 768px) {
  .ss-site .ss-services-list ul {
    grid-template-columns: 1fr 1fr;
  }
}

.ss-site .ss-services-list li {
  position: relative;
  padding: 12px 0 12px 22px;
  color: #d4d4d4;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.ss-site .ss-services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ss-gold);
}

.ss-ind-tagline {
  padding: 10px 0 70px;
  background: var(--ss-cream);
}

.ss-ind-tagline p {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.7;
  letter-spacing: -0.02em;
  color: var(--ss-ink);
}

.ss-ind-related {
  padding-top: 30px;
}

.ss-ind-cta {
  padding: 0 0 90px;
  background: linear-gradient(180deg, var(--ss-cream) 0%, #fff 50%);
}

/* Legal + contact */
.ss-legal-hero {
  min-height: auto;
  padding: 168px 0 72px;
}

.ss-legal-hero .lead {
  max-width: 46rem;
}

.ss-legal-hero h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  max-width: 16em;
}

.ss-legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ss-legal-meta span {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(214, 163, 84, 0.28);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.ss-legal-meta b {
  color: #f3e0b8;
  font-weight: 600;
}

.ss-legal-switch {
  background: #111114;
  border-bottom: 1px solid rgba(214, 163, 84, 0.16);
}

.ss-legal-switch__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
}

.ss-legal-switch a {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 600;
}

.ss-legal-switch a:hover,
.ss-legal-switch a.is-on {
  color: #1a1208 !important;
  background: var(--ss-gold);
  border-color: var(--ss-gold);
}

.ss-legal-wrap {
  padding: 70px 0 40px;
  background: linear-gradient(180deg, #fff 0%, var(--ss-cream) 100%);
}

.ss-toc {
  background: #111114;
  color: #fff;
  border-radius: 24px;
  padding: 24px 22px;
  border: 1px solid rgba(214, 163, 84, 0.22);
  position: sticky;
  top: 110px;
}

.ss-toc__title {
  color: var(--ss-gold-soft);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}

.ss-toc a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
}

.ss-toc a:hover {
  color: #1a1208;
  background: var(--ss-gold);
}

.ss-legal {
  background: #fff;
  border: 1px solid var(--ss-line);
  border-radius: 24px;
  box-shadow: var(--ss-shadow);
  padding: 36px 34px;
}

.ss-legal h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  margin: 34px 0 12px;
  padding-top: 22px;
  border-top: 1px solid #efe7d6;
  scroll-margin-top: 110px;
}

.ss-legal h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.ss-legal h3 {
  font-size: 1.05rem;
  margin: 18px 0 8px;
}

.ss-legal p,
.ss-legal li {
  color: var(--ss-muted);
  line-height: 1.75;
}

.ss-legal a {
  color: #8a5d17;
  font-weight: 600;
}

.ss-legal-num {
  color: var(--ss-gold-deep);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  flex: 0 0 auto;
}

.ss-legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 8px;
  font-size: 14px;
  overflow: hidden;
  border-radius: 12px;
}

.ss-legal-table th,
.ss-legal-table td {
  border: 1px solid #efe7d6;
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.ss-legal-table th {
  background: #faf3e6;
  color: #111;
  font-weight: 700;
}

.ss-legal-steps { padding-left: 18px; }

.ss-legal-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #efe7d6;
}

.ss-legal-foot a {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: #faf3e6;
  color: #8a5d17;
  text-decoration: none;
  font-size: 13px;
  margin-right: 0;
}

.ss-legal-foot a:hover {
  background: var(--ss-gold);
  color: #1a1208;
}

.ss-legal-cta {
  padding: 0 0 90px;
  background: linear-gradient(180deg, var(--ss-cream) 0%, #fff 55%);
}

.ss-contact {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, #fff 0%, var(--ss-cream) 100%);
}

.ss-contact-tile {
  padding: 26px 24px;
  height: 100%;
}

.ss-contact-tile h4 { margin-bottom: 8px; }

.ss-contact-tile a { color: #8a5d17; }

.ss-contact-aside {
  height: 100%;
  padding: 36px 30px;
  border-radius: 24px;
  background:
    radial-gradient(600px 240px at 10% 0%, rgba(214, 163, 84, 0.2), transparent 55%),
    #111114;
  color: #fff;
  border: 1px solid rgba(214, 163, 84, 0.22);
}

.ss-contact-aside .kicker {
  color: var(--ss-gold-soft);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.ss-contact-aside h2 {
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.ss-contact-aside p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.ss-contact-aside ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.ss-contact-aside li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.ss-contact-aside li i { color: var(--ss-gold); margin-top: 3px; }
.ss-contact-aside a { color: #f3e0b8; }

.ss-contact-map {
  padding: 0 0 90px;
  background: linear-gradient(180deg, var(--ss-cream) 0%, #fff 50%);
}

.ss-contact-map__frame {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--ss-line);
  box-shadow: var(--ss-shadow);
}

.ss-contact-map iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  border: 0;
}

@media (min-width: 992px) {
  .ss-about-values .row {
    justify-content: center;
  }

  .ss-about-values .col-lg-4 {
    max-width: 33.333%;
  }
}

@media (hover: none) {
  .ss-site a.ss-card:hover,
  .ss-site .ss-card:hover,
  .ss-site .plan-card:hover {
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .ss-site body,
  .ss-site .page-wrapper {
    overflow-x: hidden;
  }

  .ss-site .header-upper .container-fluid {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .ss-site .site-header-inner .site-brand-logo {
    max-height: 40px;
    max-width: 128px;
  }

  .ss-site .ss-header-social--bar {
    gap: 6px;
  }

  .ss-site .ss-header-social--bar a {
    width: 32px;
    height: 32px;
  }

  .ss-site .site-header-cta .theme-btn,
  .ss-site .site-header-cta a.theme-btn {
    padding: 0.48rem 0.72rem !important;
    font-size: 0.75rem !important;
    white-space: nowrap;
  }

  .ss-site .site-header-mobile-toggle {
    width: 40px;
    height: 40px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .ss-site .site-header-mobile-toggle .icon-bar {
    width: 20px;
    margin: 3px 0;
  }

  .ss-site .navigation > li.dropdown {
    position: relative;
  }

  .ss-site .navigation > li.dropdown > a {
    padding-right: 3.25rem !important;
  }

  .ss-site .navigation > li.dropdown > ul {
    display: none !important;
    position: static !important;
    width: 100% !important;
    min-width: 0 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    box-shadow: none !important;
    border: 0 !important;
    border-radius: 12px;
    margin: 0 0 8px;
    padding: 4px 0 8px 10px !important;
  }

  .ss-site .navigation > li.dropdown.is-open > ul {
    display: block !important;
  }

  .ss-site .navigation > li.dropdown > ul li a {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.88rem !important;
    padding: 0.45rem 0.35rem !important;
    text-transform: none;
    letter-spacing: 0;
  }

  .ss-site .navigation > li.dropdown > .dropdown-btn {
    color: #f3e0b8 !important;
    border-left-color: rgba(214, 163, 84, 0.28) !important;
    z-index: 3;
  }

  .ss-site .navigation > li.dropdown.is-open > .dropdown-btn span {
    display: inline-block;
    transform: rotate(180deg);
  }

  .ss-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ss-hero-actions .theme-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .ss-ind-switch__row,
  .ss-legal-switch__row {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  .ss-ind-switch a,
  .ss-legal-switch a {
    white-space: nowrap;
    flex: 0 0 auto;
  }

  .ss-login-full { display: none; }
  .ss-login-short { display: inline; }
}

@media (max-width: 767.98px) {
  .ss-site .site-header-inner .site-brand-logo {
    max-height: 36px;
    max-width: 108px;
  }

  .ss-hero,
  .ss-about-hero,
  .ss-ind-hero,
  .ss-legal-hero {
    min-height: auto;
    padding: 118px 0 48px;
  }

  .ss-hero h1,
  .ss-legal-hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    max-width: none;
  }

  .ss-hero p.lead {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .ss-hero-kicker {
    font-size: 11px;
    letter-spacing: 0.08em;
    max-width: 100%;
  }

  .ss-preview__slot {
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12px;
  }

  .ss-preview__days {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ss-home-industries,
  .ss-compare,
  .ss-features,
  .ss-how,
  .ss-about-story,
  .ss-about-mv,
  .ss-about-values,
  .ss-ind-intro,
  .ss-ind-features,
  .ss-ind-services,
  .ss-legal-wrap,
  .ss-contact,
  .ss-about-brand {
    padding: 48px 0;
  }

  .ss-section-title {
    margin-bottom: 24px;
  }

  .ss-section-title h2 {
    font-size: 1.55rem;
  }

  .ss-legal { padding: 22px 16px; }
  .ss-toc { position: static; }
  .ss-about-brand-inner { padding: 28px 18px; }
  .ss-about-quote { padding: 22px 18px; }
  .ss-ind-intro-card { padding: 22px 16px; }
  .ss-site .ss-services-list { padding: 24px 16px; }
  .ss-about-portrait { padding: 22px 18px; }

  .ss-cta-band {
    padding: 26px 18px;
    text-align: center;
  }

  .ss-cta-band .theme-btn {
    width: 100%;
  }

  .ss-legal-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .ss-contact-map iframe { min-height: 280px; }

  .ss-site .footer-logo-newsletter {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 28px !important;
  }

  .ss-site .footer-newsletter .theme-btn {
    width: 100%;
  }

  .ss-site .ss-footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 4px;
  }

  .ss-site .ss-footer-legal a {
    margin: 0 6px;
  }

  .ss-site .copyright-area p {
    font-size: 13px;
    line-height: 1.6;
    padding: 0 8px;
  }

  .ss-faq-item summary {
    padding-right: 8px;
  }

  .ss-modal .modal-dialog {
    margin: 12px;
  }
}

@media (max-width: 575.98px) {
  .ss-site .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ss-hero-trust {
    flex-direction: column;
    gap: 6px;
  }

  .ss-legal-foot {
    flex-direction: column;
  }

  .ss-legal-foot a {
    text-align: center;
  }
}
