@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --bodyFont: "DM Sans", sans-serif;
  --titleFont: "Outfit", sans-serif;
  --transition: all 0.3s ease;
  --globalColor: #FFFCF4;
  --softColor: #F8F7FC;
  --borderColor: #E8E3EE;
  --bodyColor: #404A60;
  --titleColor: #222E48;
  --primaryColor: #200B56;
  --secondaryColor: #FBC91A;
  --secondaryColor1: #7061CC;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --boxBorderRadius: 12px;
  --btnBorderRadius: 12px;
  --btnBgColor: #200B56;
  --btnHoverBgColor: #FBC91A;
  --btnColor: #ffffff;
  --shadow: 0 4px 20px rgba(32, 11, 86, 0.08);
}

body.page-home {
  font-family: var(--bodyFont);
  color: var(--bodyColor);
  background: var(--whiteColor);
}

body.page-home .soc-header-top {
  background: #200B56;
  padding: 10px 0;
  font-size: 14px;
  color: #ffffff;
}

body.page-home .soc-header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body.page-home .soc-header-top a {
  color: #ffffff;
}

body.page-home .soc-header-top a:hover {
  text-decoration: underline;
}

body.page-home .soc-header-top-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

body.page-home .soc-social-icons {
  display: inline-flex;
  gap: 8px;
}

body.page-home .soc-social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition);
}

body.page-home .soc-social-icons a:hover {
  background: #FBC91A;
  color: #222E48;
}

body.page-home .soc-header-main {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

body.page-home .soc-header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

body.page-home .soc-logo img {
  max-height: 40px;
}

body.page-home .soc-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

body.page-home .soc-nav > li {
  position: relative;
}

body.page-home .soc-nav > li > a {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #222E48;
  font-size: 16px;
  padding: 32px 0;
  display: block;
  text-decoration: none;
  transition: var(--transition);
}

body.page-home .soc-nav > li > a:hover {
  color: #200B56;
}

body.page-home .soc-dropdown {
  position: absolute;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  padding: 16px;
  min-width: 220px;
  top: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 50;
}

body.page-home .soc-nav > li:hover .soc-dropdown {
  opacity: 1;
  visibility: visible;
}

body.page-home .soc-dropdown a {
  display: block;
  padding: 10px 16px;
  color: #404A60;
  border-radius: 8px;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition);
}

body.page-home .soc-dropdown a:hover {
  background: #F8F7FC;
}

body.page-home .soc-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.page-home .soc-category-select {
  background: #F8F7FC;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  color: #222E48;
  outline: none;
}

body.page-home .soc-search-wrapper {
  display: flex;
  background: #F8F7FC;
  border-radius: 12px;
  overflow: hidden;
  align-items: center;
}

body.page-home .soc-search-wrapper input {
  border: none;
  background: transparent;
  padding: 12px 16px;
  font-size: 14px;
  min-width: 200px;
  outline: none;
  color: #222E48;
}

body.page-home .soc-search-wrapper button {
  background: #200B56;
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: var(--transition);
}

body.page-home .soc-search-wrapper button:hover {
  background: #FBC91A;
  color: #222E48;
}

body.page-home .soc-seller-btn {
  background: var(--app-primary);
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

body.page-home .soc-seller-btn:hover {
  opacity: .85;
}

body.page-home .soc-auth-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

body.page-home .soc-mobile-hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: #F8F7FC;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  font-size: 20px;
  color: #222E48;
}

body.page-home .soc-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 999;
  flex-direction: column;
  padding: 80px 24px 24px;
  transition: right 0.3s ease;
  list-style: none;
  margin: 0;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0,0,0,0.08);
}

body.page-home .soc-mobile-nav.show {
  right: 0;
}

body.page-home .soc-mobile-nav li a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid #E8E3EE;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  color: #222E48;
  font-size: 16px;
  text-decoration: none;
}

body.page-home .soc-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

body.page-home .soc-mobile-overlay.show {
  display: block;
}

body.page-home .soc-hero-section {
  background: linear-gradient(135deg, #200B56 0%, #3A1A8A 50%, #200B56 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

body.page-home .soc-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.1;
}

body.page-home .soc-hero-section .container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

body.page-home .soc-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

body.page-home .soc-hero-text {
  flex: 1;
}

body.page-home .soc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid #FBC91A;
  border-radius: 30px;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 20px;
}

body.page-home .soc-hero-badge-icon {
  width: 20px;
  height: 20px;
  background: #FBC91A;
  border-radius: 50%;
}

body.page-home .soc-hero-text h1 {
  font-family: "Outfit", sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #ffffff !important;
  line-height: 1.15;
  margin-bottom: 24px;
}

body.page-home .soc-hero-text h1 span {
  color: #FBC91A;
}

body.page-home .soc-hero-text p {
  font-size: 20px;
  color: rgba(255,255,255,0.8) !important;
  margin-bottom: 32px;
  max-width: 600px;
}

body.page-home .soc-hero-search {
  background: #ffffff;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  align-items: center;
  max-width: 700px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

body.page-home .soc-hero-search select {
  background: transparent;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  color: #222E48;
  border-right: 1px solid #E8E3EE;
  outline: none;
}

body.page-home .soc-hero-search input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  font-size: 14px;
  outline: none;
  color: #222E48;
}

body.page-home .soc-hero-search button {
  background: #0C0420;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
  transition: var(--transition);
}

body.page-home .soc-hero-search button:hover {
  background: #FBC91A;
  color: #222E48;
}

body.page-home .soc-hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}

body.page-home .soc-hero-stat {
  text-align: center;
}

body.page-home .soc-hero-stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

body.page-home .soc-hero-stat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

body.page-home .soc-hero-floating {
  position: absolute;
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

body.page-home .soc-hero-floating-1 {
  top: 120px;
  right: 60px;
}

body.page-home .soc-hero-floating-2 {
  top: 260px;
  right: 120px;
}

body.page-home .soc-hero-floating-3 {
  bottom: 120px;
  right: 40px;
}

body.page-home .soc-hero-floating img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

body.page-home .soc-hero-floating-text {
  font-size: 14px;
  color: #222E48;
  font-weight: 600;
}

body.page-home .soc-hero-floating-subtext {
  font-size: 12px;
  color: #404A60;
  font-weight: 400;
}

body.page-home .soc-categories-section {
  padding: 120px 0;
  background: #FFFCF4;
}

body.page-home .soc-section-center {
  text-align: center;
}

body.page-home .section-badge {
  display: inline-flex;
  background: #F5F4FB;
  border: 1px solid #7061CC;
  border-radius: 30px;
  padding: 10px 24px;
  color: #222E48;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

body.page-home .section-title {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #222E48;
  text-align: center;
  margin-bottom: 12px;
}

body.page-home .section-desc {
  font-size: 18px;
  color: #404A60;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

body.page-home .soc-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

body.page-home .soc-category-card {
  background: #ffffff;
  border: 1px solid #7061CC33;
  border-radius: 16px;
  padding: 5px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  width: max-content;
}

body.page-home .soc-category-card:hover {
  background: var(--app-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(251,201,26,0.2);
}

body.page-home .soc-category-icon {
  width: 64px;
  height: 64px;
  background: #F8F7FC;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

body.page-home .soc-category-icon img {
  width: 32px;
  height: 32px;
}

body.page-home .soc-category-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #222E48;
  margin-bottom: 4px;
}

body.page-home .soc-category-count {
  font-size: 14px;
  color: #404A60;
}

body.page-home .soc-listings-section {
  padding: 120px 0;
  background: #ffffff;
}

body.page-home .soc-section-header {
  text-align: center;
  margin-bottom: 48px;
}

body.page-home .soc-section-header .section-title {
  margin-bottom: 12px;
}

body.page-home .soc-section-header .section-desc {
  margin: 0 auto;
}

body.page-home .soc-tab-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

body.page-home .soc-tab-btn {
  background: #F8F7FC;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #404A60;
  cursor: pointer;
  transition: var(--transition);
}

body.page-home .soc-tab-btn.active,
body.page-home .soc-tab-btn:hover {
  background: #200B56;
  color: #ffffff;
}

body.page-home .soc-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-home .soc-listing-card {
  background: #ffffff;
  border: 1px solid #7061CC33;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

body.page-home .soc-listing-card:hover {
  box-shadow: 0 12px 40px rgba(32,11,86,0.1);
  transform: translateY(-4px);
}

body.page-home .soc-listing-image-wrap {
  position: relative;
}

body.page-home .soc-listing-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

body.page-home .soc-listing-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #200B56;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}

body.page-home .soc-listing-price {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #FBC91A;
  color: #222E48;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
}

body.page-home .soc-listing-content {
  padding: 20px;
}

body.page-home .soc-listing-title {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222E48;
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
}

body.page-home .soc-listing-title:hover {
  color: #200B56;
}

body.page-home .soc-listing-seller {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #404A60;
}

body.page-home .soc-listing-seller img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

body.page-home .soc-listing-rating {
  display: flex;
  gap: 2px;
  color: #FBC91A;
  font-size: 14px;
  margin-left: auto;
}

body.page-home .soc-listing-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #E8E3EE;
}

body.page-home .soc-listing-metric {
  text-align: center;
}

body.page-home .soc-listing-metric-value {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #222E48;
}

body.page-home .soc-listing-metric-label {
  font-size: 12px;
  color: #404A60;
}

body.page-home .soc-view-all-wrap {
  text-align: center;
  margin-top: 40px;
}

body.page-home .soc-view-all-btn {
  display: inline-flex;
  background: #200B56;
  color: #ffffff;
  padding: 14px 36px;
  border-radius: 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-size: 16px;
  transition: var(--transition);
}

body.page-home .soc-view-all-btn:hover {
  background: #FBC91A;
  color: #222E48;
}

body.page-home .soc-steps-section {
  padding: 120px 0;
  background: #FFFCF4;
}

body.page-home .soc-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

body.page-home .soc-steps-grid::before {
  content: "";
  position: absolute;
  top: 48px;
  left: calc(12.5% + 24px);
  width: calc(75% - 48px);
  height: 2px;
  background: #E8E3EE;
}

body.page-home .soc-step-card {
  text-align: center;
  position: relative;
}

body.page-home .soc-step-number {
  width: 80px;
  height: 80px;
  background: #FBC91A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #222E48;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

body.page-home .soc-step-icon {
  width: 60px;
  height: 60px;
  background: #F8F7FC;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

body.page-home .soc-step-icon img {
  width: 28px;
  height: 28px;
}

body.page-home .soc-step-title {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #222E48;
  margin-bottom: 8px;
}

body.page-home .soc-step-desc {
  font-size: 15px;
  color: #404A60;
  line-height: 1.6;
}

body.page-home .soc-trust-section {
  padding: 120px 0;
  background: #ffffff;
}

body.page-home .soc-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

body.page-home .soc-trust-left h2 {
  font-family: "Outfit", sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #222E48;
  margin-bottom: 16px;
}

body.page-home .soc-trust-left p {
  font-size: 18px;
  color: #404A60;
  line-height: 1.7;
}

body.page-home .soc-trust-stats-row {
  display: flex;
  gap: 48px;
  margin-top: 32px;
}

body.page-home .soc-trust-stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #200B56;
}

body.page-home .soc-trust-stat-label {
  font-size: 16px;
  color: #404A60;
}

body.page-home .soc-trust-checklist {
  list-style: none;
  padding: 0;
  margin-top: 24px;
}

body.page-home .soc-trust-checklist li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: #404A60;
}

body.page-home .soc-trust-check-icon {
  color: #200B56;
  font-size: 18px;
}

body.page-home .soc-trust-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

body.page-home .soc-trust-card {
  background: #F8F7FC;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

body.page-home .soc-trust-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(32,11,86,0.08);
}

body.page-home .soc-trust-card-icon {
  width: 56px;
  height: 56px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #200B56;
}

body.page-home .soc-trust-card-title {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #222E48;
  margin-bottom: 8px;
}

body.page-home .soc-trust-card-desc {
  font-size: 14px;
  color: #404A60;
}

body.page-home .soc-testimonials-section {
  padding: 120px 0;
  background: #FFFCF4;
}

body.page-home .soc-testimonial-slider {
  margin: 0 -12px;
}

body.page-home .soc-testimonial-card {
  background: #ffffff;
  border: 1px solid #7061CC33;
  border-radius: 16px;
  padding: 32px;
  margin: 0 12px;
}

body.page-home .soc-testimonial-quote {
  font-size: 16px;
  color: #404A60;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  padding-left: 24px;
  border-left: 3px solid #FBC91A;
}

body.page-home .soc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.page-home .soc-testimonial-author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

body.page-home .soc-testimonial-name {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #222E48;
}

body.page-home .soc-testimonial-role {
  font-size: 13px;
  color: #404A60;
}

body.page-home .soc-testimonial-dots {
  text-align: center;
  margin-top: 32px;
}

body.page-home .soc-testimonial-dots li {
  width: 10px;
  height: 10px;
  background: #D4D0DC;
  border-radius: 50%;
  display: inline-block;
  margin: 0 4px;
  cursor: pointer;
  list-style: none;
}

body.page-home .soc-testimonial-dots li.slick-active {
  background: #200B56;
  width: 30px;
  border-radius: 5px;
}

body.page-home .soc-faq-section {
  padding: 120px 0;
  background: #ffffff;
}

body.page-home .soc-faq-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

body.page-home .soc-faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

body.page-home .soc-faq-item {
  background: #F8F7FC;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #7061CC33;
}

body.page-home .soc-faq-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #222E48;
  cursor: pointer;
  text-align: left;
}

body.page-home .soc-faq-btn::after {
  content: "+";
  font-size: 22px;
  transition: transform 0.3s ease;
}

body.page-home .soc-faq-btn[aria-expanded="true"]::after {
  content: "\2212";
}

body.page-home .soc-faq-content {
  padding: 0 24px 20px;
  font-size: 15px;
  color: #404A60;
  line-height: 1.7;
}

body.page-home .soc-faq-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;
  background: #200B56;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body.page-home .soc-faq-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #FBC91A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

body.page-home .soc-faq-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

body.page-home .soc-faq-play-icon {
  font-size: 32px;
  color: #222E48;
}

body.page-home .soc-faq-video-text {
  text-align: center;
  color: #ffffff;
  position: absolute;
  bottom: 40px;
  width: 100%;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 18px;
}

body.page-home .soc-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #200B56 0%, #3A1A8A 100%);
  text-align: center;
}

body.page-home .soc-cta-section h2 {
  font-family: "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 16px;
}

body.page-home .soc-cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.8) !important;
  max-width: 600px;
  margin: 0 auto 32px;
}

body.page-home .soc-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

body.page-home .soc-cta-primary {
  background: #FBC91A;
  color: #222E48;
  padding: 16px 40px;
  border-radius: 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  border: none;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

body.page-home .soc-cta-primary:hover {
  background: #e8b800;
}

body.page-home .soc-cta-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 16px 40px;
  border-radius: 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

body.page-home .soc-cta-secondary:hover {
  background: #ffffff;
  color: #200B56;
}

body.page-home .soc-blog-section {
  padding: 120px 0;
  background: #ffffff;
}

body.page-home .soc-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

body.page-home .soc-blog-card {
  background: #ffffff;
  border: 1px solid #7061CC33;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

body.page-home .soc-blog-card:hover {
  box-shadow: 0 12px 40px rgba(32,11,86,0.1);
  transform: translateY(-4px);
}

body.page-home .soc-blog-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

body.page-home .soc-blog-content {
  padding: 24px;
}

body.page-home .soc-blog-category {
  display: inline-block;
  background: #F5F4FB;
  color: #7061CC;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
  text-decoration: none;
}

body.page-home .soc-blog-title {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #222E48;
  margin-bottom: 12px;
  line-height: 1.3;
  text-decoration: none;
  display: block;
}

body.page-home .soc-blog-title:hover {
  color: #200B56;
}

body.page-home .soc-blog-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: #404A60;
  margin-bottom: 16px;
}

body.page-home .soc-blog-excerpt {
  font-size: 15px;
  color: #404A60;
  line-height: 1.6;
  margin-bottom: 16px;
}

body.page-home .soc-blog-readmore {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  color: #200B56;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}

body.page-home .soc-blog-readmore:hover {
  color: #FBC91A;
  gap: 12px;
}

body.page-home .soc-footer {
  background: #200B56;
  padding: 80px 0 0;
  color: #ffffff;
}

body.page-home .soc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 40px;
}

body.page-home .soc-footer-title {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

body.page-home .soc-footer-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 20px;
}

body.page-home .soc-footer-social {
  display: flex;
  gap: 12px;
}

body.page-home .soc-footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}

body.page-home .soc-footer-social a:hover {
  background: #FBC91A;
  border-color: #FBC91A;
  color: #222E48;
}

body.page-home .soc-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.page-home .soc-footer-links li {
  padding: 8px 0;
}

body.page-home .soc-footer-links li a {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
}

body.page-home .soc-footer-links li a:hover {
  color: #FBC91A;
  padding-left: 4px;
}

body.page-home .soc-footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

body.page-home .soc-footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FBC91A;
  font-size: 14px;
  flex-shrink: 0;
}

body.page-home .soc-footer-contact-text {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}

body.page-home .soc-footer-newsletter {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 30px;
  overflow: hidden;
  margin-top: 16px;
}

body.page-home .soc-footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
}

body.page-home .soc-footer-newsletter input::placeholder {
  color: rgba(255,255,255,0.5);
}

body.page-home .soc-footer-newsletter button {
  background: #FBC91A;
  color: #222E48;
  border: none;
  padding: 14px 24px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

body.page-home .soc-footer-newsletter button:hover {
  background: #e8b800;
}

body.page-home .soc-footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body.page-home .soc-footer-copyright {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

body.page-home .soc-footer-payments {
  display: flex;
  gap: 8px;
}

body.page-home .soc-footer-payments img {
  height: 24px;
  opacity: 0.6;
}

@media (max-width: 1200px) {
  body.page-home .soc-hero-text h1 {
    font-size: 56px;
  }
  body.page-home .section-title {
    font-size: 36px;
  }
  body.page-home .soc-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  body.page-home .soc-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-home .soc-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-home .soc-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-home .soc-footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  body.page-home .soc-nav {
    display: none;
  }
  body.page-home .soc-mobile-hamburger {
    display: flex;
  }
  body.page-home .soc-mobile-nav {
    display: flex;
  }
  body.page-home .soc-hero-section {
    padding: 80px 0;
  }
  body.page-home .soc-hero-text h1 {
    font-size: 42px;
  }
  body.page-home .soc-hero-floating {
    display: none;
  }
  body.page-home .soc-hero-stats {
    gap: 24px;
  }
  body.page-home .soc-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-home .soc-listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-home .soc-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-home .soc-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-home .soc-trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.page-home .soc-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.page-home .soc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.page-home .soc-hero-stat-number {
    font-size: 36px;
  }
  body.page-home .soc-header-actions > *:not(.soc-mobile-hamburger):not(.soc-auth-dropdown) {
    display: none;
  }
  body.page-home .soc-hero-content {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  body.page-home .soc-hero-text h1 {
    font-size: 36px;
  }
  body.page-home .section-title {
    font-size: 32px;
  }
  body.page-home .soc-category-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .soc-listing-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .soc-blog-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .soc-steps-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .soc-footer-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .soc-hero-stat-number {
    font-size: 32px;
  }
  body.page-home .soc-listing-metrics {
    grid-template-columns: repeat(3, 1fr);
  }
  body.page-home .soc-hero-search {
    flex-direction: column;
    gap: 8px;
    padding: 16px;
  }
  body.page-home .soc-hero-search select {
    border-right: none;
    border-bottom: 1px solid #E8E3EE;
    width: 100%;
  }
  body.page-home .soc-hero-search input {
    width: 100%;
  }
  body.page-home .soc-hero-search button {
    width: 100%;
  }
  body.page-home .soc-hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }
  body.page-home .soc-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  body.page-home .soc-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
