/* ==========================================================================
   SHOPtoCOOK homepage styles
   --------------------------------------------------------------------------
   Brand colors are defined once below. If you want a pixel-exact color match
   to the live Webflow site, open reference/webflow-original.css (pulled by the
   asset downloader) and copy the exact hex values into the variables here.
   ========================================================================== */

:root {
	/* ---- TUNE THESE TO YOUR EXACT BRAND HEX VALUES ---- */
	--stc-primary:        #e8472b;  /* SHOPtoCOOK red/orange (buttons, accents) */
	--stc-primary-dark:   #c5371f;  /* hover state */
	--stc-ink:            #1f2733;  /* primary text / dark sections */
	--stc-ink-soft:       #4a5460;  /* body text */
	--stc-muted:          #7b8694;  /* secondary text */
	--stc-line:           #e6e9ee;  /* hairlines / borders */
	--stc-bg:             #ffffff;
	--stc-bg-alt:         #f5f7fa;  /* alternating section background */
	--stc-bg-dark:        #1f2733;  /* dark "Get Started" band */
	--stc-on-dark:        #ffffff;

	/* Type */
	--stc-font-display: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--stc-font-body:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

	/* Rhythm */
	--stc-maxw: 1160px;
	--stc-gutter: 24px;
	--stc-radius: 14px;
	--stc-section-pad: 96px;
}

/* ---- Reset-ish ---- */
.stc-main *,
.stc-header *,
.stc-footer * { box-sizing: border-box; }

body {
	margin: 0;
	font-family: var(--stc-font-body);
	color: var(--stc-ink-soft);
	background: var(--stc-bg);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.stc-container {
	width: 100%;
	max-width: var(--stc-maxw);
	margin: 0 auto;
	padding-inline: var(--stc-gutter);
}

.stc-center { text-align: center; }

/* ---- Buttons ---- */
.stc-btn {
	display: inline-block;
	font-family: var(--stc-font-display);
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.01em;
	text-decoration: none;
	padding: 14px 30px;
	border-radius: 999px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, background-color .15s ease, color .15s ease;
}
.stc-btn:hover { transform: translateY(-2px); }
.stc-btn--primary { background: var(--stc-primary); color: #fff !important; }
.stc-btn--primary:hover { background: var(--stc-primary-dark); }
.stc-btn--light { background: #fff; color: var(--stc-ink); }
.stc-btn--light:hover { background: #f0f0f0; }
.stc-btn--lg { padding: 18px 40px; font-size: 1.05rem; }

.stc-link {
	display: inline-block;
	margin-top: 14px;
	font-family: var(--stc-font-display);
	font-weight: 600;
	color: var(--stc-primary);
	text-decoration: none;
}
.stc-link:hover { color: var(--stc-primary-dark); }

/* ---- Eyebrow + headings ---- */
.stc-eyebrow {
	font-family: var(--stc-font-display);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.8rem;
	color: var(--stc-primary);
	margin: 0 0 14px;
}
.stc-eyebrow--light { color: rgba(255,255,255,0.8); }

.stc-section__title {
	font-family: var(--stc-font-display);
	font-weight: 800;
	color: var(--stc-ink);
	font-size: clamp(1.8rem, 3.5vw, 2.6rem);
	line-height: 1.15;
	margin: 0 0 18px;
}
.stc-section__title--center { text-align: center; margin-inline: auto; max-width: 800px; }
.stc-section__title--light { color: var(--stc-on-dark); }
.stc-section__sub { font-size: 1.1rem; color: var(--stc-muted); max-width: 720px; margin: 0 auto 40px; }

.stc-section { padding-block: var(--stc-section-pad); }

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.stc-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255,255,255,0.96);
	backdrop-filter: saturate(180%) blur(8px);
	border-bottom: 1px solid var(--stc-line);
}
.stc-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 24px;
}
.stc-header__brand img { display: block; height: 100px; width: auto; }

.stc-nav__list {
	display: flex;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.stc-nav__link {
	display: inline-block;
	font-family: var(--stc-font-display);
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--stc-ink) !important;
	text-decoration: none;
	padding: 10px 16px;
	background: none;
	border: 0;
	cursor: pointer;
}
.stc-nav__link:hover { color: var(--stc-primary); }
.stc-nav__item--cta { margin-left: 8px; }
.stc-nav__item--cta .stc-btn { padding: 11px 24px; }

/* Dropdown */
.stc-has-dropdown { position: relative; }
.stc-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: 12px;
	box-shadow: 0 18px 40px rgba(31,39,51,0.12);
	padding: 8px;
	margin: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.stc-has-dropdown:hover .stc-dropdown,
.stc-has-dropdown:focus-within .stc-dropdown,
.stc-dropdown.is-open {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.stc-dropdown a {
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
	color: var(--stc-ink);
	text-decoration: none;
	font-weight: 500;
}
.stc-dropdown a:hover { background: var(--stc-bg-alt); color: var(--stc-primary); }

/* Mobile toggle */
.stc-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	width: 44px;
	height: 44px;
	align-items: center;
	justify-content: center;
	background: none;
	border: 0;
	cursor: pointer;
}
.stc-nav-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--stc-ink);
	transition: transform .2s ease, opacity .2s ease;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.stc-hero {
	background:
		radial-gradient(1200px 600px at 80% -10%, rgba(232,71,43,0.10), transparent 60%),
		linear-gradient(180deg, var(--stc-bg) 0%, var(--stc-bg-alt) 100%);
	padding-block: 110px 96px;
	text-align: center;
	position: relative;
}
.bg{
	background:
		url('../../images/kiosk-2.png') left center / contain no-repeat,
		url('../../images/phone-2.png') right center / contain no-repeat;
	    position: absolute;
		width: 100%;
		top: 0;
		bottom: 0;
		max-width: 1500px;
		left: 50%;
		transform: translate(-50%, 0);
}
.bg.devices{
	background:
		url('../../images/devices.png') center center / contain no-repeat;
	opacity: 10%;
}
.bg.computer{
	background:
		url('../../images/computer.png') center center / contain no-repeat;
	opacity: 10%;
}
.stc-hero__inner { max-width: 880px; margin: 0 auto; position: relative;}
.stc-hero__title {
	font-family: var(--stc-font-display);
	font-weight: 800;
	color: var(--stc-ink);
	font-size: clamp(2.2rem, 5vw, 3.6rem);
	line-height: 1.08;
	letter-spacing: -0.01em;
	margin: 0 0 22px;
}
.stc-hero__subtitle {
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	color: var(--stc-ink-soft);
	margin: 0 auto 36px;
	max-width: 640px;
}

/* ==========================================================================
   INTRO
   ========================================================================== */
.stc-intro { background: var(--stc-bg); text-align: center; }
.stc-intro__inner { max-width: 820px; margin: 0 auto; }
.stc-intro__lead { font-size: 1.15rem; color: var(--stc-ink-soft); margin: 0 auto; max-width: 700px; }

/* ==========================================================================
   PAIN POINTS
   ========================================================================== */
.stc-pain { background: var(--stc-bg-alt); }
.stc-pain__list {
	list-style: none;
	margin: 40px auto 36px;
	padding: 0;
	max-width: 640px;
}
.stc-pain__list li {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 22px;
	margin-bottom: 14px;
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: 12px;
	font-size: 1.05rem;
	color: var(--stc-ink);
	font-weight: 500;
}
.stc-pain__list img { flex: 0 0 auto; }

/* ==========================================================================
   FEATURES
   ========================================================================== */
.stc-features__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.stc-feature {
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	padding: 34px 26px;
	text-align: center;
	transition: transform .2s ease, box-shadow .2s ease;
}
.stc-feature:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(31,39,51,0.08); }
.stc-feature__icon { width: 64px; height: 64px; object-fit: contain; margin-bottom: 18px; }
.stc-feature__title {
	font-family: var(--stc-font-display);
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--stc-ink);
	margin: 0 0 12px;
}
.stc-feature p { font-size: 0.98rem; margin: 0; }

/* ==========================================================================
   3-STEP CYCLE
   ========================================================================== */
.stc-cycle { background: var(--stc-bg-alt); }
.stc-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
	margin-top: 20px;
}
.stc-step {
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	padding: 36px 30px;
	position: relative;
}
.stc-step__num {
	font-family: var(--stc-font-display);
	font-weight: 800;
	font-size: 2.4rem;
	color: rgba(232,71,43,0.18);
	line-height: 1;
}
.stc-step__title {
	font-family: var(--stc-font-display);
	font-weight: 700;
	font-size: 1.35rem;
	color: var(--stc-primary);
	margin: 8px 0 10px;
}
.stc-step__lead {
	font-family: var(--stc-font-display);
	font-weight: 600;
	font-size: 1.05rem;
	color: var(--stc-ink);
	margin: 0 0 14px;
}
.stc-step p { margin: 0 0 14px; }
.stc-step__points { margin: 0; padding-left: 20px; }
.stc-step__points li { margin-bottom: 8px; }

/* ==========================================================================
   GET STARTED (dark band)
   ========================================================================== */
.stc-getstarted {
	background:
		radial-gradient(900px 500px at 15% 0%, rgba(232,71,43,0.25), transparent 55%),
		var(--stc-bg-dark);
	color: var(--stc-on-dark);
	text-align: center;
}
.stc-getstarted__inner { max-width: 760px; margin: 0 auto; }
.stc-getstarted__lead { font-size: 1.2rem; color: rgba(255,255,255,0.9); margin: 0 0 28px; }
.stc-getstarted__list {
	list-style: none;
	margin: 0 auto 34px;
	padding: 0;
	max-width: 560px;
	text-align: left;
	display: inline-block;
}
.stc-getstarted__list li {
	position: relative;
	padding: 10px 0 10px 34px;
	color: rgba(255,255,255,0.92);
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.stc-getstarted__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--stc-primary);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.stc-testimonials { background: var(--stc-bg); }
.stc-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin-top: 24px;
}
.stc-quote {
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	padding: 30px;
	box-shadow: 0 10px 30px rgba(31,39,51,0.05);
	display: flex;
	flex-direction: column;
}
.stc-quote__media { margin-bottom: 18px; }
.stc-quote__media img {
	max-height: 60px;
	width: auto;
	object-fit: contain;
}
.stc-quote__stars { display: flex; gap: 4px; margin-bottom: 16px; }
.stc-quote__text {
	margin: 0 0 20px;
	font-size: 1.02rem;
	color: var(--stc-ink-soft);
	font-style: normal;
	border: 0;
	padding: 0;
}
.stc-quote__cite { margin-top: auto; line-height: 1.45; }
.stc-quote__cite strong { display: block; color: var(--stc-ink); font-family: var(--stc-font-display); }
.stc-quote__cite span { display: block; font-size: 0.9rem; color: var(--stc-muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.stc-footer { background: var(--stc-bg-dark); color: rgba(255,255,255,0.82); padding-block: 64px 28px; }
.stc-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 36px;
	padding-bottom: 40px;
	border-bottom: 1px solid rgba(255,255,255,0.12);
}
.stc-footer__brand img { height: 40px; width: auto; margin-bottom: 16px; }
.stc-footer__tagline { max-width: 320px; font-size: 0.95rem; color: rgba(255,255,255,0.7); }
.stc-footer__col h4 {
	font-family: var(--stc-font-display);
	font-size: 1rem;
	color: #fff;
	margin: 0 0 16px;
}
.stc-footer__col h4 a { color: #fff; text-decoration: none; }
.stc-footer__col ul { list-style: none; margin: 0; padding: 0; }
.stc-footer__col li { margin-bottom: 10px; }
.stc-footer__col a { color: rgba(255,255,255,0.78); text-decoration: none; }
.stc-footer__col a:hover { color: var(--stc-primary); }
.stc-footer__legal {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding-top: 24px;
	font-size: 0.85rem;
}
.stc-footer__legal a { color: rgba(255,255,255,0.7); }
.stc-footer__legal a:hover { color: #fff; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
	.stc-features__grid { grid-template-columns: repeat(2, 1fr); }
	.stc-steps { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
	:root { --stc-section-pad: 64px; }

	.stc-nav-toggle { display: flex; }
	.stc-nav {
		position: fixed;
		inset: 100px 0 auto 0;
		background: #fff;
		border-bottom: 1px solid var(--stc-line);
		max-height: 0;
		overflow: hidden;
		transition: max-height .25s ease;
	}
	.stc-nav.is-open { max-height: 80vh; overflow-y: auto; }
	.stc-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px; }
	.stc-nav__item { width: 100%; }
	.stc-nav__link { width: 100%; text-align: left; }
	.stc-dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		padding-left: 12px;
		display: none;
	}
	.stc-dropdown.is-open { display: block; }
	.stc-nav__item--cta { margin: 8px 0 0; }
	.stc-nav__item--cta .stc-btn { display: block; text-align: center; }

	.stc-testimonials__grid { grid-template-columns: 1fr; }
	.stc-footer__grid { grid-template-columns: 1fr 1fr; }
	.stc-footer__legal { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
	.stc-features__grid { grid-template-columns: 1fr; }
	.stc-footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	* { transition: none !important; scroll-behavior: auto !important; }
}

/* ==========================================================================
   INNER PAGES
   ========================================================================== */

.stc-bg-alt { background: var(--stc-bg-alt); }

/* Inner-page hero */
.stc-page-hero {
	background:
		radial-gradient(1780px 620px at 80% -20%, rgb(53 232 43 / 74%), #0fa948b0 60%), linear-gradient(180deg, #5c947e 0%, var(--stc-bg-alt) 100%);
	padding-block: 96px 72px;
	text-align: center;
	position: relative;
}
.stc-page-hero__inner { max-width: 880px; margin: 0 auto; position: relative;}
.stc-page-hero__title {
	font-family: var(--stc-font-display);
	font-weight: 800;
	color: var(--stc-on-dark);
	font-size: clamp(2rem, 4.5vw, 3.1rem);
	line-height: 1.1;
	margin: 0 0 16px;
}
.stc-page-hero__subtitle { font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--stc-line); margin: 0 auto; max-width: 620px; }
.stc-page-hero__badge { width: 84px; height: 84px; object-fit: contain; margin-bottom: 18px; }
.stc-page-hero__device { display: block; max-width: 760px; width: 100%; height: auto; margin: 36px auto 0; }

.stc-scroll-arrow { display: inline-block; margin-top: 32px; animation: stc-bob 1.8s ease-in-out infinite; }
.stc-scroll-arrow img { width: 40px; height: 40px; }
@keyframes stc-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

.stc-intro__inner--wide { max-width: 880px; text-align: left; }
.stc-intro__inner--wide p { margin: 0 0 16px; }

/* Icon row */
.stc-iconrow {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	text-align: center;
}
.stc-iconrow--3 { grid-template-columns: repeat(3, 1fr); }
.stc-iconrow__item img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 16px; }
.stc-iconrow__item p { margin: 0; color: var(--stc-ink-soft); }

/* Video placeholder */
.stc-video__frame {
	position: relative;
	max-width: 880px;
	margin: 28px auto 0;
	aspect-ratio: 16 / 9;
	background:
		url('../../images/610ab6a3edabd77ad287fa47_Screen Shot 2021-04-13 at 12.45.39 PM.png') center center / contain no-repeat;
	border-radius: var(--stc-radius);
	cursor: pointer;
	overflow: hidden;
}
.stc-video__play {
	position: absolute;
	inset: 0;
	margin: auto;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	background: var(--stc-primary);
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.stc-video__play::after {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 0; height: 0;
	border-style: solid;
	border-width: 16px 0 16px 26px;
	border-color: transparent transparent transparent #fff;
	transform: translateX(3px);
}
.stc-video__frame:focus-visible { outline: 3px solid var(--stc-primary); outline-offset: 3px; }
.stc-video__iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: var(--stc-radius); }

/* Two-column media block */
.stc-media__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.stc-media__img img { width: 100%; height: auto; border-radius: var(--stc-radius); display: block; }

/* Next-step block */
.stc-nextstep { background: var(--stc-bg-alt); }
.stc-nextstep__inner {
	max-width: 760px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	padding: 40px;
}
.stc-nextstep__inner .stc-btn { margin-top: 18px; }

/* Feature card left-aligned variants (in-store) */
.stc-feature--left { text-align: left; }
.stc-feature--left .stc-feature__icon { margin-left: 0; }
.stc-feature--wide { grid-column: 1 / -1; }
.stc-feature--wide .stc-step__points { margin-top: 8px; }

/* Service blocks (marketing services) */
.stc-serviceblock {
	display: grid;
	grid-template-columns: 120px 1fr;
	gap: 32px;
	align-items: start;
	padding: 36px 0;
	border-bottom: 1px solid var(--stc-line);
}
.stc-serviceblock:last-child { border-bottom: 0; }
.stc-serviceblock--reverse { grid-template-columns: 1fr 120px; }
.stc-serviceblock--reverse .stc-serviceblock__icon { order: 2; }
.stc-serviceblock__icon img { width: 96px; height: 96px; object-fit: contain; }
.stc-serviceblock__body .stc-section__title { font-size: clamp(1.5rem, 3vw, 2rem); }

/* ADSTA band */
.stc-adsta {
	background:
		radial-gradient(800px 400px at 85% 0%, rgba(232,71,43,0.22), transparent 55%),
		var(--stc-bg-dark);
	color: var(--stc-on-dark);
	text-align: center;
}
.stc-adsta__inner { max-width: 760px; margin: 0 auto; }
.stc-adsta__logo { max-width: 240px; height: auto; margin-bottom: 22px; }
.stc-adsta__lead { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin: 0 0 28px; }

/* Contact page */
.stc-contact__inner {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 56px;
	align-items: start;
}
.stc-contact__line { font-size: 1.1rem; margin: 0 0 8px; color: var(--stc-ink); }
.stc-contact__line a { color: var(--stc-primary); text-decoration: none; }
.stc-contact__blurb { margin-top: 18px; font-size: 1.05rem; color: var(--stc-ink-soft); }

.stc-form {
	background: #fff;
	border: 1px solid var(--stc-line);
	border-radius: var(--stc-radius);
	padding: 32px;
	box-shadow: 0 12px 30px rgba(31,39,51,0.06);
}
.stc-field { display: flex; flex-direction: column; gap: 6px; font-family: var(--stc-font-display); font-weight: 600; font-size: 0.85rem; color: var(--stc-ink); }
.stc-field--full { grid-column: 1 / -1; }
.stc-field input, .stc-field textarea {
	font-family: var(--stc-font-body);
	font-size: 1rem;
	font-weight: 400;
	color: var(--stc-ink);
	padding: 12px 14px;
	border: 1px solid var(--stc-line);
	border-radius: 10px;
	background: var(--stc-bg-alt);
}
.stc-field input:focus, .stc-field textarea:focus { outline: none; border-color: var(--stc-primary); background: #fff; }
.stc-form-note { padding: 14px 18px; border-radius: 10px; margin: 0 0 18px; font-weight: 600; }
.stc-form-note--ok { background: #e8f6ec; color: #1c7a3e; }
.stc-form-note--err { background: #fbe9e7; color: #b3261e; }

@media (max-width: 1024px) {
	.stc-iconrow { grid-template-columns: repeat(2, 1fr); }
	.bg {opacity: 10%;}
}
@media (max-width: 860px) {
	.stc-media__inner { grid-template-columns: 1fr; }
	.stc-iconrow--3 { grid-template-columns: 1fr; }
	.stc-serviceblock,
	.stc-serviceblock--reverse { grid-template-columns: 1fr; gap: 16px; }
	.stc-serviceblock--reverse .stc-serviceblock__icon { order: 0; }
	.stc-contact__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
	.stc-iconrow { grid-template-columns: 1fr; }
	.stc-form { grid-template-columns: 1fr; padding: 22px; }
	.bg{
	background:
		url('../../images/phone-2.png') center center / contain no-repeat;
	}
}
