/* =====================================================================
   Seller Landing Page — seller-landing.css
   Mobile-first. Scoped under body.seller-landing to prevent conflicts.
   ===================================================================== */

/* --- Reset scoped to this template --- */
body.seller-landing *,
body.seller-landing *::before,
body.seller-landing *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* --- Base --- */
body.seller-landing {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: #1a1a2e;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	background: #ffffff;
}

body.seller-landing img  { max-width: 100%; height: auto; display: block; }
body.seller-landing a    { text-decoration: none; }
body.seller-landing ul   { list-style: none; }
body.seller-landing h1,
body.seller-landing h2,
body.seller-landing h3   { line-height: 1.2; font-weight: 800; }

/* --- Design tokens --- */
:root {
	--sll-navy:      #0a1f44;
	--sll-navy-dark: #071530;
	--sll-gold:      #f5a623;
	--sll-gold-dark: #e09415;
	--sll-white:     #ffffff;
	--sll-light:     #f4f6f9;
	--sll-border:    #dde1e8;
	--sll-muted:     #6b7280;
	--sll-shadow:    0 6px 32px rgba(0, 0, 0, 0.12);
	--sll-radius:    10px;
}

/* --- Layout container --- */
.sll-container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --- Shared section headings --- */
.sll-section-title {
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	color: var(--sll-navy);
	text-align: center;
	margin-bottom: 0.5rem;
}
.sll-section-sub {
	text-align: center;
	color: var(--sll-muted);
	font-size: 1rem;
	margin-bottom: 48px;
}

/* =====================================================================
   HERO
   ===================================================================== */
.sll-hero {
	background: linear-gradient(145deg, #0a1f44 0%, #0e2d66 100%);
	color: var(--sll-white);
	padding: 60px 0 0;
}

.sll-hero__inner {
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding-bottom: 60px;
}

/* Eyebrow label */
.sll-eyebrow {
	display: inline-block;
	background: rgba(245, 166, 35, 0.15);
	color: var(--sll-gold);
	border: 1px solid rgba(245, 166, 35, 0.35);
	border-radius: 100px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 6px 16px;
	margin-bottom: 20px;
}

.sll-hero__headline {
	font-size: clamp(2rem, 5.5vw, 3.4rem);
	color: var(--sll-white);
	margin-bottom: 1rem;
}
.sll-hero__headline span { color: var(--sll-gold); }

.sll-hero__sub {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	color: rgba(255, 255, 255, 0.82);
	margin-bottom: 1.5rem;
}

.sll-hero__bullets {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.sll-hero__bullets li {
	color: rgba(255, 255, 255, 0.78);
	font-size: 0.95rem;
	padding-left: 22px;
	position: relative;
}
.sll-hero__bullets li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--sll-gold);
	font-weight: 700;
}

/* --- Trust badge bar --- */
.sll-trust-bar {
	background: var(--sll-gold);
	padding: 14px 20px;
}
.sll-trust-bar__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 28px;
	font-weight: 700;
	color: var(--sll-navy);
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.sll-trust-bar__items span::before { content: '✓  '; }

/* =====================================================================
   LEAD CAPTURE FORM CARD
   ===================================================================== */
.sll-form-card {
	background: var(--sll-white);
	border-radius: var(--sll-radius);
	padding: 32px 24px;
	box-shadow: var(--sll-shadow);
	width: 100%;
}

.sll-form-card__title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--sll-navy);
	text-align: center;
	margin-bottom: 20px;
}

.sll-form-group {
	margin-bottom: 14px;
}
.sll-form-group label {
	display: block;
	font-size: 0.78rem;
	font-weight: 700;
	color: #4a5568;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 6px;
}
.sll-form-group label .sll-req { color: #e53e3e; margin-left: 2px; }
.sll-form-group label .sll-optional {
	font-weight: 400;
	font-style: normal;
	color: var(--sll-muted);
	text-transform: none;
	letter-spacing: 0;
}

.sll-form-group input {
	width: 100%;
	padding: 15px 16px;
	border: 2px solid var(--sll-border);
	border-radius: 8px;
	font-size: 1rem;
	font-family: inherit;
	color: #1a1a2e;
	background: #fff;
	transition: border-color 0.2s, box-shadow 0.2s;
	-webkit-appearance: none;
}
.sll-form-group input:focus {
	outline: none;
	border-color: var(--sll-navy);
	box-shadow: 0 0 0 3px rgba(10, 31, 68, 0.12);
}
.sll-form-group input::placeholder { color: #b0bac8; }

/* Honeypot field — visually hidden, never type="hidden" */
.sll-honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
	opacity: 0;
	pointer-events: none;
}

/* --- Submit button --- */
.sll-submit-btn {
	width: 100%;
	padding: 18px 24px;
	background: var(--sll-gold);
	color: var(--sll-navy);
	border: none;
	border-radius: 8px;
	font-size: 1.1rem;
	font-weight: 800;
	font-family: inherit;
	letter-spacing: 0.03em;
	cursor: pointer;
	text-transform: uppercase;
	transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
	margin-top: 8px;
	box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4);
}
.sll-submit-btn:hover  { background: var(--sll-gold-dark); box-shadow: 0 6px 20px rgba(245, 166, 35, 0.5); }
.sll-submit-btn:active { transform: scale(0.98); }
.sll-submit-btn:disabled { opacity: 0.55; cursor: not-allowed; box-shadow: none; }

/* --- Form feedback messages --- */
.sll-form-messages {
	margin-top: 12px;
	font-size: 0.92rem;
	font-weight: 500;
	border-radius: 8px;
	min-height: 0;
}
.sll-form-messages.error {
	color: #c0392b;
	background: #fdecea;
	border: 1px solid #f8c8c6;
	padding: 10px 14px;
}
.sll-success-msg {
	background: #e8f7f0;
	border: 1px solid #a7dfbe;
	border-radius: 8px;
	padding: 24px 20px;
	text-align: center;
}
.sll-success-msg h3 {
	color: #1a6b44;
	font-size: 1.15rem;
	margin-bottom: 8px;
}
.sll-success-msg p { color: #2d6a4f; font-size: 0.92rem; }

/* =====================================================================
   HOW IT WORKS
   ===================================================================== */
.sll-how {
	padding: 80px 0;
	background: var(--sll-white);
}

.sll-steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

.sll-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 36px 24px;
	border-radius: var(--sll-radius);
	background: var(--sll-light);
	border-top: 4px solid var(--sll-navy);
	transition: box-shadow 0.2s;
}
.sll-step:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.sll-step__num {
	width: 52px;
	height: 52px;
	background: var(--sll-navy);
	color: var(--sll-gold);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	font-weight: 800;
	margin-bottom: 12px;
	flex-shrink: 0;
}
.sll-step__icon {
	font-size: 2rem;
	margin-bottom: 12px;
}
.sll-step h3 {
	font-size: 1.05rem;
	color: var(--sll-navy);
	margin-bottom: 8px;
}
.sll-step p {
	color: var(--sll-muted);
	font-size: 0.92rem;
	line-height: 1.65;
}

/* =====================================================================
   TRUST SIGNALS
   ===================================================================== */
.sll-trust {
	background: var(--sll-navy);
	padding: 80px 0;
	color: var(--sll-white);
}

.sll-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 40px;
}
.sll-stat {
	text-align: center;
	padding: 24px 16px;
	border-radius: var(--sll-radius);
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.12);
}
.sll-stat__num {
	display: block;
	font-size: clamp(1.6rem, 4vw, 2.4rem);
	font-weight: 800;
	color: var(--sll-gold);
	line-height: 1;
	margin-bottom: 6px;
}
.sll-stat__label {
	display: block;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.65);
}
.sll-trust__body {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.75;
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.sll-testimonials {
	padding: 80px 0;
	background: var(--sll-light);
}
.sll-testimonials__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	margin-top: 40px;
}
.sll-testimonial {
	background: var(--sll-white);
	border-radius: var(--sll-radius);
	padding: 28px 24px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	border-left: 4px solid var(--sll-gold);
}
.sll-testimonial__stars {
	color: var(--sll-gold);
	font-size: 1rem;
	letter-spacing: 3px;
	margin-bottom: 12px;
}
.sll-testimonial p {
	font-style: italic;
	color: #4a5568;
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: 16px;
}
.sll-testimonial strong {
	color: var(--sll-navy);
	font-size: 0.88rem;
}

/* =====================================================================
   FAQ ACCORDION
   ===================================================================== */
.sll-faq {
	padding: 80px 0;
	background: var(--sll-white);
}
.sll-faq__list {
	max-width: 820px;
	margin: 40px auto 0;
}
.sll-faq__item {
	border-bottom: 1px solid var(--sll-border);
}
.sll-faq__question {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	font-size: 0.98rem;
	font-weight: 600;
	color: var(--sll-navy);
	transition: color 0.2s;
}
.sll-faq__question:hover { color: var(--sll-gold-dark); }

.sll-faq__icon {
	width: 26px;
	height: 26px;
	flex-shrink: 0;
	background: var(--sll-navy);
	color: var(--sll-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1;
	transition: background 0.2s, transform 0.3s;
}
.sll-faq__item.active .sll-faq__icon {
	background: var(--sll-gold);
	color: var(--sll-navy);
	transform: rotate(45deg);
}

.sll-faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease, padding-bottom 0.35s ease;
	font-size: 0.95rem;
	color: var(--sll-muted);
	line-height: 1.72;
	padding-bottom: 0;
}
.sll-faq__item.active .sll-faq__answer {
	max-height: 400px;
	padding-bottom: 20px;
}

/* =====================================================================
   FOOTER CTA
   ===================================================================== */
.sll-footer-cta {
	background: linear-gradient(145deg, #0a1f44 0%, #0e2d66 100%);
	padding: 80px 0;
	color: var(--sll-white);
}
.sll-footer-cta__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}
.sll-footer-cta__text {
	text-align: center;
	max-width: 560px;
}
.sll-footer-cta__text h2 {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	color: var(--sll-white);
	margin-bottom: 0.75rem;
}
.sll-footer-cta__text p {
	color: rgba(255, 255, 255, 0.78);
	font-size: 1.05rem;
}

/* =====================================================================
   PAGE FOOTER
   ===================================================================== */
.sll-page-footer {
	background: var(--sll-navy-dark, #071530);
	color: rgba(255, 255, 255, 0.45);
	text-align: center;
	padding: 24px 20px;
	font-size: 0.82rem;
	line-height: 1.6;
}
.sll-page-footer a {
	color: rgba(255, 255, 255, 0.65);
	text-decoration: underline;
}
.sll-page-footer a:hover { color: var(--sll-gold); }

/* =====================================================================
   RESPONSIVE — tablet+
   ===================================================================== */
@media (min-width: 600px) {
	.sll-steps {
		grid-template-columns: repeat(3, 1fr);
	}
	.sll-testimonials__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (min-width: 768px) {
	.sll-hero__inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: 60px;
	}
	.sll-hero__text {
		max-width: 540px;
		flex: 1;
	}
	.sll-form-card {
		min-width: 400px;
		max-width: 440px;
		flex-shrink: 0;
	}
	.sll-footer-cta__inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
		gap: 60px;
	}
	.sll-footer-cta__text {
		text-align: left;
		flex: 1;
	}
	.sll-footer-cta .sll-form-card {
		min-width: 400px;
		flex-shrink: 0;
	}
}

/* --- Desktop centering & breathing room --- */
@media (min-width: 1024px) {
	.sll-container {
		padding: 0 48px;
	}
	.sll-hero {
		padding-top: 80px;
	}
	.sll-hero__inner {
		align-items: center;
		gap: 80px;
	}
	.sll-hero__headline {
		font-size: 3.2rem;
	}
	.sll-form-card {
		min-width: 420px;
		max-width: 460px;
	}
	.sll-steps {
		gap: 32px;
	}
}

@media (min-width: 1280px) {
	.sll-container {
		padding: 0 24px;
	}
}

/* --- Force layout — override Astra conflicts --- */
body.seller-landing .sll-container {
	max-width: 1100px !important;
	margin-left: auto !important;
	margin-right: auto !important;
	width: 100% !important;
	padding-left: 40px !important;
	padding-right: 40px !important;
}

/* Fix section stacking — prevent overlap */
body.seller-landing .sll-hero,
body.seller-landing .sll-how,
body.seller-landing .sll-trust,
body.seller-landing .sll-testimonials,
body.seller-landing .sll-faq,
body.seller-landing .sll-footer-cta,
body.seller-landing .sll-page-footer {
	position: relative !important;
	z-index: 1 !important;
	overflow: hidden !important;
}

/* Fix testimonial cards being cut off */
body.seller-landing .sll-testimonials__grid {
	overflow: visible !important;
}
body.seller-landing .sll-testimonial {
	min-width: 0 !important;
	word-wrap: break-word !important;
	overflow: hidden !important;
}

@media (min-width: 768px) {
	body.seller-landing .sll-hero__inner {
		display: flex !important;
		flex-direction: row !important;
		align-items: center !important;
		gap: 60px !important;
	}
	body.seller-landing .sll-hero__text {
		flex: 1 !important;
	}
	body.seller-landing .sll-form-card {
		min-width: 420px !important;
		max-width: 460px !important;
		flex-shrink: 0 !important;
	}

	/* Ensure stats don't overflow trust section */
	body.seller-landing .sll-stats {
		display: grid !important;
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 16px !important;
	}
	body.seller-landing .sll-stat {
		min-width: 0 !important;
	}
}
