@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap' ); 
/* ============================
   SOHO FOOTER (DARK GRAY ONLY)
   ============================ */
.soho-footer{
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
    #0b0c0f 0%,
    #12141a 45%,
    #1b1f28 100%
  ) !important;
  color:#fff;
}

/* no glow layers */
.soho-footer::before,
.soho-footer::after{
  content:"" !important;
  background:none !important;
  opacity:0 !important;
}

/* keep content above */
.soho-footer *{
  position: relative;
  z-index: 2;
}

/* === HERO BACKGROUND FIX: remove black edge, make it purple + left gradient === */
.hero-section{
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg,
    #1a0733 0%,
    #2b114b 35%,
    #3b0a80 70%,
    #8b2cff 100%
  ) !important;
}

/* Left-side gradient “wash” so the left never falls to black */
.hero-section::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index:0;
  background: linear-gradient(90deg,
    rgba(26,7,51,.95) 0%,
    rgba(43,17,75,.85) 28%,
    rgba(59,10,128,.55) 52%,
    rgba(59,10,128,0) 78%
  );
}

/* Keep your carousel + content above the background layers */
.hero-carousel{ z-index: 1; }
.hero-content{ position: relative; z-index: 2; }

/*bODY*/


/* Starts */
/* Full-width white/light background */
.logo-section {
	background-color: #f9f9f9 !important;
	padding: 20px 0;
	width: 100%;
}

/* Centered container inside */
.logo-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.logo-gallery img {
	max-height: 10px;
	max-width: 100px;
	width: auto;
	filter: grayscale(100%);
	opacity: .6;
	transition: all .3s ease;
	flex: 1 1 80px;
}

/* Mobile */
@media (max-width: 480px) {
	.logo-gallery {
		gap: 24px;
	}
	
	.logo-gallery img {
		max-height: 15px;
		flex: 1 1 40%;
	}
}

/*Other Stuff*/
/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	background: #0f011d;
	color: white;
}

/* Links */
a:any-link {
	cursor: pointer;
	text-underline-offset: .2em;
}

a:where(:not(.wp-element-button)):hover {
	text-decoration: none;
}

/* Bold Text */
.bold-text {
	font-weight: bold !important;
}

/* Logo Section */
.logo-section {
	background-color: #f9f9f9 !important;
	padding: 30px 0;
	width: 100%;
}

.logo-gallery {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 46px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
	text-align: center;
}

.logo-gallery img {
	max-height: 30px;
	max-width: 70px;
	width: auto;
	filter: grayscale(100%);
	opacity: .6;
	transition: all .3s ease;
	flex: 1 1 80px;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
	.logo-gallery {
		gap: 24px;
	}
	
	.logo-gallery img {
		max-height: 26px;
		flex: 1 1 40%;
	}
}
/* ============================
   Carousel Background
   ============================ */
.hero-carousel {
  position: relative;      /* was absolute */
  inset: auto;             /* stop forcing full overlay */
  width: 100%;             /* was 200% */
  height: 100%;
  overflow: hidden;
  z-index: 2;              /* bring above background layers */
  opacity: 1;              /* was 0.15 */
  pointer-events: auto;    /* was none */
}


.hero-carousel-track {
  display: flex;
  height: 100%;
  width: max-content;

  /* FIX: make it smooth (1s was too fast) */
  animation: scroll-left 70s linear infinite;
}

/* make images feel like screenshot cards */
.hero-carousel-track img {
  height: 100%;
  width: auto;
  min-width: 280px;
  object-fit: cover;
  margin-right: 30px;
  border-radius: 14px;

  /* optional: subtle pop */
  box-shadow: 0 10px 35px rgba(0,0,0,0.22);
}

/* Smooth scroll */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile tweak */
@media (max-width: 768px){
  .hero-section{
    padding: 90px 18px;
  }
/  .hero-content h1{
    font-size: 2.2rem;
  }
}



/*what*/


/*why*/
.why-soho {
  padding: 60px 20px;
  background: #fef7ff; /* Soft lavender */
  text-align: center;
}

.why-soho h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  font-weight: 600;
  color: #111;
  font-family: "Poppins", serif;
}

.why-soho-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.why-soho .why-card {
  background: #e8d9ff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 260px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.why-soho .why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.why-soho .why-icon {
  margin-bottom: 20px;
}

.why-soho .why-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: brightness(0); /* Black style icons */
}

.why-soho .why-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.why-soho .why-card p {
  font-size: 0.95rem;
  font-weight: 400;
  color: #444;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 768px) {
  .why-soho .why-card {
    width: 100%;
    max-width: 320px;
    margin: auto;
  }
}

/*Why ends here*/


/*button purple*/
@media (max-width: 768px) {
	.wp-block-button__width-25 {
		display: none !important;
	}
}

/*gallery carrousel*/
.collab-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.6);
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(0, 0, 0, 0.5), transparent);
  pointer-events: none;
}

.carousel-track {
  display: flex;
  gap: 20px;
  padding: 1rem;
  overflow-x: auto;
  position: relative;
  z-index: 2;
}

.carousel-track img {
  height: 260px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeIn 1.2s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.purple-btn {
  background: #6a32ff;
  color: white;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.purple-btn:hover {
  background: #4a1ecf;
}

.collab-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 60px 40px;
  border-radius: 28px;
  background: linear-gradient(135deg, #2b114b, #3b0a80);
  color: #fff;
  gap: 40px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.collab-text {
  flex: 1 1 460px;
}

.collab-text h2 {
  font-size: 2.rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #fff;
}

.collab-text h2 span {
  display: block;
  font-weight: 400;
  font-size: 1.6rem;
  margin-top: 0.5rem;
  color: #e2e2e2;
}

.collab-points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 1rem;
  color: #ddd;
}

.collab-points strong {
  color: #fff;
  font-weight: 600;
}

/* Carousel Container */
.carousel-track img {
  height: 260px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.collab-carousel {
  flex: 1 1 500px;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  padding: 10px;
}

/* Scrolling Track */
.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll-left 80s linear infinite;
  width: max-content;
}

.carousel-track img {
  height: 260px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ===== COLLAPSE FIX: keep text + carousel on same row (desktop) ===== */
.collab-block{
  display: flex !important;
  flex-wrap: nowrap !important;     /* prevents carousel from dropping */
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
}

/* Give text room but allow shrink */
.collab-text{
  flex: 1 1 55% !important;
  min-width: 0 !important;          /* IMPORTANT: allows flex to not force wrap */
}

/* FIX your typo: 2.rem -> 2rem */
.collab-text h2{ font-size: 2rem !important; }

/* Make carousel smaller and not too wide */
.collab-carousel{
  flex: 0 0 380px !important;       /* smaller carousel box */
  max-width: 380px !important;
}

/* ===== Smaller slides ===== */
.collab-carousel .carousel-track{
  gap: 14px !important;
  padding: 10px !important;
}

.collab-carousel .carousel-track img{
  height: 150px !important;         /* ↓ slide height */
  min-width: 190px !important;      /* ↓ slide width */
  border-radius: 12px !important;
  object-fit: cover !important;
}

/* Stack ONLY on smaller screens */
@media (max-width: 980px){
  .collab-block{ flex-wrap: wrap !important; }
  .collab-carousel{
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}
/* ===== MAKE ENTIRE COLLAB BLOCK SMALLER ===== */
.collab-block{
  max-width: 980px !important;   /* ↓ controls overall width */
  margin: 40px auto !important;  /* centers + reduces visual dominance */
  padding: 38px 36px !important; /* ↓ tighter padding */
  gap: 20px !important;
  border-radius: 20px !important;
}

/* ===== Scale text down ===== */
.collab-text h2{
  font-size: 1.7rem !important; /* ↓ headline */
  line-height: 1.25 !important;
}

.collab-text h2 span{
  font-size: .9rem !important;  /* ↓ subheadline */
}

.collab-points{
  font-size: 0.9rem !important;
  gap: 0.75rem !important;
}

/* ===== Button slightly smaller ===== */
.purple-btn{
  padding: 10px 22px !important;
  font-size: 0.9rem !important;
}

/* ===== Keep carousel proportionate ===== */
.collab-carousel{
  flex: 0 0 340px !important;    /* ↓ overall carousel size */
  max-width: 340px !important;
  padding: 8px !important;
}


/*Additional*/
/*benefits*/
.website-benefits {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	background: #c5bbfc;
	color: #000;
	padding: 60px 20px;
}

.website-benefits .benefit {
	max-width: 320px;
}

.website-benefits h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: #000;
	margin-bottom: 12px;
}

.website-benefits p {
	font-size: 1rem;
	color: #000;
	font-weight: 400;
	line-height: 1.6;
	margin-bottom: 16px;
}

.website-benefits a {
	font-weight: 600;
	font-size: 1rem;
	color: #000;
	text-decoration: none;
	transition: opacity .2s ease;
}

.website-benefits a:hover {
	opacity: .8;
}

.website-benefits h3 {
	color: #000;
/* or use a different light color if you prefer */
}
 


/*Get paid*/
.get-paid-section {
	background: #0d0d0d;
	color: #fff;
	padding: 60px 20px;
	font-family: 'Inter', sans-serif;
}

.get-paid-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: 0 auto 60px;
	gap: 30px;
}

.text-column {
	flex: 1;
	min-width: 300px;
}

.text-column h2 {
	font-size: 2.2rem;
	margin-bottom: 16px;
}

.text-column p {
	color: #ccc;
	margin-bottom: 20px;
	font-size: 1rem;
}

.cta-button {
	background: #fff;
	color: #000;
	padding: 12px 24px;
	border-radius: 6px;
	text-decoration: none;
	font-weight: 600;
}

.image-column img {
	max-width: 100%;
	border-radius: 8px;
}

.features-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto 60px;
	gap: 30px;
}

.feature-item {
	flex: 1;
	min-width: 250px;
}

.feature-item h4 {
	color: #fff;
	font-size: 1.1rem;
	margin-bottom: 8px;
}

.feature-item p {
	color: #aaa;
	font-size: .95rem;
}

.highlight-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #1c1c1c;
	border-radius: 12px;
	padding: 40px;
	gap: 30px;
}

.highlight-text {
	flex: 1;
}

.highlight-text h3 {
	font-size: 1.6rem;
	margin-bottom: 10px;
	color: #fff;
}

.highlight-text p {
	color: #ccc;
	margin-bottom: 12px;
}

.highlight-text a {
	color: #a98dfc;
	text-decoration: underline;
}

.highlight-img img {
	max-width: 100%;
	border-radius: 8px;
}


/* Optional: Improve layout spacing */
form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

form p, form h2 {
	text-align: left !important;
}

form {
	max-width: 600px;
	margin: auto;
}


/*mobile logos*/
@media (max-width: 600px) {
	.logo-gallery {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		justify-content: center;
	}
	
	.logo-gallery img {
		max-width: 80px;
		flex: 0 1 40%;
	/* Two per row on mobile */
	}
}

/*text green blue screen*/
html, body {
	overflow-x: hidden;
}

/**/
.collab-block, .collab-text, .collab-carousel {
	max-width: 100%;
	box-sizing: border-box;
}

.collab-carousel img {
	max-width: 100%;
	max-height: 300px;
/*  Limits height */
	height: auto;
	display: inline;
	border-radius: 8px;
}

/*pricing fix*/
@media (max-width: 480px) {
	.pricing-grid {
		flex-direction: column;
		align-items: center;
	}
	
	.plan {
		width: 90% !important;
		max-width: 350px;
	}
}

/*posts*/
body {
	font-family: 'Segoe UI', sans-serif;
	background: #f7f7ff;
	color: #222;
	line-height: 1.6;
	margin: 0;
	padding: 0 20px;
}

.blog-post {
	max-width: 800px;
	margin: 40px auto;
	background: white;
	padding: 40px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.post-header h1 {
	font-size: 2.4rem;
	margin-bottom: 10px;
	color: #2c008c;
}

.post-meta {
	font-size: .9rem;
	color: #666;
}

.post-cover img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin: 30px 0;
}

.post-content h2 {
	margin-top: 40px;
	font-size: 1.6rem;
	color: #4a00e0;
}

.post-content ul {
	padding-left: 20px;
	margin-top: 10px;
}

.post-content li {
	margin-bottom: 10px;
}

.cta-button {
	display: inline-block;
	margin-top: 40px;
	padding: 14px 28px;
	background: #7b2fe4;
	color: white;
	font-weight: bold;
	border-radius: 8px;
	text-decoration: none;
	transition: background .3s ease;
}

.cta-button:hover {
	background: #5a1fde;
}

/* Responsive */
@media (max-width: 768px) {
	.blog-post {
		padding: 20px;
	}
	
	.post-header h1 {
		font-size: 1.8rem;
	}
	
	.post-content h2 {
		font-size: 1.3rem;
	}
}

/*TECH AND SAAS*/
/* General Reset */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Poppins', sans-serif;
	line-height: 1.6;
	background: #0f011d;
	color: #fff;
	overflow-x: hidden;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #6a11cb, #2575fc);
	padding: 100px 20px;
	text-align: center;
	animation: fadeIn 1s ease-in;
}

.hero-content h1 {
	font-size: 2.8rem;
	margin-bottom: 16px;
}

.hero-content p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	display: inline-block;
	background: #fff;
	color: #000;
	padding: 14px 28px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: background .3s ease;
}

.cta-button:hover {
	background: #eaeaea;
}

.cta-button.outline {
	background: transparent;
	border: 2px solid #fff;
	color: #fff;
}

.cta-button.outline:hover {
	background: #fff;
	color: #000;
}

/* Features Section */
.features {
	padding: 80px 20px;
	background: #fef7ff;
	color: #111;
	text-align: center;
	animation: slideUp 1.2s ease-in-out;
}

.features h2 {
	font-size: 2rem;
	margin-bottom: 40px;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.feature {
	background: #fff;
	border-radius: 12px;
	padding: 30px 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Strategy Section */
.strategy {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	padding: 80px 20px;
	align-items: center;
	justify-content: center;
	background: #111;
}

.strategy-text {
	flex: 1 1 400px;
	max-width: 500px;
}

.strategy-text h2 {
	font-size: 2rem;
	margin-bottom: 20px;
}

.strategy-text ul {
	margin-top: 20px;
	margin-bottom: 30px;
}

.strategy-text li {
	margin-bottom: 10px;
	font-size: 1rem;
	color: #bbb;
}

.strategy-img {
	flex: 1 1 400px;
	text-align: center;
}

.strategy-img img {
	max-width: 100%;
	border-radius: 12px;
}

/* Footer */
.footer {
	padding: 40px 20px;
	text-align: center;
	background: #0a0017;
	font-size: .9rem;
	color: #aaa;
}

/* Animations */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(40px);
	}
	
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2rem;
	}
	
	.strategy {
		flex-direction: column;
		text-align: center;
	}
	
	.strategy-text, .strategy-img {
		max-width: 100%;
	}
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#page, .ast-container, .elementor-section.elementor-section-stretched {
  max-width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box;
}

header, footer {
  max-width: 100% !important;
  padding: 0 px;
  margin: 0 auto;
}
html, body {
  padding: 0 !important;
  margin: 0 !important;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  width: 100% !important;
}

.ast-container {
  padding: 0 !important;
}
/*about page*/


 /*Talav header menu*/
/* TALAV HEADER STYLES */
.talav-header {
  background: #fff;
  padding: 20px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-family: 'Inter', sans-serif;
}

.talav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}

.talav-logo img {
  height: 40px;
}

.talav-nav-secondary ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.talav-nav-secondary a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
  transition: color 0.2s ease;
}

.talav-nav-secondary a:hover {
  color: #5b21b6; /* Purple accent on hover */
}

/*Footer*/
.talav-footer {
  background: #FAFAFA;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  max-width: 140px;
}

.site-title {
  font-size: 20px;
  font-weight: bold;
  margin-top: 10px;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  margin: 0 12px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom p {
  font-size: 14px;
  color: #777;
  margin-top: 20px;
}
.pricing-intro {
  background: linear-gradient(to right, #f0f4ff, #ffffff);
  padding: 80px 20px;
  text-align: center;
}


.pricing-intro h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 15px;
}

.pricing-intro p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 30px;
}

.btn-purple {
  display: inline-block;
  padding: 12px 24px;
  background-color: #6a32ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}
/*Industries 1*/ 
.industry-benefits {
  background-color: #f9f9ff;
  padding: 60px 20px;
  text-align: center;
}

.industry-benefits-container h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 800;
  color: #111;
}

.industry-benefits-subtext {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.benefit-card {
  background: #ffff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.benefit-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #333;
}

.benefit-card p {
  font-size: 0.95rem;
  color: #666;
}
/**/
.trust-section {
  background-color: #c8b8fc;
  text-align: center;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.trust-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000;
}

.trust-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.industry-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.industry-box {
  background: #f3f1ffff;
  border-radius: 16px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
}

.icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.industry-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}

.industry-box p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
/**/
.section-title {
  color: black;
  text-align: center;
  background: #F8F7FF;
  font-size: 1.5rem;
  margin-top: 2rem;
  padding-top: 1rem;
}

.results-highlight {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  background: #F8F7FF;
  padding: 2rem 1rem;
  border-radius: 12px;
}

.result-box {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  min-width: 160px;
  flex: 1 1 30%;
  transition: transform 0.2s ease;
}

.result-box:hover {
  transform: translateY(-5px);
}

.result-box strong {
  font-size: 1.75rem;
  font-weight: 600;
  color: #6a32ff;
  display: block;
  margin-top: 0.5rem;
}

.result-box span {
  color: #000;
  font-size: 0.95rem;
  display: block;
  margin-top: 0.25rem;
}

@media (max-width: 768px) {
  .results-highlight {
    flex-direction: column;
    align-items: center;
  }

  .result-box {
    width: 100%;
    max-width: 320px;
  }
}


/**/
.cta-banner {
  text-align: center;
  background: #fafafa;
  color: white;
  padding: 60px 20px;
}
.cta-banner h3 {
  font-size: 2rem;
  margin-bottom: 20px;
	color: #fafafa;
  font-weight: 600;
}
.cta-banner .btn-primary {
  background: black;
  color: #6a32ff;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}
.cta-banner .btn-primary:hover {
  background: black;
}
.who-we-are {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 20px;
  background-color: #f5f4fa;
}
.who-we-are .who-content {
  max-width: 500px;
}
.who-we-are h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000;
}
.who-we-are p {
  font-size: 1.1rem;
  color: #333;
}
.who-we-are .who-image img {
  width: 300px;
  border-radius: 16px;
}
/**/
#soho-left-scroll-gallery {
  overflow: hidden;
  padding: 40px 0;
  background: #f8f8f8;
}

#soho-left-scroll-gallery .soho-carousel-track {
  display: inline-flex;
  animation: soho-scroll-left 25s linear infinite;
  gap: 20px;
}

#soho-left-scroll-gallery img {
  width: 250px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Keyframe animation only for Soho carousel */
@keyframes soho-scroll-left {
  0% {
    transform: translateX(0);
  }
  00% {
    transform: translateX(-50%);
  }
}
/*right side car*/
#soho-right-scroll-gallery {
  overflow: hidden;
  padding: 40px 0;
  background: #f8f8f8;
}

#soho-right-scroll-gallery .soho-carousel-track {
  display: inline-flex;
	width: 100%;
  animation: soho-scroll-right 25s linear infinite;
	
  gap: 20px;
}

#soho-right-scroll-gallery img {
  width: 2350px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes soho-scroll-right {
100% {
    transform: translateX(-100);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*posts*/
#reach-customers-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
}

#reach-customers-post h1,
#reach-customers-post h2,
#reach-customers-post h3 {
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#reach-customers-post img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

#reach-customers-post p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

#reach-customers-post ul,
#reach-customers-post ol {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

#reach-customers-post blockquote {
  border-left: 4px solid #6A32FF;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

#reach-customers-post .cta-button,
#reach-customers-post a[href*="/contact"] {
  display: inline-block;
  background: #6A32FF;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

#reach-customers-post .cta-button:hover,
#reach-customers-post a[href*="/contact"]:hover {
  background: #5429cc;
}

#reach-customers-post hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 2rem 0;
}
/**/
#boost-credibility-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
}

#boost-credibility-post h1,
#boost-credibility-post h2,
#boost-credibility-post h3 {
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#boost-credibility-post img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

#boost-credibility-post p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

#boost-credibility-post ul,
#boost-credibility-post ol {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

#boost-credibility-post blockquote {
  border-left: 4px solid #6A32FF;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

#boost-credibility-post a[href*="sohostack"] {
  display: inline-block;
  background: #6A32FF;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

#boost-credibility-post a[href*="sohostack"]:hover {
  background: #5429cc;
}

#boost-credibility-post hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 2rem 0;
}
/**/
#rank-google-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
}

#rank-google-post h1,
#rank-google-post h2,
#rank-google-post h3 {
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#rank-google-post img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

#rank-google-post p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

#rank-google-post ul,
#rank-google-post ol {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

#rank-google-post blockquote {
  border-left: 4px solid #6A32FF;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

#rank-google-post a[href*="sohostack"] {
  display: inline-block;
  background: #6A32FF;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

#rank-google-post a[href*="sohostack"]:hover {
  background: #5429cc;
}

#rank-google-post hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 2rem 0;
}
/**/
#share-info-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
}

#share-info-post h1,
#share-info-post h2,
#share-info-post h3 {
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#share-info-post img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

#share-info-post p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

#share-info-post ul,
#share-info-post ol {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

#share-info-post blockquote {
  border-left: 4px solid #6A32FF;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

#share-info-post a[href*="sohostack"] {
  display: inline-block;
  background: #6A32FF;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

#share-info-post a[href*="sohostack"]:hover {
  background: #5429cc;
}

#share-info-post hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 2rem 0;
}
/**/
#increase-sales-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
}

#increase-sales-post h1,
#increase-sales-post h2,
#increase-sales-post h3 {
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#increase-sales-post img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

#increase-sales-post p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

#increase-sales-post ul,
#increase-sales-post ol {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

#increase-sales-post blockquote {
  border-left: 4px solid #6A32FF;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

#increase-sales-post a[href*="sohostack"] {
  display: inline-block;
  background: #6A32FF;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

#increase-sales-post a[href*="sohostack"]:hover {
  background: #5429cc;
}

#increase-sales-post hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 2rem 0;
}
/**/
#build-trust-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
}

#build-trust-post h1,
#build-trust-post h2,
#build-trust-post h3 {
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#build-trust-post img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

#build-trust-post p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

#build-trust-post ul,
#build-trust-post ol {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

#build-trust-post blockquote {
  border-left: 4px solid #6A32FF;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

#build-trust-post a[href*="sohostack"] {
  display: inline-block;
  background: #6A32FF;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

#build-trust-post a[href*="sohostack"]:hover {
  background: #5429cc;
}

#build-trust-post hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 2rem 0;
}
/**/
#passive-income-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
}

#passive-income-post h1,
#passive-income-post h2,
#passive-income-post h3 {
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#passive-income-post img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

#passive-income-post p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

#passive-income-post ul,
#passive-income-post ol {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

#passive-income-post blockquote {
  border-left: 4px solid #6A32FF;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

#passive-income-post a[href*="sohostack"] {
  display: inline-block;
  background: #6A32FF;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

#passive-income-post a[href*="sohostack"]:hover {
  background: #5429cc;
}

#passive-income-post hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 2rem 0;
}
/**/
#capture-leads-post {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #fff;
}

#capture-leads-post h1,
#capture-leads-post h2,
#capture-leads-post h3 {
  color: #000;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

#capture-leads-post img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

#capture-leads-post p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

#capture-leads-post ul,
#capture-leads-post ol {
  margin-left: 1.5rem;
  padding-left: 0.5rem;
  margin-bottom: 1.5rem;
}

#capture-leads-post blockquote {
  border-left: 4px solid #6A32FF;
  padding-left: 1rem;
  margin: 2rem 0;
  font-style: italic;
  color: #555;
}

#capture-leads-post a[href*="sohostack"] {
  display: inline-block;
  background: #6A32FF;
  color: #fff;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

#capture-leads-post a[href*="sohostack"]:hover {
  background: #5429cc;
}

#capture-leads-post hr {
  border: none;
  height: 1px;
  background: #eee;
  margin: 2rem 0;
}
/**/
.soho-footer {
 
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.soho-footer .footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo img {
  width: 40px;
  margin-bottom: 8px;
}

.footer-logo h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  color: #fafafa !important;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.footer-social a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
}

.footer-social img {
  width: 24px;
  height: 24px;
  display: block;
}

.footer-bottom {
  margin-top: 30px;
  font-size: 14px;
  color: #bbb;
}

.footer-bottom p {
  margin-bottom: 5px;
  font-weight: 500;
  color: #eee;
}

/**neeeeeeewwwwwwww**/


/* =========================
   SUBMIT BUTTON spacing
   ========================= */
.ss-h1{
  color:#ffffff !important;
}

/* ============================
   SOHO STACK FOOTER BACKGROUND
   ============================ 
   ========================================= */
/* ═══════════════════════════════════════════════════════════
   SOHOSTACK LANDING PAGE CS
   ═══════════════════════════════════════════════════════════ */

/* === BASE === */
.ss-root { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important; color: #d4d4d8 !important; background: #09090B !important; line-height: 1.6 !important; -webkit-font-smoothing: antialiased !important; }
.ss-root *, .ss-root *::before, .ss-root *::after { box-sizing: border-box !important; }
.ss-root img { max-width: 100% !important; display: block !important; }
.ss-root a { color: inherit !important; text-decoration: none !important; }
.ss-root p, .ss-root h1, .ss-root h2, .ss-root h3, .ss-root h4, .ss-root blockquote { margin: 0 !important; padding: 0 !important; }
.ss-root h1, .ss-root h2, .ss-root h3, .ss-root h4 { color: #fff !important; }
.ss-root blockquote { border: none !important; }

/* === CONTAINER === */
.ss-root .ss-container { width: 100% !important; max-width: 1280px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 1rem !important; padding-right: 1rem !important; }
@media (min-width: 640px) { .ss-root .ss-container { padding-left: 1.5rem !important; padding-right: 1.5rem !important; } }
@media (min-width: 1024px) { .ss-root .ss-container { padding-left: 2rem !important; padding-right: 2rem !important; } }

/* === TYPOGRAPHY === */
.ss-root .ss-h1 { font-size: 2.5rem !important; font-weight: 900 !important; line-height: 1.1 !important; letter-spacing: -0.03em !important; color: #fff !important; }
@media (min-width: 768px) { .ss-root .ss-h1 { font-size: 3.5rem !important; } }
@media (min-width: 1024px) { .ss-root .ss-h1 { font-size: 4rem !important; } }
.ss-root .ss-h2 { font-size: 2rem !important; font-weight: 800 !important; line-height: 1.15 !important; letter-spacing: -0.02em !important; color: #fff !important; }
@media (min-width: 768px) { .ss-root .ss-h2 { font-size: 2.5rem !important; } }
.ss-root .ss-h3 { font-size: 1.5rem !important; font-weight: 700 !important; line-height: 1.2 !important; color: #fff !important; }

/* === GRADIENTS === */
.ss-root .ss-grad { background: linear-gradient(135deg, #BFFF00, #00E5C3, #8B5CF6) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }
.ss-root .ss-grad-warm { background: linear-gradient(135deg, #FF6B6B, #F59E0B) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; }

/* === GLASS CARD === */
.ss-root .ss-glass { background: rgba(255,255,255,0.03) !important; border: 1px solid rgba(255,255,255,0.06) !important; border-radius: 1rem !important; backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important; }

/* === BADGES === */
.ss-root .ss-badge { display: inline-flex !important; align-items: center !important; gap: 0.5rem !important; padding: 0.5rem 1rem !important; border-radius: 9999px !important; font-size: 0.8rem !important; font-weight: 600 !important; letter-spacing: 0.05em !important; }
.ss-root .ss-badge-lime { background: rgba(191,255,0,0.1) !important; color: #BFFF00 !important; border: 1px solid rgba(191,255,0,0.2) !important; }
.ss-root .ss-badge-coral { background: rgba(255,107,107,0.1) !important; color: #FF6B6B !important; border: 1px solid rgba(255,107,107,0.2) !important; }

/* === BUTTONS === */
.ss-root .ss-btn { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 0.5rem !important; padding: 1rem 2rem !important; border-radius: 0.75rem !important; font-weight: 700 !important; font-size: 1rem !important; font-family: 'Outfit', sans-serif !important; background: #BFFF00 !important; color: #09090B !important; border: none !important; cursor: pointer !important; transition: all 0.3s ease !important; text-decoration: none !important; }
.ss-root .ss-btn:hover { background: #d4ff4d !important; transform: translateY(-2px) !important; box-shadow: 0 0 30px rgba(191,255,0,0.3) !important; }
.ss-root .ss-btn-sm { padding: 0.625rem 1.25rem !important; font-size: 0.875rem !important; border-radius: 0.5rem !important; }
.ss-root .ss-cta-pulse { animation: ssCTAPulse 2s ease-in-out infinite !important; }
@keyframes ssCTAPulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(191,255,0,0.4); } 50% { box-shadow: 0 0 0 12px rgba(191,255,0,0); } }

/* === ICONS === */
.ss-root .ss-icon { width: 2.5rem !important; height: 2.5rem !important; border-radius: 0.75rem !important; display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important; }
.ss-root .ss-icon-round { border-radius: 9999px !important; }
.ss-root .ss-bg-lime-dim { background: rgba(191,255,0,0.1) !important; }
.ss-root .ss-bg-cyan-dim { background: rgba(0,229,195,0.1) !important; }
.ss-root .ss-bg-coral-dim { background: rgba(255,107,107,0.1) !important; }
.ss-root .ss-bg-violet-dim { background: rgba(139,92,246,0.1) !important; }
.ss-root .ss-bg-gold-dim { background: rgba(255,215,0,0.1) !important; }

/* === AVATARS === */
.ss-root .ss-avatar { width: 2.5rem !important; height: 2.5rem !important; border-radius: 9999px !important; display: flex !important; align-items: center !important; justify-content: center !important; font-weight: 700 !important; font-size: 0.875rem !important; color: #fff !important; flex-shrink: 0 !important; }
.ss-root .ss-avatar-1 { background: linear-gradient(135deg, #BFFF00, #00E5C3) !important; color: #09090B !important; }
.ss-root .ss-avatar-2 { background: linear-gradient(135deg, #8B5CF6, #EC4899) !important; }
.ss-root .ss-avatar-3 { background: linear-gradient(135deg, #FF6B6B, #F59E0B) !important; }

/* === GRIDS === */
.ss-root .ss-grid-hero { display: grid !important; grid-template-columns: 1fr !important; gap: 3rem !important; align-items: center !important; }
@media (min-width: 1024px) { .ss-root .ss-grid-hero { grid-template-columns: 1fr 1fr !important; } }
.ss-root .ss-grid-3 { display: grid !important; grid-template-columns: 1fr !important; gap: 1.5rem !important; }
@media (min-width: 768px) { .ss-root .ss-grid-3 { grid-template-columns: repeat(3, 1fr) !important; } }
.ss-root .ss-grid-4 { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
@media (min-width: 768px) { .ss-root .ss-grid-4 { grid-template-columns: repeat(4, 1fr) !important; } }
.ss-root .ss-grid-results { display: grid !important; grid-template-columns: 1fr !important; gap: 3rem !important; align-items: center !important; }
@media (min-width: 1024px) { .ss-root .ss-grid-results { grid-template-columns: 1fr 1fr !important; } }
.ss-root .ss-grid-cta { display: grid !important; grid-template-columns: 1fr !important; gap: 3rem !important; align-items: start !important; }
@media (min-width: 1024px) { .ss-root .ss-grid-cta { grid-template-columns: 1fr 1fr !important; } }

/* === PROCESS 2x2 GRID === */
.ss-root .ss-process-wrapper { position: relative !important; }
.ss-root .ss-process-img { width: 100% !important; border-radius: 1rem !important; margin-bottom: 1.5rem !important; }
.ss-root .ss-process-grid { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 1rem !important; }
@media (min-width: 768px) {
  .ss-root .ss-process-wrapper { display: grid !important; grid-template-columns: 1fr !important; }
  .ss-root .ss-process-img { position: absolute !important; top: 50% !important; left: 50% !important; transform: translate(-50%, -60%) !important; width: 65% !important; z-index: 1 !important; margin-bottom: 0 !important; pointer-events: none !important; }
  .ss-root .ss-process-grid { position: relative !important; z-index: 2 !important; }
}

/* === STATS COUNTER === */
.ss-root .ss-stat-icon { width: 3rem !important; height: 3rem !important; border-radius: 0.75rem !important; display: flex !important; align-items: center !important; justify-content: center !important; margin: 0 auto 1rem !important; }
.ss-root .ss-counter { font-family: 'JetBrains Mono', 'Fira Code', monospace !important; font-size: 2.5rem !important; font-weight: 900 !important; color: #fff !important; margin-bottom: 0.25rem !important; }

/* === STICKY NAV === */
.ss-root .ss-sticky-nav { position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important; z-index: 9999 !important; background: rgba(9,9,11,0.85) !important; backdrop-filter: blur(16px) !important; -webkit-backdrop-filter: blur(16px) !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; transform: translateY(-100%) !important; transition: transform 0.3s ease !important; }
.ss-root .ss-sticky-nav.visible { transform: translateY(0) !important; }
.ss-root .ss-sticky-inner { max-width: 1280px !important; margin: 0 auto !important; padding: 0.75rem 2rem !important; display: flex !important; align-items: center !important; justify-content: space-between !important; }

/* === SCROLL INDICATOR === */
.ss-root .ss-scroll-indicator { position: absolute !important; bottom: 2rem !important; left: 50% !important; transform: translateX(-50%) !important; }
.ss-root .ss-scroll-pill { width: 1.5rem !important; height: 2.5rem !important; border-radius: 9999px !important; border: 2px solid rgba(255,255,255,0.15) !important; display: flex !important; justify-content: center !important; padding-top: 0.375rem !important; }
.ss-root .ss-scroll-dot { width: 0.25rem !important; height: 0.5rem !important; border-radius: 9999px !important; background: #BFFF00 !important; animation: ssScrollBounce 1.5s ease-in-out infinite !important; }
@keyframes ssScrollBounce { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(8px); opacity: 0.3; } }

/* === PULSE DOT === */
.ss-root .ss-pulse-dot { width: 0.5rem !important; height: 0.5rem !important; border-radius: 9999px !important; background: #BFFF00 !important; animation: ssPulseDot 2s ease-in-out infinite !important; flex-shrink: 0 !important; }
@keyframes ssPulseDot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* === FAQ === */
.ss-root .ss-faq-item { border: 1px solid rgba(255,255,255,0.06) !important; border-radius: 0.75rem !important; overflow: hidden !important; background: rgba(255,255,255,0.02) !important; }
.ss-root .ss-faq-btn { width: 100% !important; display: flex !important; align-items: center !important; justify-content: space-between !important; padding: 1.25rem 1.5rem !important; background: transparent !important; border: none !important; color: #fff !important; font-size: 1rem !important; font-weight: 600 !important; font-family: 'Outfit', sans-serif !important; cursor: pointer !important; text-align: left !important; transition: background 0.2s !important; }
.ss-root .ss-faq-btn:hover { background: rgba(255,255,255,0.03) !important; }
.ss-root .ss-faq-btn svg { transition: transform 0.3s ease !important; flex-shrink: 0 !important; color: #71717a !important; }
.ss-root .ss-faq-item.open .ss-faq-btn svg { transform: rotate(180deg) !important; }
.ss-root .ss-faq-body { max-height: 0 !important; overflow: hidden !important; transition: max-height 0.3s ease, padding 0.3s ease !important; }
.ss-root .ss-faq-item.open .ss-faq-body { max-height: 300px !important; padding: 0 1.5rem 1.25rem !important; }
.ss-root .ss-faq-body p { color: #a1a1aa !important; line-height: 1.7 !important; font-size: 0.95rem !important; }

/* === SCROLL ANIMATIONS === */
.ss-root .ss-animate { opacity: 1 !important; transform: none !important; }

/* === GUARANTEE RESPONSIVE === */
@media (min-width: 768px) {
  .ss-root .ss-glass[style*="flex-direction:column"][style*="text-align:center"] { flex-direction: row !important; text-align: left !important; }
}


/* ═══════════════════════════════════════════════════════════
   WPFORMS DARK THEME FIX (BULLETPROOF)
   ───────────────────────────────────────────────────────────
   Fixes name fields side-by-side, submit button, dark inputs,
   chip checkboxes, lime submit button.
   ═══════════════════════════════════════════════════════════ */

/* --- CRITICAL FIX: Name field row max-width override --- */
.ss-root .wpforms-field-name .wpforms-field-row,
.ss-root .wpforms-field-name .wpforms-field-row.wpforms-field-small,
.ss-root .wpforms-field-name .wpforms-field-row.wpforms-field-medium,
.ss-root .wpforms-field-name .wpforms-field-row.wpforms-field-large,
.ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row,
.ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row.wpforms-field-small,
body .ss-root .wpforms-field-row.wpforms-field-small {
  max-width: 100% !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 12px !important;
}

/* --- Name field blocks: equal width side-by-side --- */
.ss-root .wpforms-field-name .wpforms-field-row .wpforms-field-row-block,
.ss-root .wpforms-field-name .wpforms-field-row .wpforms-one-half,
.ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row .wpforms-field-row-block,
.ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row .wpforms-one-half {
  flex: 1 1 0% !important;
  width: auto !important;
  max-width: none !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* --- Form Container Reset --- */
.ss-root .wpforms-container,
.ss-root .wpforms-form,
.ss-root div[id*="wpforms-4723"],
.ss-root #wpforms-form-4723 {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: 'Outfit', sans-serif !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* --- WPForms form flex layout fix --- */
.ss-root #wpforms-form-4723,
.ss-root .wpforms-form {
  display: flex !important;
  flex-direction: column !important;
}

/* --- Field Spacing --- */
.ss-root #wpforms-4723 .wpforms-field,
.ss-root .wpforms-form .wpforms-field {
  margin-bottom: 16px !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* --- Field Labels --- */
.ss-root #wpforms-4723 .wpforms-field-label,
.ss-root .wpforms-form .wpforms-field-label {
  color: #e4e4e7 !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  margin-bottom: 6px !important;
  display: block !important;
}

.ss-root #wpforms-4723 .wpforms-field-sublabel,
.ss-root .wpforms-form .wpforms-field-sublabel {
  color: rgba(161,161,170,0.6) !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.75rem !important;
}

.ss-root #wpforms-4723 .wpforms-required-label {
  color: #FF6B6B !important;
}

/* --- All Text Inputs, Textareas, Selects: Dark Style --- */
.ss-root #wpforms-4723 input[type="text"],
.ss-root #wpforms-4723 input[type="email"],
.ss-root #wpforms-4723 input[type="tel"],
.ss-root #wpforms-4723 input[type="url"],
.ss-root #wpforms-4723 input[type="number"],
.ss-root #wpforms-4723 input[type="password"],
.ss-root #wpforms-4723 textarea,
.ss-root #wpforms-4723 select,
.ss-root .wpforms-form input[type="text"],
.ss-root .wpforms-form input[type="email"],
.ss-root .wpforms-form textarea,
.ss-root .wpforms-form select {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 0.625rem !important;
  color: #fff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.9rem !important;
  padding: 0.75rem 1rem !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.ss-root #wpforms-4723 input:focus,
.ss-root #wpforms-4723 textarea:focus,
.ss-root #wpforms-4723 select:focus {
  border-color: #BFFF00 !important;
  box-shadow: 0 0 0 3px rgba(191,255,0,0.15) !important;
  outline: none !important;
}

.ss-root #wpforms-4723 input::placeholder,
.ss-root #wpforms-4723 textarea::placeholder {
  color: rgba(161,161,170,0.4) !important;
}

/* --- Select Dropdown Dark --- */
.ss-root #wpforms-4723 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a1a1aa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.5rem !important;
}

.ss-root #wpforms-4723 select option {
  background: #1a1a2e !important;
  color: #fff !important;
}

/* --- Checkbox / Radio: Chip Style --- */
.ss-root #wpforms-4723 .wpforms-field-checkbox ul,
.ss-root #wpforms-4723 .wpforms-field-radio ul {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ss-root #wpforms-4723 .wpforms-field-checkbox ul li,
.ss-root #wpforms-4723 .wpforms-field-radio ul li {
  margin: 0 !important;
  padding: 0 !important;
}

.ss-root #wpforms-4723 .wpforms-field-checkbox ul li label,
.ss-root #wpforms-4723 .wpforms-field-radio ul li label {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 0.5rem 1rem !important;
  border-radius: 9999px !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(255,255,255,0.03) !important;
  color: #a1a1aa !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  margin: 0 !important;
}

.ss-root #wpforms-4723 .wpforms-field-checkbox ul li label:hover,
.ss-root #wpforms-4723 .wpforms-field-radio ul li label:hover {
  border-color: rgba(191,255,0,0.3) !important;
  color: #e4e4e7 !important;
  background: rgba(191,255,0,0.05) !important;
}

/* Hide the default checkbox/radio */
.ss-root #wpforms-4723 .wpforms-field-checkbox ul li input[type="checkbox"],
.ss-root #wpforms-4723 .wpforms-field-radio ul li input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}

/* Checked state */
.ss-root #wpforms-4723 .wpforms-field-checkbox ul li input:checked + span,
.ss-root #wpforms-4723 .wpforms-field-checkbox ul li input:checked ~ span,
.ss-root #wpforms-4723 .wpforms-field-radio ul li input:checked + span,
.ss-root #wpforms-4723 .wpforms-field-radio ul li input:checked ~ span {
  color: #BFFF00 !important;
}

.ss-root #wpforms-4723 .wpforms-field-checkbox ul li:has(input:checked) label,
.ss-root #wpforms-4723 .wpforms-field-radio ul li:has(input:checked) label {
  border-color: #BFFF00 !important;
  background: rgba(191,255,0,0.1) !important;
  color: #BFFF00 !important;
}

/* --- SUBMIT BUTTON: Full width, visible, lime --- */
.ss-root #wpforms-4723 .wpforms-submit-container,
.ss-root .wpforms-form .wpforms-submit-container {
  margin-top: 20px !important;
  padding: 0 !important;
  overflow: visible !important;
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
}

.ss-root #wpforms-4723 button[type="submit"],
.ss-root #wpforms-4723 .wpforms-submit,
.ss-root #wpforms-4723 .wpforms-page-button,
.ss-root .wpforms-form button[type="submit"],
.ss-root .wpforms-form .wpforms-submit {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  background: #BFFF00 !important;
  color: #09090B !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  padding: 1rem 2rem !important;
  border: none !important;
  border-radius: 0.75rem !important;
  cursor: pointer !important;
  letter-spacing: 0.01em !important;
  transition: all 0.3s ease !important;
  animation: ssFormPulse 2s ease-in-out infinite !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  height: auto !important;
  line-height: 1.4 !important;
}

.ss-root #wpforms-4723 button[type="submit"]:hover,
.ss-root #wpforms-4723 .wpforms-submit:hover,
.ss-root .wpforms-form button[type="submit"]:hover {
  background: #d4ff4d !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 0 30px rgba(191,255,0,0.3) !important;
}

@keyframes ssFormPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(191,255,0,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(191,255,0,0); }
}

/* --- Confirmation Message --- */
.ss-root #wpforms-4723 .wpforms-confirmation-container-full,
.ss-root .wpforms-confirmation-container-full {
  background: rgba(191,255,0,0.1) !important;
  border: 1px solid rgba(191,255,0,0.2) !important;
  border-radius: 0.75rem !important;
  color: #BFFF00 !important;
  padding: 1.5rem !important;
}

/* --- Error Messages --- */
.ss-root #wpforms-4723 .wpforms-error,
.ss-root #wpforms-4723 label.wpforms-error {
  color: #FF6B6B !important;
  font-size: 0.8rem !important;
  font-family: 'Outfit', sans-serif !important;
}

/* --- Form Card Glass Background --- */
.ss-root .ss-form-card {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 1.25rem !important;
  padding: 2rem !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

@media (min-width: 768px) {
  .ss-root .ss-form-card {
    padding: 2.5rem !important;
  }
}

/* --- Bottom text under submit --- */
.ss-root .ss-form-footer-text {
  text-align: center !important;
  color: rgba(161,161,170,0.5) !important;
  font-size: 0.8rem !important;
  margin-top: 12px !important;
  font-style: italic !important;
}

/* --- WPForms field-container full width --- */
.ss-root .wpforms-field-container {
  width: 100% !important;
  max-width: 100% !important;
}

/* --- Fieldset reset --- */
.ss-root #wpforms-4723 fieldset,
.ss-root .wpforms-form fieldset {
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
  width: 100% !important;
}

/* --- Mobile: Stack name fields on very small screens --- */
@media (max-width: 480px) {
  .ss-root .wpforms-field-name .wpforms-field-row,
  .ss-root .wpforms-field-name .wpforms-field-row.wpforms-field-small,
  .ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row {
    flex-direction: column !important;
    gap: 8px !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   SOHOSTACK — MARGIN & SPACING FIX
   ───────────────────────────────────────────────────────────
   ADD this to the VERY END of your Additional CSS
   (after the existing SohoStack block).
   DO NOT delete anything — just paste this at the bottom.
   ═══════════════════════════════════════════════════════════ */

/* --- Increase side padding on all containers --- */
.ss-root .ss-container {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
@media (min-width: 640px) {
  .ss-root .ss-container {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
}
@media (min-width: 1024px) {
  .ss-root .ss-container {
    padding-left: 4rem !important;
    padding-right: 4rem !important;
  }
}
@media (min-width: 1400px) {
  .ss-root .ss-container {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

/* --- Hero section: ensure inner content has breathing room --- */
.ss-root #heroSection .ss-container {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
@media (min-width: 1024px) {
  .ss-root #heroSection .ss-container {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

/* --- Bottom CTA section: match hero margins --- */
.ss-root #contact-bottom .ss-container {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
@media (min-width: 1024px) {
  .ss-root #contact-bottom .ss-container {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }
}

/* --- Sticky nav inner: match wider margins --- */
.ss-root .ss-sticky-inner {
  padding: 0.75rem 3rem !important;
}
@media (min-width: 1024px) {
  .ss-root .ss-sticky-inner {
    padding: 0.75rem 5rem !important;
  }
}
/* ===================================================
   WPFORMS #704 - MATCH SCREENSHOT DESIGN
   Compact, modern form with horizontal name fields
   =================================================== */
/* ===================================================
   WPFORMS #704 - MODERN DARK THEME FIX
   Matches SohoStack Brand Style
   =================================================== */
/* === FORM CONTAINER - LIGHT THEME === */
div.wpforms-container-full#wpforms-704 {
    max-width: 520px !important;
    width: 100% !important;
    margin: 0 auto !important;
    background: #fafafa !important;
    padding: 32px !important;
    border-radius: 24px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15) !important;
    position: relative !important;
    z-index: 10 !important;
}

/* Reset text to dark for light bg */
div.wpforms-container-full#wpforms-704,
div.wpforms-container-full#wpforms-704 * {
    color: #1a1a2e !important;
    text-shadow: none !important;
}

/* === LABELS === */
#wpforms-704 .wpforms-field-label {
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    font-size: 0.9rem !important;
    color: #1a1a2e !important;
}
#wpforms-704 .wpforms-required-label { color: #FF6B6B !important; }
#wpforms-704 .wpforms-field-sublabel { color: #71717a !important; font-size: 0.75rem !important; }

/* === INPUTS - LIGHT === */
#wpforms-704 input[type="text"],
#wpforms-704 input[type="email"],
#wpforms-704 input[type="tel"],
#wpforms-704 textarea,
#wpforms-704 select {
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid #d4d4d8 !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    color: #1a1a2e !important;
    padding: 12px 16px !important;
    transition: all 0.2s ease !important;
}

#wpforms-704 input:focus,
#wpforms-704 textarea:focus,
#wpforms-704 select:focus {
    border-color: #6b21ff !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(107, 33, 255, 0.1) !important;
    outline: none !important;
}

/* === NAME FIELD - HORIZONTAL === */
#wpforms-704 .wpforms-field-name .wpforms-field-row {
    display: flex !important;
    gap: 12px !important;
    width: 100% !important;
}
#wpforms-704 .wpforms-field-name .wpforms-one-half {
    flex: 1 !important;
    width: 50% !important;
    float: none !important;
    margin: 0 !important;
}

/* === PILL / CHIP BUTTONS - LIGHT === */
#wpforms-704 .wpforms-field-checkbox ul,
#wpforms-704 .wpforms-field-radio ul {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 0 !important;
}
#wpforms-704 .wpforms-field-checkbox label,
#wpforms-704 .wpforms-field-radio label {
    display: inline-flex !important;
    padding: 8px 16px !important;
    border-radius: 100px !important;
    border: 1px solid #d4d4d8 !important;
    background: #ffffff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #3f3f46 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}
#wpforms-704 .wpforms-field-checkbox input:checked + label,
#wpforms-704 .wpforms-field-radio input:checked + label {
    background: #6b21ff !important;
    border-color: #6b21ff !important;
    color: #fff !important;
}
#wpforms-704 .wpforms-field-checkbox input,
#wpforms-704 .wpforms-field-radio input {
    display: none !important;
}

/* === SELECT FIX === */
#wpforms-704 select {
    height: auto !important;
    min-height: 48px !important;
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
    line-height: 1.4 !important;
}

/* === SUBMIT BUTTON === */
#wpforms-704 .wpforms-submit-container { margin-top: 10px !important; text-align: center !important; }
#wpforms-704 button[type="submit"] {
    width: 100% !important;
    padding: 16px !important;
    border-radius: 14px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    background: linear-gradient(135deg, #6b21ff 0%, #4a1ecf 100%) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 10px 20px -5px rgba(107, 33, 255, 0.4) !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
#wpforms-704 button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 30px -5px rgba(107, 33, 255, 0.6) !important;
}

/* === MOBILE === */
@media (max-width: 600px) {
    div.wpforms-container-full#wpforms-704 { padding: 20px !important; }
    #wpforms-704 .wpforms-field-name .wpforms-field-row { flex-direction: column !important; }
    #wpforms-704 .wpforms-field-name .wpforms-one-half { width: 100% !important; }
}
/* --- FORCE: Kill purple on support section --- */
.elementor-element .elementor-widget-html,
.elementor-element .elementor-widget-html .elementor-widget-container,
.elementor-section,
.elementor-column,
.elementor-widget-wrap,
.e-con,
.e-con-inner {
    background-color: transparent !important;
}
/* === NUCLEAR FIX: Select dropdown text clipped === */
.ss-root #wpforms-4723 select,
.ss-root .wpforms-form select,
div.wpforms-container-full select,
#wpforms-4723 select {
  height: 48px !important;
  min-height: 48px !important;
  line-height: 48px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 1rem !important;
  padding-right: 2.5rem !important;
  font-size: 0.9rem !important;
  display: block !important;
  overflow: visible !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
/* === FIX: Form 704 submit button cut off === */
div.wpforms-container-full#wpforms-704 {
  overflow: visible !important;
  padding-bottom: 40px !important;
}

#wpforms-704 .wpforms-submit-container {
  margin-top: 16px !important;
  padding-bottom: 8px !important;
  overflow: visible !important;
}

#wpforms-704 button[type="submit"] {
  display: block !important;
  height: auto !important;
  min-height: 52px !important;
  overflow: visible !important;
}

/* Kill overflow:hidden on any Elementor wrapper around form 704 */
.elementor-widget-container:has(#wpforms-704),
.elementor-widget-wrap:has(#wpforms-704),
.e-con:has(#wpforms-704),
.e-con-inner:has(#wpforms-704),
.elementor-section:has(#wpforms-704),
.elementor-column:has(#wpforms-704) {
  overflow: visible !important;
  height: auto !important;
  min-height: auto !important;
}
/* ===================================================
   JETPACK CLEANUP - REMOVE SHARE/LIKE BLOCKS
   =================================================== */
/* Targets the Jetpack 'Share this' and 'Like this' containers specifically */
div.sharedaddy, 
#jp-relatedposts, 
#jp-post-flair,
.jetpack-likes-widget-wrapper {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
}

/* Removes the horizontal rule lines Jetpack often leaves behind */
hr.jp-relatedposts-i2 {
    display: none !important;
}
/* This tells the browser: "I don't care what .ss-root says, for the Hero, use THIS size" */
.ss-root .hero-section h1 {
    font-size: 5rem !important; /* <--- Put the EXACT size you want here */
    font-weight: 800 !important;
}
/* ================================
   WPForms 4723 - Name Row + Mobile Clipping Fix
   Paste at VERY END of your CSS
   ================================ */

/* 1) Force clean flex row, remove WPForms float behavior */
.ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row{
  display: flex !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: 100% !important;
  align-items: stretch !important;
}

/* Desktop: true 50/50 columns */
@media (min-width: 769px){
  .ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row{
    flex-wrap: nowrap !important;
  }

  .ss-root #wpforms-4723 .wpforms-field-name .wpforms-one-half,
  .ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row-block{
    flex: 0 0 calc(50% - 6px) !important;
    width: calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
  }
}

/* Mobile/tablet: stack before it starts clipping */
@media (max-width: 768px){
  .ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row{
    flex-direction: column !important;
    flex-wrap: wrap !important;
  }

  .ss-root #wpforms-4723 .wpforms-field-name .wpforms-one-half,
  .ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row-block{
    flex: 1 1 100% !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* 2) Critical: allow flex children + inputs to shrink (prevents right-field “shorter” / clipping) */
.ss-root #wpforms-4723 .wpforms-field-name .wpforms-one-half,
.ss-root #wpforms-4723 .wpforms-field-name .wpforms-field-row-block{
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.ss-root #wpforms-4723 input[type="text"],
.ss-root #wpforms-4723 input[type="email"],
.ss-root #wpforms-4723 input[type="tel"],
.ss-root #wpforms-4723 select,
.ss-root #wpforms-4723 textarea{
  min-width: 0 !important;
}

/* 3) If a section/column is clipping the form on mobile, force overflow visible around it */
.ss-root #wpforms-4723,
.ss-root #wpforms-form-4723,
.ss-root .wpforms-container,
.ss-root .wpforms-form,
.ss-root .ss-glass{
  overflow: visible !important;
}

/* Elementor wrappers (same idea as your #704 fix, but for 4723) */
.elementor-widget-container:has(#wpforms-4723),
.elementor-widget-wrap:has(#wpforms-4723),
.e-con:has(#wpforms-4723),
.e-con-inner:has(#wpforms-4723),
.elementor-section:has(#wpforms-4723),
.elementor-column:has(#wpforms-4723){
  overflow: visible !important;
  height: auto !important;
  min-height: 0 !important;
}

#wpforms-4723 .wpforms-field-name .wpforms-field-row::before {
    display: none !important;
}
