/* SEO AUTOMATION PAGE — Additional styles
   Template:  template-automation-seo.php
   Scope:     .is-auto-seo-page
   Tokens:    Inherited from main.css (do NOT redefine root vars)
   ------------------------------------------------------------------ */

/* =================================================================
   UTILITY CLASSES  (duplicated per template — intentional)
================================================================== */

.section {
	padding: clamp(72px, 8vw, 112px) 0;
}

.section-alt {
	background: var(--mist);
}

.section-dark {
	background: var(--ink);
}

.wrap {
	width: var(--w);
	margin: 0 auto;
}

.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.22s var(--ease), color 0.22s var(--ease), border-color 0.22s var(--ease);
	background: rgba(255, 255, 255, 0.08);
	color: var(--chalk);
	border: 1px solid rgba(255, 255, 255, 0.18);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(255, 255, 255, 0.32);
	color: var(--chalk);
}

.btn-out {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 26px;
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.22s var(--ease), color 0.22s var(--ease);
	background: transparent;
	color: var(--chalk);
	border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-out:hover,
.btn-out:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	border-color: var(--chalk);
	color: var(--chalk);
}

/* =================================================================
   H1 TYPOGRAPHIC MODIFIERS
================================================================== */

.is-auto-seo-page .h1-dim {
	display: block;
	color: rgba(255, 255, 255, 0.45);
}

.is-auto-seo-page .h1-white {
	color: var(--chalk);
}

.is-auto-seo-page .h1-fire {
	color: var(--fire);
}

.is-auto-seo-page .h1-underline {
	display: block;
	position: relative;
	color: var(--chalk);
	white-space: nowrap;
}

.is-auto-seo-page .h1-underline::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 0;
	width: 0;
	height: 3px;
	border-radius: 99px;
	background: var(--fire);
	transition: width 0.7s var(--ease);
}

.is-auto-seo-page .h1-underline.drawn::after {
	width: 100%;
}

/* =================================================================
   REVEAL ANIMATION UTILITIES
================================================================== */

.is-auto-seo-page .reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.is-auto-seo-page .reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

.is-auto-seo-page .reveal-d1 { transition-delay: 0.1s; }
.is-auto-seo-page .reveal-d2 { transition-delay: 0.2s; }
.is-auto-seo-page .reveal-d3 { transition-delay: 0.3s; }
.is-auto-seo-page .reveal-d4 { transition-delay: 0.4s; }

/* =================================================================
   SHARED SECTION LABELS
================================================================== */

.is-auto-seo-page .eyebrow {
	display: inline-block;
	font-family: var(--ff-head);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--fire);
	margin-bottom: 12px;
}

.is-auto-seo-page .eyebrow-light {
	color: rgba(240, 98, 12, 0.85);
}

.is-auto-seo-page .h2 {
	font-family: var(--ff-head);
	font-size: clamp(1.75rem, 3.2vw, 2.5rem);
	font-weight: 800;
	color: var(--ink);
	line-height: 1.18;
	letter-spacing: -0.02em;
	margin: 0 0 16px;
}

.is-auto-seo-page .h2-white {
	color: var(--chalk);
}

/* =================================================================
   HERO ENTRY ANIMATIONS
================================================================== */

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

@keyframes seoAutoPageFadeIn {
	from { opacity: 0; }
	to   { opacity: 1; }
}

@keyframes seoAutoPipeSlide {
	from { opacity: 0; transform: translateX(-16px); }
	to   { opacity: 1; transform: translateX(0); }
}

.is-auto-seo-page .hero-pill    { animation: seoAutoPageFadeIn  0.5s var(--ease) 0.10s both; }
.is-auto-seo-page .hero-h1      { animation: seoAutoPageFadeUp  0.6s var(--ease) 0.20s both; }
.is-auto-seo-page .hero-sub     { animation: seoAutoPageFadeUp  0.6s var(--ease) 0.35s both; }
.is-auto-seo-page .hero-actions { animation: seoAutoPageFadeUp  0.6s var(--ease) 0.48s both; }
.is-auto-seo-page .hero-stats   { animation: seoAutoPageFadeUp  0.6s var(--ease) 0.60s both; }
.is-auto-seo-page .hero-right   { animation: seoAutoPageFadeIn  0.8s var(--ease) 0.50s both; }

/* =================================================================
   HERO SECTION
================================================================== */

.is-auto-seo-page #hero {
	background: var(--ink);
	position: relative;
	overflow: hidden;
	padding: clamp(80px, 10vw, 128px) 0 0;
}

/* Glow orbs */
.is-auto-seo-page .hero-glow,
.is-auto-seo-page .hero-glow2 {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
}

.is-auto-seo-page .hero-glow {
	width: 560px;
	height: 560px;
	top: -180px;
	left: -120px;
	background: radial-gradient(circle, rgba(240, 98, 12, 0.18) 0%, transparent 70%);
}

.is-auto-seo-page .hero-glow2 {
	width: 420px;
	height: 420px;
	bottom: 40px;
	right: -80px;
	background: radial-gradient(circle, rgba(240, 98, 12, 0.10) 0%, transparent 70%);
}

/* Hero inner layout */
.is-auto-seo-page .hero-body {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: center;
}

/* ---- Left column ---- */
.is-auto-seo-page .hero-left {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Pill badge */
.is-auto-seo-page .hero-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 7px 14px;
	border-radius: 99px;
	background: rgba(240, 98, 12, 0.12);
	border: 1px solid rgba(240, 98, 12, 0.3);
	color: var(--fire);
	font-family: var(--ff-head);
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	width: fit-content;
}

.is-auto-seo-page .pill-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fire);
	animation: pulse 2s infinite;
	flex-shrink: 0;
}

/* H1 */
.is-auto-seo-page .hero-h1 {
	font-family: var(--ff-head);
	font-size: clamp(2.1rem, 4.5vw, 3.4rem);
	font-weight: 800;
	line-height: 1.13;
	letter-spacing: -0.025em;
	margin: 0;
}

/* Subtext */
.is-auto-seo-page .hero-sub {
	font-family: var(--ff-body);
	font-size: clamp(1rem, 1.3vw, 1.125rem);
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.7;
	margin: 0;
	max-width: 520px;
}

/* Button row */
.is-auto-seo-page .hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

/* Fire button */
.is-auto-seo-page .btn-fire {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	background: var(--fire);
	color: var(--chalk);
	border: 2px solid var(--fire);
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.22s var(--ease), transform 0.18s var(--ease), box-shadow 0.22s var(--ease);
	box-shadow: 0 4px 20px rgba(240, 98, 12, 0.38);
}

.is-auto-seo-page .btn-fire:hover,
.is-auto-seo-page .btn-fire:focus-visible {
	background: var(--fire2);
	border-color: var(--fire2);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(240, 98, 12, 0.48);
}

/* Stats row */
.is-auto-seo-page .hero-stats {
	display: flex;
	gap: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 24px;
	width: fit-content;
}

.is-auto-seo-page .hero-stat {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding-right: 28px;
	margin-right: 28px;
	border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.is-auto-seo-page .hero-stat:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.is-auto-seo-page .hero-stat strong {
	font-family: var(--ff-head);
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--chalk);
	line-height: 1;
}

.is-auto-seo-page .hero-stat strong sup {
	font-size: 0.9rem;
	font-weight: 700;
}

.is-auto-seo-page .hero-stat span {
	font-family: var(--ff-body);
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.5);
}

/* Right column */
.is-auto-seo-page .hero-right {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

/* =================================================================
   SEO AUTO PANEL — vertical pipeline mockup
================================================================== */

.seo-auto-panel {
	background: #111827;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 32px 70px rgba(0, 0, 0, 0.55);
	width: 100%;
	max-width: 400px;
}

/* Panel header */
.seo-auto-panel-header {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 18px;
	background: rgba(255, 255, 255, 0.04);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.seo-auto-tl-dots {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}

.tl-dot {
	width: 11px;
	height: 11px;
	border-radius: 50%;
	flex-shrink: 0;
}

.tl-red    { background: #ff5f57; }
.tl-yellow { background: #febc2e; }
.tl-green  { background: #28c840; }

.seo-auto-panel-title {
	flex: 1;
	font-family: var(--ff-head);
	font-size: 0.8rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.55);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

/* Live pulsing green dot */
@keyframes seoLiveDotPulse {
	0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
	70%  { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
	100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.seo-auto-live-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #22c55e;
	flex-shrink: 0;
	animation: seoLiveDotPulse 2s ease-in-out infinite;
}

/* Pipeline body */
.seo-auto-pipeline-body {
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 0;
}

/* Individual pipeline step */
.seo-pipe-step {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 14px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: var(--r1);
	position: relative;
	animation: seoAutoPipeSlide 0.4s var(--ease) both;
}

.seo-pipe-step-1 { animation-delay: 0.58s; }
.seo-pipe-step-2 { animation-delay: 0.72s; }
.seo-pipe-step-3 { animation-delay: 0.86s; }
.seo-pipe-step-4 { animation-delay: 1.00s; }
.seo-pipe-step-5 { animation-delay: 1.14s; }

/* Step icon box */
.seo-pipe-step-icon {
	width: 30px;
	height: 30px;
	border-radius: 7px;
	background: rgba(240, 98, 12, 0.12);
	border: 1px solid rgba(240, 98, 12, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fire);
	flex-shrink: 0;
}

.seo-pipe-step-icon--email {
	background: rgba(34, 197, 94, 0.1);
	border-color: rgba(34, 197, 94, 0.25);
	color: #22c55e;
}

/* Step text */
.seo-pipe-step-body {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.seo-pipe-step-label {
	font-family: var(--ff-head);
	font-size: 0.8rem;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.2;
}

.seo-pipe-step-meta {
	font-family: var(--ff-body);
	font-size: 0.7rem;
	color: rgba(255, 255, 255, 0.38);
}

/* Automated badge on last step */
.seo-pipe-done-badge {
	font-family: var(--ff-head);
	font-size: 0.65rem;
	font-weight: 700;
	color: #22c55e;
	background: rgba(34, 197, 94, 0.12);
	border: 1px solid rgba(34, 197, 94, 0.28);
	border-radius: 99px;
	padding: 3px 9px;
	flex-shrink: 0;
	white-space: nowrap;
}

/* Fire-coloured down arrow between steps */
.seo-pipe-arrow {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 16px;
	color: var(--fire);
	opacity: 0.7;
	flex-shrink: 0;
}

/* Panel footer */
.seo-auto-panel-footer {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
	display: flex;
	justify-content: center;
	animation: seoAutoPipeSlide 0.4s var(--ease) 1.28s both;
}

.seo-auto-next-run {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 14px;
	background: rgba(240, 98, 12, 0.1);
	border: 1px solid rgba(240, 98, 12, 0.22);
	border-radius: 99px;
	font-family: var(--ff-body);
	font-size: 0.7rem;
	color: rgba(240, 98, 12, 0.85);
	font-weight: 600;
}

/* =================================================================
   TICKER
================================================================== */

.is-auto-seo-page .hero-ticker {
	margin-top: clamp(48px, 6vw, 72px);
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
	padding: 13px 0;
	position: relative;
	z-index: 1;
}

.is-auto-seo-page .ticker-track {
	display: flex;
	gap: 0;
	white-space: nowrap;
	animation: tickerRun 32s linear infinite;
}

.is-auto-seo-page .ticker-track span {
	font-family: var(--ff-head);
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.04em;
	padding-right: 40px;
}

.is-auto-seo-page .ticker-track .sp {
	color: var(--fire);
	padding-right: 40px;
}

/* =================================================================
   WHAT GETS AUTOMATED — 2-col 8-item grid
================================================================== */

.seo-tasks-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.seo-task-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 24px 22px;
	background: var(--chalk);
	border: 1px solid var(--line);
	border-radius: var(--r2);
	transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.seo-task-item:hover {
	box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
	border-color: var(--line2);
	transform: translateY(-2px);
}

.seo-task-check {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(240, 98, 12, 0.1);
	border: 1px solid rgba(240, 98, 12, 0.22);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fire);
	flex-shrink: 0;
	margin-top: 2px;
}

.seo-task-body {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.seo-task-body h3 {
	font-family: var(--ff-head);
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}

.seo-task-body p {
	font-family: var(--ff-body);
	font-size: 0.9rem;
	color: var(--text2);
	line-height: 1.6;
	margin: 0;
}

/* =================================================================
   ADSENSE WRAP
================================================================== */

.seo-auto-adsense-wrap {
	padding: 24px 0;
	background: var(--chalk);
}

/* =================================================================
   TOOLS — flex chip row (dark section)
================================================================== */

.seo-auto-tools-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
}

.seo-auto-tool-chip {
	display: inline-flex;
	align-items: center;
	padding: 9px 20px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 99px;
	font-family: var(--ff-head);
	font-size: 0.875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.78);
	transition: border-color 0.22s var(--ease), background 0.22s var(--ease), color 0.22s var(--ease), transform 0.18s var(--ease);
}

.seo-auto-tool-chip:hover {
	border-color: var(--fire);
	color: var(--fire);
	background: rgba(240, 98, 12, 0.1);
	transform: translateY(-2px);
}

/* =================================================================
   PROCESS — 4-step horizontal
================================================================== */

.seo-auto-process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	position: relative;
}

/* Connecting line */
.seo-auto-process-steps::before {
	content: '';
	position: absolute;
	top: 28px;
	left: calc(12.5% + 20px);
	right: calc(12.5% + 20px);
	height: 2px;
	background: linear-gradient(90deg, var(--fire) 0%, rgba(240, 98, 12, 0.2) 100%);
	z-index: 0;
}

.seo-auto-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 16px;
	padding: 0 16px;
	position: relative;
	z-index: 1;
}

.seo-auto-step-num {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--mist);
	border: 3px solid var(--fire);
	color: var(--fire);
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	box-shadow: 0 0 0 6px var(--mist);
}

.seo-auto-step-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.seo-auto-step-body h3 {
	font-family: var(--ff-head);
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}

.seo-auto-step-body p {
	font-family: var(--ff-body);
	font-size: 0.875rem;
	color: var(--text2);
	line-height: 1.6;
	margin: 0;
}

/* =================================================================
   USE CASES — 3-col cards
================================================================== */

.seo-usecase-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.seo-usecase-card {
	background: var(--chalk);
	border: 1px solid var(--line);
	border-radius: var(--r3);
	padding: 36px 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	overflow: hidden;
	transition: box-shadow 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.seo-usecase-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--fire);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--ease);
}

.seo-usecase-card:hover {
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	border-color: var(--line2);
	transform: translateY(-4px);
}

.seo-usecase-card:hover::after {
	transform: scaleX(1);
}

.seo-usecase-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--r2);
	background: rgba(240, 98, 12, 0.08);
	border: 1px solid rgba(240, 98, 12, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--fire);
	flex-shrink: 0;
}

.seo-usecase-card h3 {
	font-family: var(--ff-head);
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--ink);
	margin: 0;
	line-height: 1.3;
}

.seo-usecase-card p {
	font-family: var(--ff-body);
	font-size: 0.9375rem;
	color: var(--text2);
	line-height: 1.65;
	margin: 0;
}

/* =================================================================
   FAQ
================================================================== */

.seo-auto-faq-list {
	display: flex;
	flex-direction: column;
	gap: 0;
}

.seo-auto-faq-item {
	border-bottom: 1px solid var(--line);
}

.seo-auto-faq-item:first-child {
	border-top: 1px solid var(--line);
}

.seo-auto-faq-q {
	width: 100%;
	background: none;
	border: none;
	padding: 20px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	text-align: left;
}

.seo-auto-faq-q span {
	font-family: var(--ff-head);
	font-size: 1rem;
	font-weight: 600;
	color: var(--ink);
	line-height: 1.4;
}

.seo-auto-faq-icon {
	color: var(--text2);
	flex-shrink: 0;
	transition: transform 0.28s var(--ease), color 0.22s var(--ease);
}

.seo-auto-faq-item.is-open .seo-auto-faq-icon {
	transform: rotate(-180deg);
	color: var(--fire);
}

.seo-auto-faq-item.is-open .seo-auto-faq-q span {
	color: var(--fire);
}

.seo-auto-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.38s var(--ease);
}

.seo-auto-faq-a p {
	font-family: var(--ff-body);
	font-size: 0.9375rem;
	color: var(--text2);
	line-height: 1.7;
	padding-bottom: 20px;
	margin: 0;
}

/* =================================================================
   FINAL CTA — fire background
================================================================== */

.seo-auto-cta-fire {
	background: var(--fire);
	position: relative;
	overflow: hidden;
}

.seo-auto-cta-fire::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0,0,0,0.12) 0%, transparent 60%);
	pointer-events: none;
}

.seo-auto-cta-fire .h2 {
	color: var(--chalk);
	margin-bottom: 16px;
}

.seo-auto-cta-sub {
	font-family: var(--ff-body);
	font-size: clamp(1rem, 1.3vw, 1.125rem);
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 36px;
	line-height: 1.65;
}

.seo-auto-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	align-items: center;
}

.seo-auto-cta-btn-white {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 15px 30px;
	background: var(--chalk);
	color: var(--fire);
	border-radius: var(--r2);
	font-family: var(--ff-head);
	font-size: 1rem;
	font-weight: 800;
	text-decoration: none;
	transition: background 0.22s var(--ease), transform 0.18s var(--ease), box-shadow 0.22s var(--ease);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.seo-auto-cta-btn-white:hover,
.seo-auto-cta-btn-white:focus-visible {
	background: var(--mist);
	transform: translateY(-2px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.22);
	color: var(--fire);
}

/* =================================================================
   RESPONSIVE — 1024px
================================================================== */

@media (max-width: 1024px) {

	.seo-usecase-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

}

/* =================================================================
   RESPONSIVE — 960px
================================================================== */

@media (max-width: 960px) {

	.is-auto-seo-page .hero-body {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	.is-auto-seo-page .hero-right {
		display: flex;
		justify-content: center;
	}

	.seo-auto-panel {
		max-width: 460px;
	}

	.seo-tasks-grid {
		grid-template-columns: 1fr;
	}

	.seo-usecase-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.seo-auto-process-steps {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.seo-auto-process-steps::before {
		display: none;
	}

}

/* =================================================================
   RESPONSIVE — 768px
================================================================== */

@media (max-width: 768px) {

	.is-auto-seo-page .hero-h1 {
		font-size: clamp(1.8rem, 7vw, 2.4rem);
	}

	.is-auto-seo-page .hero-stats {
		flex-wrap: wrap;
		gap: 16px;
	}

	.is-auto-seo-page .hero-stat {
		border-right: none;
		padding-right: 0;
		margin-right: 0;
	}

	.seo-tasks-grid {
		grid-template-columns: 1fr;
	}

	.seo-usecase-grid {
		grid-template-columns: 1fr;
	}

	.seo-auto-process-steps {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.seo-auto-step {
		flex-direction: row;
		text-align: left;
		padding: 0;
	}

	.is-auto-seo-page .h1-underline {
		white-space: normal;
	}

}

/* =================================================================
   RESPONSIVE — 480px
================================================================== */

@media (max-width: 480px) {

	.seo-task-item {
		padding: 18px 16px;
	}

	.seo-usecase-card {
		padding: 26px 22px;
	}

}

/* =================================================================
   REDUCED MOTION
================================================================== */

@media (prefers-reduced-motion: reduce) {

	.is-auto-seo-page .reveal,
	.is-auto-seo-page .hero-pill,
	.is-auto-seo-page .hero-h1,
	.is-auto-seo-page .hero-sub,
	.is-auto-seo-page .hero-actions,
	.is-auto-seo-page .hero-stats,
	.is-auto-seo-page .hero-right {
		animation: none;
		opacity: 1;
		transform: none;
		transition: none;
	}

	.is-auto-seo-page .reveal.revealed {
		opacity: 1;
		transform: none;
	}

	.seo-pipe-step {
		animation: none;
		opacity: 1;
		transform: none;
	}

	.seo-auto-panel-footer {
		animation: none;
		opacity: 1;
	}

	.is-auto-seo-page .pill-dot {
		animation: none;
	}

	.seo-auto-live-dot {
		animation: none;
	}

	.is-auto-seo-page .ticker-track {
		animation: none;
	}

	.is-auto-seo-page .h1-underline::after {
		transition: none;
		width: 100%;
	}

	.seo-auto-faq-icon {
		transition: none;
	}

	.seo-auto-faq-a {
		transition: none;
	}

	.seo-task-item,
	.seo-usecase-card,
	.seo-auto-tool-chip,
	.seo-auto-cta-btn-white,
	.is-auto-seo-page .btn-fire,
	.btn-ghost {
		transition: none;
	}

}
