/**
 * Stack CTA Banner — Elementor Widget Styles
 * Prefix: stkcta-
 * 40 distinct layout designs
 */

/* ═══════════════════════════════════════════
   BASE RESETS
═══════════════════════════════════════════ */

.stkcta-wrap {
	position: relative;
	box-sizing: border-box;
	overflow: hidden;
}

.stkcta-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.stkcta-inner {
	position: relative;
	z-index: 1;
}

.stkcta-eyebrow {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin: 0 0 10px;
	opacity: 0.85;
}

.stkcta-headline {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1.2;
	margin: 0 0 12px;
}

.stkcta-desc {
	font-size: 1rem;
	line-height: 1.6;
	margin: 0 0 24px;
	opacity: 0.85;
}

.stkcta-btns {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.stkcta-btn1,
.stkcta-btn2 {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	font-size: 0.95rem;
	font-weight: 700;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
	cursor: pointer;
	border: 2px solid transparent;
	line-height: 1;
}

.stkcta-note {
	font-size: 0.75rem;
	opacity: 0.6;
	margin: 12px 0 0;
}

.stkcta-badge {
	display: inline-block;
	font-size: 0.7rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 4px 14px;
	border-radius: 20px;
	background: #f59e0b;
	color: #fff;
	margin-bottom: 12px;
}

.stkcta-icon {
	margin-bottom: 16px;
	font-size: 48px;
	line-height: 1;
}

/* ═══════════════════════════════════════════
   01 — Classic Centered
═══════════════════════════════════════════ */

.stkcta-classic {
	background: #4f46e5;
	padding: 60px 48px;
	text-align: center;
}
.stkcta-classic .stkcta-inner {
	max-width: 680px;
	margin: 0 auto;
}
.stkcta-classic .stkcta-headline { color: #fff; }
.stkcta-classic .stkcta-eyebrow  { color: rgba(255,255,255,0.75); }
.stkcta-classic .stkcta-desc     { color: rgba(255,255,255,0.85); }
.stkcta-classic .stkcta-note     { color: rgba(255,255,255,0.55); }
.stkcta-classic .stkcta-btns     { justify-content: center; }
.stkcta-classic .stkcta-btn1 {
	background: #fff;
	color: #4f46e5;
	border-color: #fff;
}
.stkcta-classic .stkcta-btn1:hover {
	background: transparent;
	color: #fff;
}
.stkcta-classic .stkcta-btn2 {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.55);
}
.stkcta-classic .stkcta-btn2:hover {
	border-color: #fff;
	background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════
   02 — Horizontal Split
═══════════════════════════════════════════ */

.stkcta-split {
	background: #fff;
	border: 1px solid #e8e8e8;
	padding: 40px 48px;
	display: flex;
	align-items: center;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stkcta-split .stkcta-inner {
	display: flex;
	align-items: center;
	gap: 40px;
	width: 100%;
	flex-wrap: wrap;
}
.stkcta-split .stkcta-text-block {
	flex: 1 1 300px;
}
.stkcta-split .stkcta-headline { color: #111; font-size: 1.6rem; margin-bottom: 8px; }
.stkcta-split .stkcta-desc     { color: #555; margin-bottom: 0; }
.stkcta-split .stkcta-btns     { flex-shrink: 0; flex-direction: column; align-items: flex-start; }
.stkcta-split .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
	white-space: nowrap;
}
.stkcta-split .stkcta-btn1:hover { background: #3730a3; transform: translateY(-2px); }
.stkcta-split .stkcta-btn2 {
	background: transparent;
	color: #4f46e5;
	border-color: #4f46e5;
}
.stkcta-split .stkcta-btn2:hover { background: #4f46e5; color: #fff; }

/* Use an inner text-block wrapper for split layout */
.stkcta-split .stkcta-eyebrow,
.stkcta-split .stkcta-headline,
.stkcta-split .stkcta-desc,
.stkcta-split .stkcta-note {
	text-align: left;
}

/* ═══════════════════════════════════════════
   03 — Hero Full (bg image + overlay)
═══════════════════════════════════════════ */

.stkcta-hero {
	min-height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 80px 48px;
	background: #111;
}
.stkcta-hero .stkcta-overlay {
	background: rgba(0,0,0,0.55);
}
.stkcta-hero .stkcta-inner   { max-width: 700px; }
.stkcta-hero .stkcta-eyebrow { color: rgba(255,255,255,0.7); }
.stkcta-hero .stkcta-headline { color: #fff; font-size: 2.5rem; }
.stkcta-hero .stkcta-desc    { color: rgba(255,255,255,0.8); }
.stkcta-hero .stkcta-note    { color: rgba(255,255,255,0.5); }
.stkcta-hero .stkcta-btns    { justify-content: center; }
.stkcta-hero .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
	padding: 14px 36px;
	font-size: 1rem;
}
.stkcta-hero .stkcta-btn1:hover { background: #3730a3; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(79,70,229,0.5); }
.stkcta-hero .stkcta-btn2 {
	background: rgba(255,255,255,0.15);
	color: #fff;
	border-color: rgba(255,255,255,0.5);
	backdrop-filter: blur(4px);
}
.stkcta-hero .stkcta-btn2:hover { background: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════
   04 — Minimal Underline
═══════════════════════════════════════════ */

.stkcta-minimal {
	background: #fff;
	border-bottom: 3px solid #4f46e5;
	padding: 40px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}
.stkcta-minimal .stkcta-inner {
	display: flex;
	align-items: center;
	gap: 40px;
	width: 100%;
	flex-wrap: wrap;
}
.stkcta-minimal .stkcta-eyebrow { color: #4f46e5; font-size: 0.7rem; }
.stkcta-minimal .stkcta-headline { color: #111; font-size: 1.5rem; margin-bottom: 6px; }
.stkcta-minimal .stkcta-desc    { color: #777; font-size: 0.9rem; margin-bottom: 0; }
.stkcta-minimal .stkcta-btns    { flex-shrink: 0; }
.stkcta-minimal .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
}
.stkcta-minimal .stkcta-btn1:hover { background: #3730a3; }
.stkcta-minimal .stkcta-btn2 {
	background: transparent;
	color: #4f46e5;
	padding: 12px 0;
	border: none;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.stkcta-minimal .stkcta-btn2:hover { color: #3730a3; }

/* ═══════════════════════════════════════════
   05 — Dark Strip
═══════════════════════════════════════════ */

.stkcta-dark-strip {
	background: #111;
	padding: 28px 48px;
}
.stkcta-dark-strip .stkcta-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
	justify-content: space-between;
}
.stkcta-dark-strip .stkcta-eyebrow { color: #4f46e5; }
.stkcta-dark-strip .stkcta-headline { color: #fff; font-size: 1.4rem; margin: 0; }
.stkcta-dark-strip .stkcta-desc    { color: #aaa; font-size: 0.9rem; margin: 4px 0 0; }
.stkcta-dark-strip .stkcta-btns    { flex-shrink: 0; }
.stkcta-dark-strip .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
}
.stkcta-dark-strip .stkcta-btn1:hover { background: #6c63ff; }
.stkcta-dark-strip .stkcta-btn2 {
	background: transparent;
	color: #aaa;
	border-color: rgba(255,255,255,0.2);
}
.stkcta-dark-strip .stkcta-btn2:hover { color: #fff; border-color: #fff; }
.stkcta-dark-strip .stkcta-note { color: #666; }

/* ═══════════════════════════════════════════
   06 — Gradient Wash
═══════════════════════════════════════════ */

.stkcta-gradient-wash {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 64px 48px;
	text-align: center;
}
.stkcta-gradient-wash .stkcta-inner { max-width: 680px; margin: 0 auto; }
.stkcta-gradient-wash .stkcta-eyebrow  { color: rgba(255,255,255,0.75); }
.stkcta-gradient-wash .stkcta-headline { color: #fff; font-size: 2.2rem; }
.stkcta-gradient-wash .stkcta-desc     { color: rgba(255,255,255,0.85); }
.stkcta-gradient-wash .stkcta-note     { color: rgba(255,255,255,0.5); }
.stkcta-gradient-wash .stkcta-btns     { justify-content: center; }
.stkcta-gradient-wash .stkcta-btn1 {
	background: #fff;
	color: #764ba2;
	box-shadow: 0 4px 18px rgba(0,0,0,0.2);
}
.stkcta-gradient-wash .stkcta-btn1:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.stkcta-gradient-wash .stkcta-btn2 {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.6);
}
.stkcta-gradient-wash .stkcta-btn2:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ═══════════════════════════════════════════
   07 — Glassmorphism
═══════════════════════════════════════════ */

.stkcta-glass {
	padding: 64px 48px;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	text-align: center;
}
.stkcta-glass .stkcta-inner {
	max-width: 660px;
	margin: 0 auto;
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255,255,255,0.25);
	border-radius: 20px;
	padding: 52px 48px;
}
.stkcta-glass .stkcta-eyebrow  { color: rgba(255,255,255,0.65); }
.stkcta-glass .stkcta-headline { color: #fff; }
.stkcta-glass .stkcta-desc     { color: rgba(255,255,255,0.75); }
.stkcta-glass .stkcta-note     { color: rgba(255,255,255,0.45); }
.stkcta-glass .stkcta-btns     { justify-content: center; }
.stkcta-glass .stkcta-btn1 {
	background: rgba(255,255,255,0.9);
	color: #1a1a2e;
}
.stkcta-glass .stkcta-btn1:hover { background: #fff; }
.stkcta-glass .stkcta-btn2 {
	background: transparent;
	color: rgba(255,255,255,0.85);
	border-color: rgba(255,255,255,0.4);
}
.stkcta-glass .stkcta-btn2:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════
   08 — Neon Dark
═══════════════════════════════════════════ */

.stkcta-neon {
	background: #080812;
	padding: 64px 48px;
	text-align: center;
	border: 1px solid rgba(108,99,255,0.3);
}
.stkcta-neon .stkcta-inner { max-width: 680px; margin: 0 auto; }
.stkcta-neon .stkcta-eyebrow  { color: #6c63ff; text-shadow: 0 0 10px rgba(108,99,255,0.8); }
.stkcta-neon .stkcta-headline {
	color: #fff;
	text-shadow: 0 0 30px rgba(108,99,255,0.6), 0 0 60px rgba(108,99,255,0.3);
	font-size: 2.2rem;
}
.stkcta-neon .stkcta-desc  { color: rgba(255,255,255,0.65); }
.stkcta-neon .stkcta-note  { color: rgba(255,255,255,0.35); }
.stkcta-neon .stkcta-btns  { justify-content: center; }
.stkcta-neon .stkcta-btn1 {
	background: transparent;
	color: #6c63ff;
	border: 2px solid #6c63ff;
	box-shadow: 0 0 16px rgba(108,99,255,0.4), inset 0 0 16px rgba(108,99,255,0.1);
	border-radius: 4px;
}
.stkcta-neon .stkcta-btn1:hover {
	background: rgba(108,99,255,0.15);
	box-shadow: 0 0 28px rgba(108,99,255,0.7), inset 0 0 24px rgba(108,99,255,0.2);
}
.stkcta-neon .stkcta-btn2 {
	background: transparent;
	color: rgba(255,255,255,0.6);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 4px;
}
.stkcta-neon .stkcta-btn2:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.stkcta-neon .stkcta-icon i, .stkcta-neon .stkcta-icon svg { color: #6c63ff; filter: drop-shadow(0 0 6px #6c63ff); }

/* ═══════════════════════════════════════════
   09 — Retro Offset
═══════════════════════════════════════════ */

.stkcta-retro {
	background: #fffef5;
	border: 3px solid #111;
	box-shadow: 8px 8px 0 #111;
	padding: 52px 48px;
	text-align: center;
	margin: 0 8px 8px 0;
}
.stkcta-retro .stkcta-inner { max-width: 680px; margin: 0 auto; }
.stkcta-retro .stkcta-eyebrow  { color: #444; }
.stkcta-retro .stkcta-headline {
	color: #111;
	font-family: 'Georgia', serif;
	font-size: 2.2rem;
	border-bottom: 3px solid #111;
	display: inline-block;
	padding-bottom: 8px;
}
.stkcta-retro .stkcta-desc  { color: #444; font-family: monospace; }
.stkcta-retro .stkcta-note  { color: #888; font-family: monospace; font-size: 0.7rem; }
.stkcta-retro .stkcta-btns  { justify-content: center; }
.stkcta-retro .stkcta-btn1 {
	background: #111;
	color: #fffef5;
	border-radius: 0;
	box-shadow: 3px 3px 0 #555;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.stkcta-retro .stkcta-btn1:hover { box-shadow: 1px 1px 0 #555; transform: translate(2px,2px); }
.stkcta-retro .stkcta-btn2 {
	background: #fffef5;
	color: #111;
	border: 2px solid #111;
	border-radius: 0;
	box-shadow: 3px 3px 0 #999;
}
.stkcta-retro .stkcta-btn2:hover { box-shadow: 1px 1px 0 #999; transform: translate(2px,2px); }
.stkcta-retro .stkcta-badge { background: #111; color: #fffef5; border-radius: 0; font-family: monospace; }

/* ═══════════════════════════════════════════
   10 — Bold Typography
═══════════════════════════════════════════ */

.stkcta-bold-type {
	background: #fff;
	padding: 72px 48px;
	border-top: 6px solid #111;
}
.stkcta-bold-type .stkcta-eyebrow {
	color: #4f46e5;
	font-size: 0.8rem;
	letter-spacing: 0.2em;
}
.stkcta-bold-type .stkcta-headline {
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 900;
	color: #111;
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}
.stkcta-bold-type .stkcta-desc  { color: #555; max-width: 520px; }
.stkcta-bold-type .stkcta-note  { color: #aaa; }
.stkcta-bold-type .stkcta-btn1 {
	background: #111;
	color: #fff;
	border-radius: 0;
	padding: 14px 36px;
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.stkcta-bold-type .stkcta-btn1:hover { background: #4f46e5; }
.stkcta-bold-type .stkcta-btn2 {
	background: transparent;
	color: #111;
	border: none;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
	padding: 14px 4px;
	font-weight: 700;
}

/* ═══════════════════════════════════════════
   11 — Outlined Frame
═══════════════════════════════════════════ */

.stkcta-outlined {
	background: transparent;
	border: 2px solid #4f46e5;
	padding: 52px 48px;
	text-align: center;
}
.stkcta-outlined .stkcta-inner { max-width: 640px; margin: 0 auto; }
.stkcta-outlined .stkcta-eyebrow  { color: #4f46e5; }
.stkcta-outlined .stkcta-headline { color: #111; }
.stkcta-outlined .stkcta-desc     { color: #555; }
.stkcta-outlined .stkcta-note     { color: #aaa; }
.stkcta-outlined .stkcta-btns     { justify-content: center; }
.stkcta-outlined .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
}
.stkcta-outlined .stkcta-btn1:hover { background: #3730a3; }
.stkcta-outlined .stkcta-btn2 {
	background: transparent;
	color: #4f46e5;
	border-color: #4f46e5;
}
.stkcta-outlined .stkcta-btn2:hover { background: #4f46e5; color: #fff; }

/* ═══════════════════════════════════════════
   12 — Pill Container
═══════════════════════════════════════════ */

.stkcta-pill {
	padding: 16px;
	background: transparent;
}
.stkcta-pill .stkcta-inner {
	background: #4f46e5;
	border-radius: 100px;
	padding: 24px 48px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}
.stkcta-pill .stkcta-headline { color: #fff; font-size: 1.3rem; margin: 0; }
.stkcta-pill .stkcta-desc     { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 4px 0 0; }
.stkcta-pill .stkcta-btns     { flex-shrink: 0; }
.stkcta-pill .stkcta-btn1 {
	background: #fff;
	color: #4f46e5;
	border-radius: 100px;
	padding: 10px 28px;
}
.stkcta-pill .stkcta-btn1:hover { background: rgba(255,255,255,0.9); transform: scale(1.03); }
.stkcta-pill .stkcta-btn2 {
	background: transparent;
	color: rgba(255,255,255,0.8);
	border-color: rgba(255,255,255,0.4);
	border-radius: 100px;
}
.stkcta-pill .stkcta-btn2:hover { color: #fff; border-color: #fff; }
.stkcta-pill .stkcta-eyebrow { color: rgba(255,255,255,0.65); margin: 0 0 4px; }

/* ═══════════════════════════════════════════
   13 — Left Stripe
═══════════════════════════════════════════ */

.stkcta-left-stripe {
	background: #fff;
	border-left: 6px solid #4f46e5;
	padding: 44px 48px;
	box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stkcta-left-stripe .stkcta-eyebrow  { color: #4f46e5; }
.stkcta-left-stripe .stkcta-headline { color: #111; font-size: 1.8rem; }
.stkcta-left-stripe .stkcta-desc     { color: #555; }
.stkcta-left-stripe .stkcta-note     { color: #aaa; }
.stkcta-left-stripe .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
}
.stkcta-left-stripe .stkcta-btn1:hover { background: #3730a3; }
.stkcta-left-stripe .stkcta-btn2 {
	background: transparent;
	color: #4f46e5;
	border-color: #4f46e5;
}
.stkcta-left-stripe .stkcta-btn2:hover { background: #4f46e5; color: #fff; }

/* ═══════════════════════════════════════════
   14 — Announcement Bar (slim)
═══════════════════════════════════════════ */

.stkcta-announce {
	background: #fef3c7;
	border-top: 3px solid #f59e0b;
	border-bottom: 3px solid #f59e0b;
	padding: 14px 32px;
}
.stkcta-announce .stkcta-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
.stkcta-announce .stkcta-eyebrow {
	background: #f59e0b;
	color: #fff;
	border-radius: 4px;
	padding: 2px 10px;
	font-size: 0.7rem;
	margin: 0;
}
.stkcta-announce .stkcta-headline { color: #92400e; font-size: 0.95rem; font-weight: 600; margin: 0; }
.stkcta-announce .stkcta-desc     { display: none; }
.stkcta-announce .stkcta-note     { display: none; }
.stkcta-announce .stkcta-btns     { gap: 8px; }
.stkcta-announce .stkcta-btn1 {
	background: #f59e0b;
	color: #fff;
	padding: 6px 18px;
	font-size: 0.8rem;
	border-radius: 4px;
}
.stkcta-announce .stkcta-btn1:hover { background: #d97706; }
.stkcta-announce .stkcta-btn2 {
	background: transparent;
	color: #92400e;
	border-color: #f59e0b;
	padding: 6px 14px;
	font-size: 0.8rem;
}

/* ═══════════════════════════════════════════
   15 — Split Image Panel
═══════════════════════════════════════════ */

.stkcta-split-image {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 320px;
	background: #111;
}
.stkcta-split-image .stkcta-overlay {
	position: absolute;
	left: 0;
	right: 50%;
	background: linear-gradient(to right, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}
.stkcta-split-image .stkcta-inner {
	grid-column: 2;
	background: #fff;
	padding: 52px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.stkcta-split-image .stkcta-eyebrow  { color: #4f46e5; }
.stkcta-split-image .stkcta-headline { color: #111; font-size: 1.8rem; }
.stkcta-split-image .stkcta-desc     { color: #555; }
.stkcta-split-image .stkcta-note     { color: #aaa; }
.stkcta-split-image .stkcta-btn1 { background: #4f46e5; color: #fff; }
.stkcta-split-image .stkcta-btn1:hover { background: #3730a3; }
.stkcta-split-image .stkcta-btn2 { background: transparent; color: #4f46e5; border-color: #4f46e5; }

/* ═══════════════════════════════════════════
   16 — Floating Card
═══════════════════════════════════════════ */

.stkcta-floating-card {
	background: #f0f0f0;
	padding: 48px;
	text-align: center;
}
.stkcta-floating-card .stkcta-inner {
	background: #fff;
	max-width: 700px;
	margin: 0 auto;
	padding: 52px 48px;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 8px 24px rgba(0,0,0,0.08);
}
.stkcta-floating-card .stkcta-eyebrow  { color: #4f46e5; }
.stkcta-floating-card .stkcta-headline { color: #111; }
.stkcta-floating-card .stkcta-desc     { color: #555; }
.stkcta-floating-card .stkcta-note     { color: #aaa; }
.stkcta-floating-card .stkcta-btns     { justify-content: center; }
.stkcta-floating-card .stkcta-btn1 { background: #4f46e5; color: #fff; border-radius: 8px; }
.stkcta-floating-card .stkcta-btn1:hover { background: #3730a3; transform: translateY(-2px); }
.stkcta-floating-card .stkcta-btn2 { background: transparent; color: #4f46e5; border-color: #4f46e5; border-radius: 8px; }

/* ═══════════════════════════════════════════
   17 — Duotone
═══════════════════════════════════════════ */

.stkcta-duotone {
	background: #0ea5e9;
	padding: 64px 48px;
	text-align: center;
	position: relative;
}
.stkcta-duotone::before {
	content: "";
	position: absolute;
	top: -40px;
	right: -40px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: #7c3aed;
	opacity: 0.35;
	pointer-events: none;
}
.stkcta-duotone::after {
	content: "";
	position: absolute;
	bottom: -60px;
	left: -20px;
	width: 200px;
	height: 200px;
	border-radius: 50%;
	background: #1e3a5f;
	opacity: 0.3;
	pointer-events: none;
}
.stkcta-duotone .stkcta-inner { max-width: 680px; margin: 0 auto; }
.stkcta-duotone .stkcta-eyebrow  { color: rgba(255,255,255,0.75); }
.stkcta-duotone .stkcta-headline { color: #fff; font-size: 2.2rem; }
.stkcta-duotone .stkcta-desc     { color: rgba(255,255,255,0.85); }
.stkcta-duotone .stkcta-note     { color: rgba(255,255,255,0.5); }
.stkcta-duotone .stkcta-btns     { justify-content: center; }
.stkcta-duotone .stkcta-btn1 {
	background: #fff;
	color: #0ea5e9;
	font-weight: 800;
}
.stkcta-duotone .stkcta-btn1:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.stkcta-duotone .stkcta-btn2 {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.5);
}
.stkcta-duotone .stkcta-btn2:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ═══════════════════════════════════════════
   18 — Alert Banner
═══════════════════════════════════════════ */

.stkcta-alert {
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-left: 5px solid #ef4444;
	padding: 28px 40px;
	border-radius: 8px;
}
.stkcta-alert .stkcta-inner {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-wrap: wrap;
}
.stkcta-alert .stkcta-icon  { margin: 0; font-size: 28px; flex-shrink: 0; color: #ef4444; }
.stkcta-alert .stkcta-icon i, .stkcta-alert .stkcta-icon svg { color: #ef4444; }
.stkcta-alert .stkcta-text-wrap { flex: 1 1 200px; }
.stkcta-alert .stkcta-eyebrow  { color: #ef4444; font-size: 0.7rem; margin-bottom: 4px; }
.stkcta-alert .stkcta-headline { color: #7f1d1d; font-size: 1.1rem; margin-bottom: 4px; }
.stkcta-alert .stkcta-desc     { color: #991b1b; font-size: 0.9rem; margin: 0; }
.stkcta-alert .stkcta-btns     { flex-shrink: 0; }
.stkcta-alert .stkcta-btn1 {
	background: #ef4444;
	color: #fff;
	border-radius: 6px;
	padding: 10px 22px;
}
.stkcta-alert .stkcta-btn1:hover { background: #dc2626; }
.stkcta-alert .stkcta-btn2 {
	background: transparent;
	color: #ef4444;
	border-color: #ef4444;
}

/* ═══════════════════════════════════════════
   19 — Neumorphic
═══════════════════════════════════════════ */

.stkcta-neumorphic {
	background: #e0e5ec;
	padding: 64px 48px;
	text-align: center;
}
.stkcta-neumorphic .stkcta-inner {
	max-width: 680px;
	margin: 0 auto;
	background: #e0e5ec;
	border-radius: 24px;
	box-shadow: 12px 12px 24px #b8bec7, -12px -12px 24px #ffffff;
	padding: 52px 48px;
}
.stkcta-neumorphic .stkcta-eyebrow  { color: #4f46e5; }
.stkcta-neumorphic .stkcta-headline { color: #333; }
.stkcta-neumorphic .stkcta-desc     { color: #666; }
.stkcta-neumorphic .stkcta-note     { color: #999; }
.stkcta-neumorphic .stkcta-btns     { justify-content: center; }
.stkcta-neumorphic .stkcta-btn1 {
	background: #e0e5ec;
	color: #4f46e5;
	border: none;
	border-radius: 12px;
	box-shadow: 5px 5px 10px #b8bec7, -5px -5px 10px #ffffff;
	font-weight: 700;
}
.stkcta-neumorphic .stkcta-btn1:hover {
	box-shadow: inset 4px 4px 8px #b8bec7, inset -4px -4px 8px #ffffff;
}
.stkcta-neumorphic .stkcta-btn2 {
	background: #e0e5ec;
	color: #888;
	border: none;
	border-radius: 12px;
	box-shadow: 4px 4px 8px #b8bec7, -4px -4px 8px #ffffff;
}

/* ═══════════════════════════════════════════
   20 — Magazine Editorial
═══════════════════════════════════════════ */

.stkcta-magazine {
	background: #fff;
	border-top: 4px solid #111;
	padding: 52px 48px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 48px;
	align-items: center;
}
.stkcta-magazine .stkcta-inner {
	display: contents;
}
.stkcta-magazine .stkcta-eyebrow {
	grid-column: 1 / -1;
	color: #111;
	font-size: 0.65rem;
	letter-spacing: 0.25em;
	border-bottom: 1px solid #ddd;
	padding-bottom: 12px;
	margin-bottom: 0;
}
.stkcta-magazine .stkcta-headline {
	color: #111;
	font-size: clamp(1.8rem, 3vw, 2.8rem);
	font-weight: 900;
	font-family: Georgia, serif;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin: 0;
}
.stkcta-magazine .stkcta-desc {
	color: #555;
	font-size: 0.9rem;
	line-height: 1.7;
	margin: 0;
}
.stkcta-magazine .stkcta-btns {
	flex-direction: column;
	align-items: stretch;
}
.stkcta-magazine .stkcta-btn1 {
	background: #111;
	color: #fff;
	border-radius: 0;
	text-align: center;
	padding: 14px 28px;
}
.stkcta-magazine .stkcta-btn1:hover { background: #4f46e5; }
.stkcta-magazine .stkcta-btn2 {
	background: #fff;
	color: #111;
	border: 2px solid #111;
	border-radius: 0;
	text-align: center;
}
.stkcta-magazine .stkcta-btn2:hover { background: #f5f5f5; }
.stkcta-magazine .stkcta-note { color: #bbb; font-size: 0.7rem; }

/* ═══════════════════════════════════════════
   21 — Spotlight
═══════════════════════════════════════════ */

.stkcta-spotlight {
	background: #0a0a0a;
	padding: 72px 48px;
	text-align: center;
	position: relative;
}
.stkcta-spotlight::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 600px;
	height: 300px;
	background: radial-gradient(ellipse at 50% 0%, rgba(79,70,229,0.4) 0%, transparent 70%);
	pointer-events: none;
}
.stkcta-spotlight .stkcta-inner { max-width: 680px; margin: 0 auto; }
.stkcta-spotlight .stkcta-eyebrow  { color: #6c63ff; }
.stkcta-spotlight .stkcta-headline { color: #fff; font-size: 2.2rem; }
.stkcta-spotlight .stkcta-desc     { color: #888; }
.stkcta-spotlight .stkcta-note     { color: #555; }
.stkcta-spotlight .stkcta-btns     { justify-content: center; }
.stkcta-spotlight .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
	box-shadow: 0 0 24px rgba(79,70,229,0.5);
}
.stkcta-spotlight .stkcta-btn1:hover { background: #6c63ff; box-shadow: 0 0 36px rgba(108,99,255,0.7); transform: translateY(-2px); }
.stkcta-spotlight .stkcta-btn2 {
	background: transparent;
	color: #aaa;
	border-color: #333;
}
.stkcta-spotlight .stkcta-btn2:hover { color: #fff; border-color: #666; }

/* ═══════════════════════════════════════════
   22 — Diagonal Slash
═══════════════════════════════════════════ */

.stkcta-diagonal {
	background: #fff;
	padding: 0;
	overflow: hidden;
	display: flex;
	min-height: 260px;
}
.stkcta-diagonal::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 45%;
	background: #4f46e5;
	clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
	z-index: 0;
}
.stkcta-diagonal .stkcta-overlay { display: none; }
.stkcta-diagonal .stkcta-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	width: 100%;
	align-items: center;
}
.stkcta-diagonal .stkcta-eyebrow  { color: rgba(255,255,255,0.75); }
.stkcta-diagonal .stkcta-headline { color: #fff; font-size: 1.8rem; }
.stkcta-diagonal .stkcta-desc     { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.stkcta-diagonal .stkcta-text-left { padding: 52px 0 52px 52px; }
.stkcta-diagonal .stkcta-btns {
	padding: 52px 52px 52px 0;
	flex-direction: column;
	align-items: flex-end;
}
.stkcta-diagonal .stkcta-btn1 { background: #4f46e5; color: #fff; }
.stkcta-diagonal .stkcta-btn1:hover { background: #3730a3; }
.stkcta-diagonal .stkcta-btn2 { background: transparent; color: #555; border-color: #ddd; }

/* ═══════════════════════════════════════════
   23 — Floating Centered Card
═══════════════════════════════════════════ */

.stkcta-float-center {
	background: #1e1e2e;
	padding: 60px 48px;
	text-align: center;
	min-height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.stkcta-float-center .stkcta-inner {
	background: #fff;
	max-width: 620px;
	padding: 48px 52px;
	border-radius: 20px;
	box-shadow: 0 32px 80px rgba(0,0,0,0.35);
	transform: translateY(-8px);
}
.stkcta-float-center .stkcta-eyebrow  { color: #4f46e5; }
.stkcta-float-center .stkcta-headline { color: #111; }
.stkcta-float-center .stkcta-desc     { color: #555; }
.stkcta-float-center .stkcta-note     { color: #aaa; }
.stkcta-float-center .stkcta-btns     { justify-content: center; }
.stkcta-float-center .stkcta-btn1 { background: #4f46e5; color: #fff; border-radius: 10px; }
.stkcta-float-center .stkcta-btn1:hover { background: #3730a3; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(79,70,229,0.4); }
.stkcta-float-center .stkcta-btn2 { background: transparent; color: #4f46e5; border-color: #4f46e5; border-radius: 10px; }

/* ═══════════════════════════════════════════
   24 — Icon Hero
═══════════════════════════════════════════ */

.stkcta-icon-hero {
	background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
	padding: 64px 48px;
	text-align: center;
	border-top: 1px solid #ddd6fe;
}
.stkcta-icon-hero .stkcta-inner { max-width: 600px; margin: 0 auto; }
.stkcta-icon-hero .stkcta-icon {
	font-size: 72px;
	color: #4f46e5;
	margin-bottom: 24px;
	display: block;
}
.stkcta-icon-hero .stkcta-icon i, .stkcta-icon-hero .stkcta-icon svg { color: #4f46e5; }
.stkcta-icon-hero .stkcta-eyebrow  { color: #7c3aed; }
.stkcta-icon-hero .stkcta-headline { color: #1e1b4b; font-size: 2rem; }
.stkcta-icon-hero .stkcta-desc     { color: #6d28d9; opacity: 0.75; }
.stkcta-icon-hero .stkcta-note     { color: #a78bfa; }
.stkcta-icon-hero .stkcta-btns     { justify-content: center; }
.stkcta-icon-hero .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 16px rgba(79,70,229,0.35);
}
.stkcta-icon-hero .stkcta-btn1:hover { background: #4338ca; transform: translateY(-2px); }
.stkcta-icon-hero .stkcta-btn2 {
	background: transparent;
	color: #4f46e5;
	border-color: #a5b4fc;
	border-radius: 10px;
}

/* ═══════════════════════════════════════════
   25 — Two Column
═══════════════════════════════════════════ */

.stkcta-two-col {
	background: #fff;
	padding: 60px 48px;
	border-top: 4px solid #4f46e5;
}
.stkcta-two-col .stkcta-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}
.stkcta-two-col .stkcta-eyebrow  { grid-column: 1 / -1; color: #4f46e5; }
.stkcta-two-col .stkcta-headline { color: #111; font-size: 2rem; margin: 0; grid-column: 1; }
.stkcta-two-col .stkcta-desc     { color: #555; grid-column: 2; margin: 0; font-size: 0.95rem; }
.stkcta-two-col .stkcta-btns     { grid-column: 1 / -1; }
.stkcta-two-col .stkcta-note     { grid-column: 1 / -1; color: #aaa; }
.stkcta-two-col .stkcta-btn1 { background: #4f46e5; color: #fff; }
.stkcta-two-col .stkcta-btn1:hover { background: #3730a3; }
.stkcta-two-col .stkcta-btn2 { background: transparent; color: #4f46e5; border-color: #4f46e5; }

/* ═══════════════════════════════════════════
   26 — Countdown Decor
═══════════════════════════════════════════ */

.stkcta-countdown {
	background: #1e1b4b;
	padding: 60px 48px;
	text-align: center;
}
.stkcta-countdown .stkcta-inner { max-width: 700px; margin: 0 auto; }
.stkcta-countdown .stkcta-eyebrow  { color: #a5b4fc; }
.stkcta-countdown .stkcta-headline { color: #fff; font-size: 2rem; }
.stkcta-countdown .stkcta-desc     { color: #a5b4fc; }
.stkcta-countdown .stkcta-note     { color: #6366f1; }
.stkcta-countdown .stkcta-btns     { justify-content: center; }
.stkcta-countdown-row {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin-bottom: 32px;
}
.stkcta-cd-box {
	background: rgba(255,255,255,0.08);
	border: 1px solid rgba(165,180,252,0.25);
	border-radius: 8px;
	padding: 14px 20px;
	min-width: 72px;
	text-align: center;
}
.stkcta-cd-num {
	display: block;
	font-size: 2rem;
	font-weight: 900;
	color: #fff;
	line-height: 1;
}
.stkcta-cd-label {
	display: block;
	font-size: 0.65rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #a5b4fc;
	margin-top: 4px;
}
.stkcta-countdown .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
	box-shadow: 0 4px 16px rgba(79,70,229,0.4);
	border-radius: 8px;
}
.stkcta-countdown .stkcta-btn1:hover { background: #6c63ff; }
.stkcta-countdown .stkcta-btn2 { background: transparent; color: #a5b4fc; border-color: rgba(165,180,252,0.4); border-radius: 8px; }

/* ═══════════════════════════════════════════
   27 — Ribbon Corner
═══════════════════════════════════════════ */

.stkcta-ribbon {
	background: #fff;
	border: 1px solid #e8e8e8;
	padding: 52px 48px;
	text-align: center;
	box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.stkcta-ribbon-wrap {
	position: absolute;
	top: 0;
	right: 0;
	overflow: hidden;
	width: 120px;
	height: 120px;
	z-index: 2;
}
.stkcta-ribbon-label {
	position: absolute;
	top: 28px;
	right: -28px;
	width: 130px;
	text-align: center;
	background: #4f46e5;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 5px 0;
	transform: rotate(45deg);
	display: block;
}
.stkcta-ribbon .stkcta-inner { max-width: 640px; margin: 0 auto; }
.stkcta-ribbon .stkcta-eyebrow  { color: #4f46e5; }
.stkcta-ribbon .stkcta-headline { color: #111; }
.stkcta-ribbon .stkcta-desc     { color: #555; }
.stkcta-ribbon .stkcta-note     { color: #aaa; }
.stkcta-ribbon .stkcta-btns     { justify-content: center; }
.stkcta-ribbon .stkcta-btn1 { background: #4f46e5; color: #fff; }
.stkcta-ribbon .stkcta-btn1:hover { background: #3730a3; }
.stkcta-ribbon .stkcta-btn2 { background: transparent; color: #4f46e5; border-color: #4f46e5; }

/* ═══════════════════════════════════════════
   28 — Overlap Image
═══════════════════════════════════════════ */

.stkcta-overlap-img {
	background: #fff;
	padding: 0 0 0 48%;
	min-height: 320px;
	display: flex;
	align-items: stretch;
}
.stkcta-overlap-img .stkcta-overlay {
	right: 50%;
	background: linear-gradient(to right, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.05) 100%);
}
.stkcta-overlap-img .stkcta-inner {
	background: #fff;
	padding: 52px 48px 52px 56px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	box-shadow: -8px 0 24px rgba(0,0,0,0.08);
}
.stkcta-overlap-img .stkcta-eyebrow  { color: #4f46e5; }
.stkcta-overlap-img .stkcta-headline { color: #111; font-size: 1.8rem; }
.stkcta-overlap-img .stkcta-desc     { color: #555; }
.stkcta-overlap-img .stkcta-note     { color: #aaa; }
.stkcta-overlap-img .stkcta-btn1 { background: #4f46e5; color: #fff; }
.stkcta-overlap-img .stkcta-btn1:hover { background: #3730a3; }
.stkcta-overlap-img .stkcta-btn2 { background: transparent; color: #4f46e5; border-color: #4f46e5; }

/* ═══════════════════════════════════════════
   29 — Tinted Overlay
═══════════════════════════════════════════ */

.stkcta-tinted {
	background: #4f46e5;
	min-height: 380px;
	padding: 72px 48px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.stkcta-tinted .stkcta-overlay {
	background: linear-gradient(135deg, rgba(79,70,229,0.7) 0%, rgba(124,58,237,0.85) 100%);
	mix-blend-mode: multiply;
}
.stkcta-tinted .stkcta-inner { max-width: 680px; }
.stkcta-tinted .stkcta-eyebrow  { color: rgba(255,255,255,0.7); }
.stkcta-tinted .stkcta-headline { color: #fff; font-size: 2.2rem; }
.stkcta-tinted .stkcta-desc     { color: rgba(255,255,255,0.8); }
.stkcta-tinted .stkcta-note     { color: rgba(255,255,255,0.5); }
.stkcta-tinted .stkcta-btns     { justify-content: center; }
.stkcta-tinted .stkcta-btn1 { background: #fff; color: #4f46e5; font-weight: 800; }
.stkcta-tinted .stkcta-btn1:hover { background: rgba(255,255,255,0.9); transform: scale(1.03); }
.stkcta-tinted .stkcta-btn2 { background: transparent; color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.45); }
.stkcta-tinted .stkcta-btn2:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ═══════════════════════════════════════════
   30 — Monochrome Block
═══════════════════════════════════════════ */

.stkcta-mono {
	background: #111;
	padding: 64px 48px;
}
.stkcta-mono .stkcta-inner {
	display: flex;
	flex-direction: column;
	max-width: 680px;
}
.stkcta-mono .stkcta-eyebrow {
	color: #555;
	font-size: 0.65rem;
	letter-spacing: 0.3em;
}
.stkcta-mono .stkcta-headline {
	color: #f5f5f5;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 900;
	letter-spacing: -0.02em;
	border-left: 4px solid #555;
	padding-left: 20px;
}
.stkcta-mono .stkcta-desc  { color: #888; padding-left: 24px; }
.stkcta-mono .stkcta-note  { color: #555; }
.stkcta-mono .stkcta-badge { background: #333; color: #f5f5f5; border-radius: 2px; }
.stkcta-mono .stkcta-btn1 {
	background: #f5f5f5;
	color: #111;
	border-radius: 2px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.stkcta-mono .stkcta-btn1:hover { background: #fff; }
.stkcta-mono .stkcta-btn2 {
	background: transparent;
	color: #888;
	border: 1px solid #333;
	border-radius: 2px;
}
.stkcta-mono .stkcta-btn2:hover { border-color: #888; color: #f5f5f5; }

/* ═══════════════════════════════════════════
   31 — Stamp Badge
═══════════════════════════════════════════ */

.stkcta-stamp {
	background: #fff3e0;
	border: 3px dashed #f59e0b;
	padding: 52px 48px 52px 180px;
	min-height: 200px;
	display: flex;
	align-items: center;
}
.stkcta-stamp-circle {
	position: absolute;
	left: 40px;
	top: 50%;
	transform: translateY(-50%);
	width: 110px;
	height: 110px;
	border-radius: 50%;
	background: #f59e0b;
	border: 3px dashed rgba(255,255,255,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.stkcta-stamp-text {
	font-size: 0.75rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #fff;
	text-align: center;
	line-height: 1.3;
	padding: 4px;
}
.stkcta-stamp .stkcta-inner { flex: 1; }
.stkcta-stamp .stkcta-eyebrow  { color: #d97706; }
.stkcta-stamp .stkcta-headline { color: #92400e; font-size: 1.6rem; }
.stkcta-stamp .stkcta-desc     { color: #b45309; font-size: 0.9rem; }
.stkcta-stamp .stkcta-btn1 { background: #f59e0b; color: #fff; border-radius: 4px; }
.stkcta-stamp .stkcta-btn1:hover { background: #d97706; }
.stkcta-stamp .stkcta-btn2 { background: transparent; color: #d97706; border-color: #f59e0b; }

/* ═══════════════════════════════════════════
   32 — Cinematic
═══════════════════════════════════════════ */

.stkcta-cinematic {
	background: #000;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 80px 48px;
	text-align: center;
	position: relative;
}
.stkcta-cinematic::before,
.stkcta-cinematic::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	height: 60px;
	background: #000;
	z-index: 2;
}
.stkcta-cinematic::before { top: 0; }
.stkcta-cinematic::after  { bottom: 0; }
.stkcta-cinematic .stkcta-overlay { background: rgba(0,0,0,0.6); }
.stkcta-cinematic .stkcta-inner { max-width: 720px; z-index: 1; }
.stkcta-cinematic .stkcta-eyebrow {
	color: rgba(255,255,255,0.5);
	font-family: monospace;
	letter-spacing: 0.3em;
}
.stkcta-cinematic .stkcta-headline {
	color: #fff;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 300;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.stkcta-cinematic .stkcta-desc { color: rgba(255,255,255,0.65); font-size: 0.9rem; letter-spacing: 0.05em; }
.stkcta-cinematic .stkcta-note { color: rgba(255,255,255,0.35); letter-spacing: 0.1em; }
.stkcta-cinematic .stkcta-btns { justify-content: center; }
.stkcta-cinematic .stkcta-btn1 {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.6);
	border-radius: 0;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	font-size: 0.8rem;
	padding: 14px 40px;
}
.stkcta-cinematic .stkcta-btn1:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.stkcta-cinematic .stkcta-btn2 {
	background: transparent;
	color: rgba(255,255,255,0.5);
	border: 1px solid rgba(255,255,255,0.2);
	border-radius: 0;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-size: 0.8rem;
}
.stkcta-cinematic .stkcta-btn2:hover { border-color: rgba(255,255,255,0.5); color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════
   33 — Frosted Dark
═══════════════════════════════════════════ */

.stkcta-frosted-dark {
	background: linear-gradient(135deg, #0f0f23 0%, #1a0a2e 100%);
	padding: 64px 48px;
	text-align: center;
}
.stkcta-frosted-dark .stkcta-inner {
	max-width: 680px;
	margin: 0 auto;
	background: rgba(255,255,255,0.05);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 24px;
	padding: 56px 52px;
	box-shadow: 0 0 60px rgba(79,70,229,0.15);
}
.stkcta-frosted-dark .stkcta-eyebrow  { color: #a5b4fc; }
.stkcta-frosted-dark .stkcta-headline { color: #fff; }
.stkcta-frosted-dark .stkcta-desc     { color: rgba(255,255,255,0.65); }
.stkcta-frosted-dark .stkcta-note     { color: rgba(255,255,255,0.35); }
.stkcta-frosted-dark .stkcta-btns     { justify-content: center; }
.stkcta-frosted-dark .stkcta-btn1 {
	background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
	color: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(79,70,229,0.4);
}
.stkcta-frosted-dark .stkcta-btn1:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(79,70,229,0.6); }
.stkcta-frosted-dark .stkcta-btn2 {
	background: rgba(255,255,255,0.07);
	color: rgba(255,255,255,0.75);
	border-color: rgba(255,255,255,0.15);
	border-radius: 12px;
}
.stkcta-frosted-dark .stkcta-btn2:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* ═══════════════════════════════════════════
   34 — Quote Pull
═══════════════════════════════════════════ */

.stkcta-quote-pull {
	background: #f9f9f9;
	padding: 64px 48px 64px 80px;
	border-left: 6px solid #4f46e5;
	position: relative;
}
.stkcta-quote-pull::before {
	content: "\201C";
	position: absolute;
	top: 20px;
	left: 24px;
	font-size: 8rem;
	line-height: 1;
	color: #e0e0e0;
	font-family: Georgia, serif;
	pointer-events: none;
}
.stkcta-quote-pull .stkcta-inner { max-width: 700px; }
.stkcta-quote-pull .stkcta-eyebrow  { color: #4f46e5; }
.stkcta-quote-pull .stkcta-headline {
	color: #111;
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-family: Georgia, serif;
	font-weight: 400;
	font-style: italic;
	line-height: 1.4;
}
.stkcta-quote-pull .stkcta-desc  { color: #555; font-style: normal; }
.stkcta-quote-pull .stkcta-note  { color: #aaa; }
.stkcta-quote-pull .stkcta-btn1 { background: #4f46e5; color: #fff; }
.stkcta-quote-pull .stkcta-btn1:hover { background: #3730a3; }
.stkcta-quote-pull .stkcta-btn2 { background: transparent; color: #4f46e5; border-color: #4f46e5; }

/* ═══════════════════════════════════════════
   35 — Notification Toast
═══════════════════════════════════════════ */

.stkcta-toast {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
	padding: 28px 32px;
	max-width: 480px;
	border-left: 4px solid #4f46e5;
}
.stkcta-toast .stkcta-inner {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.stkcta-toast .stkcta-icon { font-size: 28px; flex-shrink: 0; margin: 0; color: #4f46e5; }
.stkcta-toast .stkcta-icon i, .stkcta-toast .stkcta-icon svg { color: #4f46e5; }
.stkcta-toast .stkcta-text-wrap { flex: 1; }
.stkcta-toast .stkcta-eyebrow  { color: #4f46e5; font-size: 0.65rem; margin-bottom: 4px; }
.stkcta-toast .stkcta-headline { color: #111; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.stkcta-toast .stkcta-desc     { color: #666; font-size: 0.85rem; margin: 0; }
.stkcta-toast .stkcta-btns     { margin-top: 14px; gap: 8px; }
.stkcta-toast .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
	padding: 8px 18px;
	font-size: 0.8rem;
	border-radius: 8px;
}
.stkcta-toast .stkcta-btn1:hover { background: #3730a3; }
.stkcta-toast .stkcta-btn2 {
	background: transparent;
	color: #777;
	padding: 8px 14px;
	font-size: 0.8rem;
	border: none;
}
.stkcta-toast .stkcta-btn2:hover { color: #333; }

/* ═══════════════════════════════════════════
   36 — Price Forward
═══════════════════════════════════════════ */

.stkcta-price-fwd {
	background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
	padding: 0;
	display: grid;
	grid-template-columns: auto 1fr;
	min-height: 200px;
}
.stkcta-price-fwd .stkcta-price-panel {
	background: #4f46e5;
	padding: 40px 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	min-width: 200px;
}
.stkcta-price-fwd .stkcta-badge {
	font-size: 2.8rem;
	font-weight: 900;
	background: transparent;
	color: #fff;
	border-radius: 0;
	padding: 0;
	letter-spacing: -0.02em;
	line-height: 1;
	margin: 0;
}
.stkcta-price-fwd .stkcta-eyebrow { color: rgba(255,255,255,0.7); margin: 8px 0 0; }
.stkcta-price-fwd .stkcta-inner {
	padding: 40px 48px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.stkcta-price-fwd .stkcta-headline { color: #f4f4f5; font-size: 1.6rem; }
.stkcta-price-fwd .stkcta-desc     { color: #a1a1aa; font-size: 0.9rem; }
.stkcta-price-fwd .stkcta-note     { color: #71717a; }
.stkcta-price-fwd .stkcta-btn1 {
	background: #4f46e5;
	color: #fff;
	align-self: flex-start;
}
.stkcta-price-fwd .stkcta-btn1:hover { background: #6c63ff; }
.stkcta-price-fwd .stkcta-btn2 { background: transparent; color: #a1a1aa; border-color: #3f3f46; }
.stkcta-price-fwd .stkcta-btn2:hover { color: #f4f4f5; border-color: #71717a; }

/* ═══════════════════════════════════════════
   37 — Social Proof
═══════════════════════════════════════════ */

.stkcta-social-proof {
	background: #fff;
	padding: 52px 48px;
	text-align: center;
	border-top: 4px solid #f59e0b;
}
.stkcta-social-proof .stkcta-inner { max-width: 640px; margin: 0 auto; }
.stkcta-stars {
	font-size: 1.8rem;
	color: #f59e0b;
	letter-spacing: 2px;
	margin-bottom: 16px;
	display: block;
}
.stkcta-social-proof .stkcta-eyebrow { color: #888; font-size: 0.75rem; }
.stkcta-social-proof .stkcta-headline {
	color: #111;
	font-size: 1.6rem;
	font-family: Georgia, serif;
	font-weight: 400;
	font-style: italic;
}
.stkcta-social-proof .stkcta-desc  { color: #777; font-size: 0.9rem; }
.stkcta-social-proof .stkcta-note  { color: #bbb; }
.stkcta-social-proof .stkcta-btns  { justify-content: center; margin-top: 8px; }
.stkcta-social-proof .stkcta-btn1 { background: #111; color: #fff; border-radius: 8px; }
.stkcta-social-proof .stkcta-btn1:hover { background: #4f46e5; }
.stkcta-social-proof .stkcta-btn2 { background: transparent; color: #555; border-color: #ddd; border-radius: 8px; }

/* ═══════════════════════════════════════════
   38 — Gradient Border
═══════════════════════════════════════════ */

.stkcta-grad-border {
	background: #fff;
	padding: 4px;
	border-radius: 16px;
	position: relative;
}
.stkcta-grad-border::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, #667eea 0%, #f093fb 50%, #f5576c 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	padding: 3px;
	pointer-events: none;
}
.stkcta-grad-border .stkcta-inner {
	background: #fff;
	border-radius: 13px;
	padding: 52px 48px;
	text-align: center;
}
.stkcta-grad-border .stkcta-inner { max-width: none; }
.stkcta-grad-border .stkcta-eyebrow  { color: #667eea; }
.stkcta-grad-border .stkcta-headline { color: #111; }
.stkcta-grad-border .stkcta-desc     { color: #555; }
.stkcta-grad-border .stkcta-note     { color: #aaa; }
.stkcta-grad-border .stkcta-btns     { justify-content: center; }
.stkcta-grad-border .stkcta-btn1 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #fff;
	border-radius: 8px;
	border: none;
}
.stkcta-grad-border .stkcta-btn1:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(102,126,234,0.4); }
.stkcta-grad-border .stkcta-btn2 {
	background: transparent;
	color: #667eea;
	border-color: #c4b5fd;
	border-radius: 8px;
}

/* ═══════════════════════════════════════════
   39 — Corner Badge
═══════════════════════════════════════════ */

.stkcta-corner-badge {
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	padding: 52px 48px;
	text-align: center;
	overflow: hidden;
}
.stkcta-corner-badge-decor {
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 140px;
	height: 140px;
	border-radius: 50%;
	background: rgba(255,255,255,0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px;
	font-size: 0.75rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: rgba(255,255,255,0.8);
	text-align: center;
	line-height: 1.3;
	z-index: 2;
}
.stkcta-corner-badge .stkcta-inner { max-width: 640px; margin: 0 auto; }
.stkcta-corner-badge .stkcta-eyebrow  { color: rgba(255,255,255,0.7); }
.stkcta-corner-badge .stkcta-headline { color: #fff; font-size: 2rem; }
.stkcta-corner-badge .stkcta-desc     { color: rgba(255,255,255,0.82); }
.stkcta-corner-badge .stkcta-note     { color: rgba(255,255,255,0.5); }
.stkcta-corner-badge .stkcta-btns     { justify-content: center; }
.stkcta-corner-badge .stkcta-btn1 {
	background: #fff;
	color: #059669;
	font-weight: 800;
}
.stkcta-corner-badge .stkcta-btn1:hover { background: rgba(255,255,255,0.9); transform: scale(1.03); }
.stkcta-corner-badge .stkcta-btn2 {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.45);
}
.stkcta-corner-badge .stkcta-btn2:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════
   40 — Full Bleed Edge
═══════════════════════════════════════════ */

.stkcta-full-bleed {
	background: #4f46e5;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
}
.stkcta-full-bleed .stkcta-overlay { background: rgba(0,0,0,0.2); }
.stkcta-full-bleed .stkcta-inner {
	display: flex;
	align-items: stretch;
	width: 100%;
	flex-wrap: wrap;
}
.stkcta-full-bleed .stkcta-text-panel {
	flex: 1 1 340px;
	padding: 60px 56px;
}
.stkcta-full-bleed .stkcta-action-panel {
	background: rgba(0,0,0,0.2);
	flex: 0 1 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 48px 40px;
	gap: 14px;
}
.stkcta-full-bleed .stkcta-eyebrow  { color: rgba(255,255,255,0.65); margin-bottom: 8px; }
.stkcta-full-bleed .stkcta-headline { color: #fff; font-size: 2rem; margin-bottom: 12px; }
.stkcta-full-bleed .stkcta-desc     { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.95rem; }
.stkcta-full-bleed .stkcta-note     { color: rgba(255,255,255,0.45); font-size: 0.75rem; text-align: center; }
.stkcta-full-bleed .stkcta-btns {
	flex-direction: column;
	width: 100%;
	gap: 10px;
}
.stkcta-full-bleed .stkcta-btn1 {
	background: #fff;
	color: #4f46e5;
	font-weight: 800;
	width: 100%;
	justify-content: center;
	border-radius: 8px;
}
.stkcta-full-bleed .stkcta-btn1:hover { background: rgba(255,255,255,0.92); transform: scale(1.02); }
.stkcta-full-bleed .stkcta-btn2 {
	background: transparent;
	color: rgba(255,255,255,0.8);
	border-color: rgba(255,255,255,0.35);
	width: 100%;
	justify-content: center;
	border-radius: 8px;
}
.stkcta-full-bleed .stkcta-btn2:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */

@media (max-width: 767px) {
	.stkcta-headline { font-size: 1.5rem !important; }
	.stkcta-inner    { padding: 36px 24px !important; }

	/* Split layouts → stack */
	.stkcta-split .stkcta-inner,
	.stkcta-minimal .stkcta-inner,
	.stkcta-dark-strip .stkcta-inner,
	.stkcta-pill .stkcta-inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.stkcta-split .stkcta-btns { flex-direction: row; }

	/* Split image → stack */
	.stkcta-split-image {
		grid-template-columns: 1fr;
		min-height: auto;
	}
	.stkcta-split-image .stkcta-inner { grid-column: 1; }
	.stkcta-split-image .stkcta-overlay { right: 0; bottom: 50%; }

	/* 2-col → 1-col */
	.stkcta-two-col .stkcta-inner {
		grid-template-columns: 1fr;
	}
	.stkcta-two-col .stkcta-headline,
	.stkcta-two-col .stkcta-desc { grid-column: 1; }

	/* Magazine → stack */
	.stkcta-magazine {
		grid-template-columns: 1fr;
	}
	.stkcta-magazine .stkcta-btns { padding-top: 20px; }

	/* Diagonal → solid */
	.stkcta-diagonal { display: block; }
	.stkcta-diagonal::before { right: 0; clip-path: none; height: 40%; }
	.stkcta-diagonal .stkcta-inner { grid-template-columns: 1fr; }
	.stkcta-diagonal .stkcta-text-left,
	.stkcta-diagonal .stkcta-btns { padding: 24px; }

	/* Stamp → center */
	.stkcta-stamp {
		padding: 140px 32px 48px;
	}
	.stkcta-stamp-circle {
		top: 30px;
		left: 50%;
		transform: translateX(-50%);
	}

	/* Overlap img → stack */
	.stkcta-overlap-img { padding: 0; display: block; }
	.stkcta-overlap-img .stkcta-overlay { display: none; }
	.stkcta-overlap-img .stkcta-inner { padding: 36px 28px; box-shadow: none; }

	/* Price forward → stack */
	.stkcta-price-fwd {
		grid-template-columns: 1fr;
	}
	.stkcta-price-fwd .stkcta-price-panel { min-width: auto; padding: 28px; }

	/* Full bleed → stack */
	.stkcta-full-bleed .stkcta-action-panel { flex: 1 1 100%; }

	/* Pill → stack */
	.stkcta-pill .stkcta-inner {
		border-radius: 24px;
		flex-direction: column;
		gap: 20px;
	}

	/* Countdown boxes */
	.stkcta-countdown-row { gap: 8px; }
	.stkcta-cd-box { min-width: 60px; padding: 10px 12px; }
	.stkcta-cd-num { font-size: 1.5rem; }

	/* Toast */
	.stkcta-toast { max-width: 100%; }

	/* Corner decor */
	.stkcta-corner-badge-decor { display: none; }
}
