/* =====================================================================
   Start-Tech — Main Stylesheet
   Luxury dark theme · orange accent · RTL
   ===================================================================== */

:root {
	--bg:        #0a0f1c;
	--bg-2:      #0c1322;
	--surface:   #111b2e;
	--surface-2: #16213a;
	--line:      rgba(255, 255, 255, .08);
	--line-2:    rgba(255, 255, 255, .14);

	--text:      #eef2fb;
	--muted:     #9aa6bd;
	--muted-2:   #6f7c95;

	--orange:    #ff7a1a;
	--orange-2:  #ff9d42;
	--orange-3:  #ffb968;
	--gold:      #f4c46a;

	--grad:      linear-gradient(135deg, #ff7a1a 0%, #ff9d42 55%, #ffc06a 100%);
	--grad-soft: linear-gradient(135deg, rgba(255,122,26,.16), rgba(255,157,66,.05));

	--radius:    18px;
	--radius-sm: 12px;
	--radius-lg: 28px;
	--shadow:    0 24px 60px -24px rgba(0, 0, 0, .7);
	--shadow-orange: 0 18px 50px -18px rgba(255, 122, 26, .5);

	--container: 1200px;
	--font:      "Heebo", "Assistant", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;

	--ease:      cubic-bezier(.22, 1, .36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
	margin: 0;
	font-family: var(--font);
	background: var(--bg);
	color: var(--text);
	line-height: 1.7;
	font-size: 17px;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -2;
	background:
		radial-gradient(900px 600px at 85% -5%, rgba(255, 122, 26, .12), transparent 60%),
		radial-gradient(800px 600px at 5% 10%, rgba(60, 90, 160, .12), transparent 55%),
		var(--bg);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { line-height: 1.18; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

.st-container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%); word-wrap: normal !important;
}
.st-skip-link { position: absolute; inset-inline-start: -999px; top: 0; z-index: 1000; }
.st-skip-link:focus {
	inset-inline-start: 12px; top: 12px; width: auto; height: auto;
	background: var(--orange); color: #111; padding: 10px 18px; border-radius: 8px;
	clip: auto; clip-path: none;
}

.st-grad {
	background: var(--grad);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

/* ---------- Buttons ---------- */
.st-btn {
	display: inline-flex; align-items: center; gap: 10px;
	font-family: inherit; font-weight: 700; font-size: 16px;
	padding: 13px 26px; border-radius: 100px; border: 1px solid transparent;
	cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
	white-space: nowrap; line-height: 1;
}
.st-btn .st-icon { width: 18px; height: 18px; }
.st-btn--lg { padding: 16px 32px; font-size: 17px; }
.st-btn--block { width: 100%; justify-content: center; }

.st-btn--primary { background: var(--grad); color: #1a1205; box-shadow: var(--shadow-orange); }
.st-btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 60px -16px rgba(255, 122, 26, .65); }

.st-btn--outline { border-color: var(--line-2); color: var(--text); background: rgba(255,255,255,.02); }
.st-btn--outline:hover { border-color: var(--orange); color: var(--orange-2); transform: translateY(-3px); }

.st-btn--ghost { background: transparent; color: var(--text); padding-inline: 14px; }
.st-btn--ghost:hover { color: var(--orange-2); }
.st-btn--primary .st-icon { transition: transform .35s var(--ease); }
.st-btn--primary:hover .st-icon { transform: translateX(-5px); }

/* ---------- Header ---------- */
.st-header {
	position: sticky; top: 0; z-index: 100;
	transition: background .4s, backdrop-filter .4s, border-color .4s, box-shadow .4s;
	border-bottom: 1px solid transparent;
}
.st-header.is-scrolled {
	background: rgba(10, 15, 28, .82);
	backdrop-filter: saturate(160%) blur(14px);
	-webkit-backdrop-filter: saturate(160%) blur(14px);
	border-bottom-color: var(--line);
	box-shadow: 0 10px 40px -20px rgba(0,0,0,.8);
}
.st-header__inner { display: flex; align-items: center; gap: 24px; height: 76px; }

.st-brand__text { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 21px; }
.st-brand__mark {
	display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
	background: var(--grad); color: #1a1205; font-weight: 900; font-size: 22px;
	box-shadow: var(--shadow-orange);
}
.custom-logo-link { display: inline-flex; }

.st-nav { margin-inline-start: auto; }
.st-nav__list { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.st-nav__list a {
	display: block; padding: 9px 16px; border-radius: 100px; color: var(--muted);
	font-weight: 600; font-size: 15.5px; transition: color .25s, background .25s;
}
.st-nav__list a:hover, .st-nav__list .current-menu-item > a { color: var(--text); background: rgba(255,255,255,.05); }

.st-header__actions { display: flex; align-items: center; gap: 10px; }
.st-header__phone span { font-size: 15px; }

.st-burger { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; border: 1px solid var(--line-2); border-radius: 12px; background: transparent; cursor: pointer; align-items: center; justify-content: center; }
.st-burger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.st-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.st-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.st-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav ---------- */
.st-mobile-nav {
	position: fixed; inset: 76px 0 auto 0; z-index: 95;
	background: rgba(10, 15, 28, .97); backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--line);
	padding: 18px 24px 28px; transform: translateY(-12px); opacity: 0; visibility: hidden;
	transition: opacity .3s, transform .3s, visibility .3s;
}
.st-mobile-nav.is-open { opacity: 1; transform: none; visibility: visible; }
.st-mobile-nav__list { list-style: none; margin: 0 0 16px; padding: 0; }
.st-mobile-nav__list a { display: block; padding: 14px 8px; font-size: 18px; font-weight: 600; border-bottom: 1px solid var(--line); }

/* ---------- Hero ---------- */
.st-hero { position: relative; padding: 70px 0 90px; overflow: hidden; }
.st-hero__bg { position: absolute; inset: 0; z-index: -1; }
.st-orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.st-orb--1 { width: 480px; height: 480px; top: -120px; inset-inline-start: -80px; background: radial-gradient(circle, rgba(255,122,26,.7), transparent 70%); animation: st-float 14s var(--ease) infinite; }
.st-orb--2 { width: 420px; height: 420px; bottom: -140px; inset-inline-end: -60px; background: radial-gradient(circle, rgba(90,120,220,.55), transparent 70%); animation: st-float 18s var(--ease) infinite reverse; }
.st-grid {
	position: absolute; inset: 0;
	background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
	background-size: 60px 60px;
	mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, #000 30%, transparent 75%);
	-webkit-mask-image: radial-gradient(ellipse 80% 60% at 60% 30%, #000 30%, transparent 75%);
	opacity: .6;
}

.st-hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }

.st-eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 14px; font-weight: 700; letter-spacing: .02em;
	color: var(--orange-2); text-transform: none;
	background: var(--grad-soft); border: 1px solid rgba(255,122,26,.25);
	padding: 7px 16px; border-radius: 100px; margin-bottom: 22px;
}
.st-eyebrow .st-icon { width: 16px; height: 16px; }

.st-hero__title { font-size: clamp(34px, 5.2vw, 62px); font-weight: 900; letter-spacing: -.02em; margin-bottom: 22px; }
.st-hero__subtitle { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 560px; margin-bottom: 32px; }

.st-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.st-hero__trust { display: flex; align-items: center; gap: 10px; color: var(--muted-2); font-size: 14.5px; }
.st-hero__trust .st-icon { width: 20px; height: 20px; color: var(--orange-2); flex: 0 0 auto; }

/* Hero visual */
.st-hero__visual { position: relative; min-height: 380px; }
.st-card-float {
	position: absolute; background: linear-gradient(160deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: var(--shadow);
	backdrop-filter: blur(6px);
}
.st-card-float--code { inset-inline-end: 0; top: 10px; width: 86%; padding: 18px 20px; }
.st-card-float__dots { display: flex; gap: 7px; margin-bottom: 14px; }
.st-card-float__dots span { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.st-card-float__dots span:first-child { background: #ff5f57; }
.st-card-float__dots span:nth-child(2) { background: #febc2e; }
.st-card-float__dots span:nth-child(3) { background: #28c840; }
.st-code { margin: 0; font-family: "SFMono-Regular", ui-monospace, Menlo, Consolas, monospace; font-size: 14px; line-height: 1.8; color: #cdd7ea; direction: ltr; text-align: left; white-space: pre-wrap; }
.st-tok { color: var(--orange-3); }

.st-card-float--badge,
.st-card-float--rating { display: flex; align-items: center; gap: 12px; padding: 14px 18px; }
.st-card-float--badge { inset-inline-start: -10px; bottom: 60px; animation: st-float 8s var(--ease) infinite; }
.st-card-float--rating { inset-inline-end: 30px; bottom: -6px; animation: st-float 10s var(--ease) infinite reverse; }
.st-card-float--badge .st-icon,
.st-card-float--rating .st-icon { width: 30px; height: 30px; color: var(--orange-2); }
.st-card-float--rating .st-icon { color: var(--gold); fill: var(--gold); }
.st-card-float strong { display: block; font-size: 16px; }
.st-card-float span { font-size: 13px; color: var(--muted); }

@keyframes st-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }

/* ---------- Stats ---------- */
.st-stats { padding: 10px 0 20px; }
.st-stats__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
	background: linear-gradient(160deg, var(--surface), var(--bg-2));
	border: 1px solid var(--line); border-radius: var(--radius-lg);
	padding: 36px 30px; box-shadow: var(--shadow);
}
.st-stat { text-align: center; }
.st-stat__num { display: block; font-size: clamp(32px, 4vw, 48px); font-weight: 900; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.st-stat__label { color: var(--muted); font-size: 15px; }

/* ---------- Sections ---------- */
.st-section { padding: 96px 0; position: relative; }
.st-section__head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.st-section__head .st-eyebrow { margin-inline: auto; }
.st-section__title { font-size: clamp(28px, 4vw, 44px); font-weight: 900; }
.st-section__lead { color: var(--muted); font-size: 18px; }

/* ---------- Services ---------- */
.st-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.st-service {
	position: relative; padding: 32px 28px; border-radius: var(--radius);
	background: linear-gradient(165deg, var(--surface), var(--bg-2));
	border: 1px solid var(--line); overflow: hidden;
	transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.st-service::before {
	content: ""; position: absolute; inset: 0; opacity: 0;
	background: var(--grad-soft); transition: opacity .4s;
}
.st-service:hover { transform: translateY(-6px); border-color: rgba(255,122,26,.4); box-shadow: var(--shadow); }
.st-service:hover::before { opacity: 1; }
.st-service > * { position: relative; }
.st-service__icon {
	display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px;
	background: var(--grad-soft); border: 1px solid rgba(255,122,26,.25); color: var(--orange-2);
	margin-bottom: 20px; transition: transform .4s var(--ease);
}
.st-service:hover .st-service__icon { transform: scale(1.08) rotate(-4deg); }
.st-service__icon .st-icon { width: 28px; height: 28px; }
.st-service__title { font-size: 21px; margin-bottom: 10px; }
.st-service__text { color: var(--muted); font-size: 15.5px; }
.st-service__text p { margin: 0; }

/* ---------- Process ---------- */
.st-process { background: linear-gradient(180deg, transparent, rgba(255,255,255,.015), transparent); }
.st-process__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.st-step {
	position: relative; padding: 34px 26px 30px; border-radius: var(--radius);
	background: var(--surface); border: 1px solid var(--line);
	transition: transform .4s var(--ease), border-color .4s;
}
.st-step:hover { transform: translateY(-6px); border-color: var(--line-2); }
.st-step__num {
	display: inline-block; font-size: 40px; font-weight: 900; line-height: 1;
	background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
	opacity: .9; margin-bottom: 14px;
}
.st-step__title { font-size: 20px; margin-bottom: 8px; }
.st-step__text { color: var(--muted); font-size: 15px; margin: 0; }

/* ---------- Projects ---------- */
.st-projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.st-project {
	border-radius: var(--radius); overflow: hidden; background: var(--surface);
	border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.st-project:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.st-project__media { aspect-ratio: 16 / 11; overflow: hidden; background: var(--bg-2); }
.st-project__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.st-project:hover .st-project__media img { transform: scale(1.06); }
.st-project__placeholder { display: grid; place-items: center; height: 100%; color: var(--muted-2); }
.st-project__placeholder .st-icon { width: 54px; height: 54px; }
.st-project__body { padding: 22px 24px 26px; }
.st-project__title { font-size: 20px; margin-bottom: 8px; }
.st-project__excerpt { color: var(--muted); font-size: 15px; }
.st-project__excerpt p { margin: 0; }

/* ---------- About ---------- */
.st-about__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.st-about__text { color: var(--muted); font-size: 18px; }
.st-about__list { list-style: none; margin: 26px 0 0; padding: 0; display: grid; gap: 14px; }
.st-about__list li { display: flex; align-items: flex-start; gap: 12px; font-weight: 500; }
.st-about__list .st-icon { width: 22px; height: 22px; color: var(--orange-2); flex: 0 0 auto; margin-top: 3px; }

.st-about__panel {
	position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius-lg);
	background: linear-gradient(160deg, var(--surface-2), var(--bg-2));
	border: 1px solid var(--line); overflow: hidden;
}
.st-orb--3 { width: 320px; height: 320px; top: 50%; inset-inline-start: 50%; transform: translate(-50%, -50%); background: radial-gradient(circle, rgba(255,122,26,.45), transparent 70%); }

/* About — central core + orbit rings */
.st-about__ring {
	position: absolute; top: 50%; inset-inline-start: 50%; transform: translate(-50%, -50%);
	border: 1px solid var(--line-2); border-radius: 50%; pointer-events: none;
}
.st-about__ring--1 { width: 56%; height: 56%; border-color: rgba(255,122,26,.28); }
.st-about__ring--2 { width: 76%; height: 76%; border-style: dashed; border-color: rgba(255,255,255,.1); animation: st-spin 28s linear infinite; }
.st-about__ring--3 { width: 94%; height: 94%; border-color: rgba(255,255,255,.05); }
@keyframes st-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }

.st-about__core {
	position: absolute; top: 50%; inset-inline-start: 50%; transform: translate(-50%, -50%);
	display: grid; place-items: center; gap: 6px; text-align: center;
	width: 132px; height: 132px; border-radius: 50%;
	background: radial-gradient(circle at 30% 25%, var(--surface-2), var(--bg-2));
	border: 1px solid var(--line-2); box-shadow: var(--shadow), inset 0 0 30px rgba(255,122,26,.12);
}
.st-about__core-mark {
	display: grid; place-items: center; width: 56px; height: 56px; border-radius: 16px;
	background: var(--grad); color: #1a1205; font-weight: 900; font-size: 30px;
	box-shadow: var(--shadow-orange);
}
.st-about__core-label { font-size: 13px; font-weight: 700; color: var(--muted); }

.st-about__chip {
	position: absolute; display: inline-flex; align-items: center; gap: 8px;
	padding: 11px 18px; border-radius: 100px; font-weight: 700; font-size: 15px;
	background: rgba(10,15,28,.7); border: 1px solid var(--line-2); backdrop-filter: blur(8px);
	box-shadow: var(--shadow);
}
.st-about__chip .st-icon { width: 18px; height: 18px; color: var(--orange-2); }
.st-about__chip--1 { top: 16%; inset-inline-start: 10%; animation: st-float 7s var(--ease) infinite; }
.st-about__chip--2 { top: 28%; inset-inline-end: 8%; animation: st-float 9s var(--ease) infinite reverse; }
.st-about__chip--3 { bottom: 26%; inset-inline-start: 8%; animation: st-float 8.5s var(--ease) infinite reverse; }
.st-about__chip--4 { bottom: 14%; inset-inline-end: 12%; animation: st-float 10s var(--ease) infinite; }

/* ---------- Testimonials ---------- */
.st-testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.st-testimonial {
	margin: 0; padding: 30px 28px; border-radius: var(--radius);
	background: linear-gradient(165deg, var(--surface), var(--bg-2)); border: 1px solid var(--line);
}
.st-testimonial__stars { display: flex; gap: 3px; margin-bottom: 16px; }
.st-testimonial__stars .st-icon { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }
.st-testimonial blockquote { margin: 0 0 18px; font-size: 16.5px; color: var(--text); }
.st-testimonial blockquote p { margin: 0; }
.st-testimonial figcaption strong { display: block; font-size: 16px; }
.st-testimonial figcaption span { color: var(--muted); font-size: 14px; }

/* ---------- Contact ---------- */
.st-contact { overflow: hidden; }
.st-contact__bg { position: absolute; inset: 0; z-index: -1; }
.st-orb--4 { width: 520px; height: 520px; top: -10%; inset-inline-end: -8%; background: radial-gradient(circle, rgba(255,122,26,.22), transparent 70%); filter: blur(80px); }
.st-contact__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.st-contact__text { color: var(--muted); font-size: 18px; }

.st-contact__channels { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 14px; }
.st-contact__channels a { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: var(--radius-sm); background: var(--surface); border: 1px solid var(--line); transition: transform .3s var(--ease), border-color .3s; }
.st-contact__channels a:hover { transform: translateX(-5px); border-color: rgba(255,122,26,.4); }
.st-contact__ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--grad-soft); color: var(--orange-2); flex: 0 0 auto; }
.st-contact__ic--wa { background: rgba(37,211,102,.12); color: #25d366; }
.st-contact__ic .st-icon { width: 24px; height: 24px; }
.st-contact__channels strong { display: block; font-size: 16px; }
.st-contact__channels span span,
.st-contact__channels a > span { font-size: 15px; color: var(--muted); }
.st-contact__channels a > span strong { color: var(--text); }

/* Form */
.st-form-wrap { position: relative; }
.st-form {
	background: linear-gradient(165deg, var(--surface-2), var(--surface));
	border: 1px solid var(--line-2); border-radius: var(--radius-lg);
	padding: 34px 32px; box-shadow: var(--shadow);
}
.st-form__title { font-size: 22px; margin-bottom: 22px; }
.st-field { margin-bottom: 16px; }
.st-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.st-field label { display: block; font-size: 14.5px; font-weight: 600; margin-bottom: 7px; color: var(--muted); }
.st-field input, .st-field select, .st-field textarea {
	width: 100%; font-family: inherit; font-size: 16px; color: var(--text);
	background: rgba(10,15,28,.6); border: 1px solid var(--line-2); border-radius: 12px;
	padding: 13px 16px; transition: border-color .25s, box-shadow .25s; resize: vertical;
}
.st-field input::placeholder, .st-field textarea::placeholder { color: var(--muted-2); }
.st-field input:focus, .st-field select:focus, .st-field textarea:focus {
	outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,122,26,.18);
}
.st-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%); background-position: left 18px center, left 13px center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.st-hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.st-form button { margin-top: 8px; }
.st-form__note { margin: 14px 0 0; font-size: 15px; min-height: 1px; text-align: center; }
.st-form__note.is-success { color: #34d399; }
.st-form__note.is-error { color: #f87171; }
.st-form.is-loading button { opacity: .7; pointer-events: none; }

/* ---------- Footer ---------- */
.st-footer { position: relative; padding: 72px 0 0; border-top: 1px solid var(--line); background: var(--bg-2); overflow: hidden; }
.st-footer__glow { position: absolute; top: -160px; inset-inline-start: 50%; transform: translateX(-50%); width: 700px; height: 300px; background: radial-gradient(circle, rgba(255,122,26,.16), transparent 70%); filter: blur(60px); }
.st-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; position: relative; padding-bottom: 50px; }
.st-footer__brand p { color: var(--muted); margin: 18px 0; max-width: 360px; }
.st-footer__contact { display: grid; gap: 10px; }
.st-footer__contact a { display: inline-flex; align-items: center; gap: 10px; color: var(--muted); transition: color .25s; width: fit-content; }
.st-footer__contact a:hover { color: var(--orange-2); }
.st-footer__contact .st-icon { width: 18px; height: 18px; color: var(--orange-2); }
.st-footer__col h4 { font-size: 16px; margin-bottom: 18px; color: var(--text); }
.st-footer__menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.st-footer__menu a { color: var(--muted); transition: color .25s; }
.st-footer__menu a:hover { color: var(--orange-2); }
.st-footer__col p { color: var(--muted); margin-bottom: 18px; }
.st-footer__bar { border-top: 1px solid var(--line); padding: 22px 0; }
.st-footer__bar .st-container { display: flex; justify-content: center; color: var(--muted-2); font-size: 14px; }

/* ---------- Floating buttons ---------- */
.st-float { position: fixed; inset-block-end: 22px; inset-inline-start: 22px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
.st-float__btn { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; box-shadow: 0 12px 30px -8px rgba(0,0,0,.6); transition: transform .3s var(--ease); }
.st-float__btn .st-icon { width: 28px; height: 28px; }
.st-float__btn:hover { transform: scale(1.1); }
.st-float__wa { background: #25d366; color: #fff; }
.st-float__wa::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: st-pulse 2.4s infinite; }
.st-float__wa { position: relative; }
.st-float__tel { background: var(--grad); color: #1a1205; }
@keyframes st-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- Reveal animation ---------- */
.st-reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.st-reveal.is-visible { opacity: 1; transform: none; }
.st-services__grid .st-reveal.is-visible,
.st-process__grid .st-reveal.is-visible,
.st-projects__grid .st-reveal.is-visible,
.st-testimonials__grid .st-reveal.is-visible { transition-delay: var(--st-delay, 0s); }

/* ---------- Generic content (blog/pages) ---------- */
.st-page { padding: 120px 0 90px; }
.st-page__header { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.st-page__title { font-size: clamp(30px, 4vw, 46px); }
.st-article { max-width: 800px; margin: 0 auto; }
.st-article a { color: var(--orange-2); text-decoration: underline; }
.st-article h2, .st-article h3 { margin-top: 1.6em; }
.st-article img { border-radius: var(--radius); margin: 1.4em 0; }
.st-posts__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--container); margin-inline: auto; }
.st-post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .4s var(--ease), border-color .4s; }
.st-post-card:hover { transform: translateY(-6px); border-color: var(--line-2); }
.st-post-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--bg-2); }
.st-post-card__media img { width: 100%; height: 100%; object-fit: cover; }
.st-post-card__body { padding: 22px 24px; }
.st-post-card__title { font-size: 20px; margin-bottom: 8px; }
.st-post-card__meta { color: var(--muted-2); font-size: 13px; margin-bottom: 10px; }
.st-post-card__excerpt { color: var(--muted); font-size: 15px; }

/* =====================================================================
   Inner pages — hero, projects archive, single project, blog
   ===================================================================== */

/* Page hero (shared) */
.st-hero--page { padding: 90px 0 60px; text-align: center; }
.st-hero--page__inner { max-width: 820px; margin-inline: auto; }
.st-hero--page .st-eyebrow { margin-inline: auto; }
.st-crumbs { display: flex; gap: 10px; justify-content: center; align-items: center; color: var(--muted-2); font-size: 14px; margin-bottom: 18px; }
.st-crumbs a { color: var(--muted); transition: color .25s; }
.st-crumbs a:hover { color: var(--orange-2); }

/* Filters */
.st-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.st-filter {
	font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer;
	color: var(--muted); background: var(--surface); border: 1px solid var(--line);
	padding: 10px 22px; border-radius: 100px; transition: color .25s, border-color .25s, background .25s, transform .25s;
}
.st-filter:hover { color: var(--text); transform: translateY(-2px); }
.st-filter.is-active { color: #1a1205; background: var(--grad); border-color: transparent; box-shadow: var(--shadow-orange); }

/* Project cards — archive */
.st-project__link { display: block; color: inherit; }
.st-projects__grid--archive .st-project { transition: transform .45s var(--ease), box-shadow .45s, border-color .45s, opacity .4s; }
.st-project.is-hidden { display: none; }
.st-project__media { position: relative; }
.st-project__view {
	position: absolute; inset-block-end: 14px; inset-inline-start: 14px; z-index: 2;
	display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700;
	color: #1a1205; background: var(--grad); padding: 9px 16px; border-radius: 100px;
	opacity: 0; transform: translateY(8px); transition: opacity .35s var(--ease), transform .35s var(--ease);
	box-shadow: var(--shadow-orange);
}
.st-project__view .st-icon { width: 16px; height: 16px; }
.st-project:hover .st-project__view { opacity: 1; transform: none; }
.st-project__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,12,22,.55), transparent 45%); opacity: 0; transition: opacity .4s; }
.st-project:hover .st-project__media::after { opacity: 1; }
.st-project__tag { display: inline-block; font-size: 12.5px; font-weight: 700; color: var(--orange-2); background: var(--grad-soft); border: 1px solid rgba(255,122,26,.25); padding: 4px 12px; border-radius: 100px; margin-bottom: 12px; }
.st-project__client { color: var(--muted-2); font-size: 14px; margin-bottom: 8px; }

/* Empty state */
.st-empty { text-align: center; max-width: 520px; margin: 30px auto; padding: 50px 30px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.st-empty__icon { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 20px; background: var(--grad-soft); color: var(--orange-2); }
.st-empty__icon .st-icon { width: 36px; height: 36px; }
.st-empty h2 { font-size: 26px; }
.st-empty p { color: var(--muted); margin-bottom: 24px; }

/* CTA band */
.st-cta-band__inner {
	display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
	background: linear-gradient(135deg, var(--surface-2), var(--bg-2));
	border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 44px 48px; box-shadow: var(--shadow);
}
.st-cta-band__inner h2 { margin-bottom: 6px; }
.st-cta-band__inner p { color: var(--muted); margin: 0; }
.st-cta-band__inner.has-image { gap: 40px; }
.st-cta-band__content { flex: 1 1 360px; }
.st-cta-band__content .st-btn { margin-top: 22px; }
.st-cta-band__media { flex: 0 0 320px; max-width: 360px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-2); box-shadow: var(--shadow); }
.st-cta-band__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Projects page — hero image + intro + gallery */
.st-hero--projects { position: relative; overflow: hidden; }
.st-hero--projects__media { position: absolute; inset: 0; z-index: -1; background-size: cover; background-position: center; opacity: .22; }
.st-hero--projects.has-image::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to bottom, rgba(10,15,28,.55), var(--bg) 92%); }

.st-projects-intro { padding-top: 40px; }
.st-projects-intro__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.st-projects-intro__text .st-section__title { font-size: clamp(24px, 3vw, 34px); }
.st-projects-intro__text p { color: var(--muted); font-size: 18px; margin: 0; }
.st-projects-intro__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.st-projects-intro__stat {
	text-align: center; padding: 26px 14px; border-radius: var(--radius);
	background: linear-gradient(165deg, var(--surface-2), var(--bg-2)); border: 1px solid var(--line);
}
.st-projects-intro__stat .st-stat__num {
	display: block; font-size: clamp(30px, 4vw, 42px); font-weight: 900; line-height: 1;
	background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.st-projects-intro__stat .st-stat__label { display: block; margin-top: 8px; color: var(--muted); font-size: 14px; font-weight: 600; }

.st-project-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 36px 0 0; }
.st-project-gallery__item { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.st-project-gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Single project */
.st-project-single__hero { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 50px; border: 1px solid var(--line); }
.st-project-single__hero img { width: 100%; display: block; }
.st-project-single__grid { display: grid; grid-template-columns: 1fr 340px; gap: 50px; align-items: start; }
.st-project-single__content { max-width: none; margin: 0; }
.st-meta-card { position: sticky; top: 100px; background: linear-gradient(165deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow); }
.st-meta-card h3 { font-size: 19px; margin-bottom: 18px; }
.st-meta-card dl { margin: 0 0 22px; display: grid; gap: 0; }
.st-meta-card dt { color: var(--muted-2); font-size: 13px; font-weight: 600; }
.st-meta-card dd { margin: 4px 0 16px; font-weight: 600; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.st-meta-card dd:last-of-type { border-bottom: 0; margin-bottom: 0; }
.st-meta-card .st-btn { margin-top: 10px; }
.st-project-single__more { margin-top: 80px; }

/* ---- Single project — redesigned ---- */
.st-hero--project-single { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; padding-bottom: 0; }
.st-hero--project-single .st-hero__bg { z-index: 0; }
.st-psingle__bg-media { position: absolute; inset: 0; z-index: 1; }
.st-psingle__bg-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-hero--project-single.has-media::after { content: ""; position: absolute; inset: 0; z-index: 2; background: linear-gradient(to top, rgba(10,15,28,.97) 20%, rgba(10,15,28,.65) 60%, rgba(10,15,28,.15) 100%); pointer-events: none; }
.st-psingle__hero-inner { position: relative; z-index: 3; width: 100%; padding-bottom: 60px; }
.st-psingle__hero-inner .st-crumbs { justify-content: flex-start; padding-top: 100px; }
.st-psingle__hero-content { margin-top: 22px; }
.st-psingle__role { display: inline-flex; align-items: center; font-size: 13px; font-weight: 700; color: var(--orange-2); background: rgba(255,122,26,.12); border: 1px solid rgba(255,122,26,.3); padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; }
.st-psingle__title { text-align: start !important; margin-inline: 0 !important; font-size: clamp(30px, 5vw, 60px); max-width: 860px; }
.st-psingle__tagline { font-size: 19px; color: var(--muted); margin: 10px 0 0; max-width: 580px; }

/* Overview bar */
.st-psingle__bar { background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%); border-bottom: 1px solid var(--line); position: relative; z-index: 4; }
.st-psingle__bar-inner { display: flex; align-items: stretch; flex-wrap: wrap; min-height: 68px; }
.st-psingle__bar-item { display: flex; flex-direction: column; justify-content: center; padding: 14px 28px; border-inline-end: 1px solid var(--line); flex: 0 0 auto; }
.st-psingle__bar-label { font-size: 11px; font-weight: 700; color: var(--muted-2); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 4px; }
.st-psingle__bar-value { font-size: 15px; font-weight: 700; color: var(--text); }
.st-psingle__bar-cta { margin-inline-start: auto; display: flex; align-items: center; padding: 0 28px; }

/* Main layout */
.st-psingle__grid { display: grid; grid-template-columns: 1fr 360px; gap: 60px; align-items: start; }
.st-psingle__text { font-size: 17px; line-height: 1.85; color: var(--muted); }
.st-psingle__text p { margin-bottom: 1.3em; }
.st-psingle__text p:last-child { margin-bottom: 0; }

/* Gallery */
.st-psingle__gallery { margin-top: 54px; }
.st-psingle__gallery-title { font-size: 22px; margin-bottom: 20px; color: var(--text); }
.st-psingle__gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.st-psingle__gallery-item { margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.st-psingle__gallery-item.is-featured { grid-column: 1 / -1; }
.st-psingle__gallery-item.is-featured img { width: 100%; display: block; aspect-ratio: 16/7; object-fit: cover; }
.st-psingle__gallery-item:not(.is-featured) { aspect-ratio: 4/3; }
.st-psingle__gallery-item:not(.is-featured) img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.st-psingle__gallery-item:hover img { transform: scale(1.05); }

/* Sidebar card */
.st-psingle__card { position: sticky; top: 90px; background: linear-gradient(165deg, var(--surface-2), var(--surface)); border: 1px solid var(--line-2); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.st-psingle__logo { padding: 28px 28px 0; }
.st-psingle__logo img { max-width: 130px; max-height: 60px; object-fit: contain; display: block; }
.st-psingle__client-name { font-size: 20px; font-weight: 800; padding: 14px 28px 0; color: var(--text); margin: 0; }
.st-psingle__client-tagline { font-size: 14px; color: var(--muted); padding: 6px 28px 0; margin: 0; }
.st-psingle__details { padding: 20px 28px; border-top: 1px solid var(--line); margin-top: 18px; display: grid; gap: 16px; }
.st-psingle__detail-row { display: flex; align-items: flex-start; gap: 14px; }
.st-psingle__detail-row .st-icon { width: 18px; height: 18px; color: var(--orange-2); flex: 0 0 18px; margin-top: 2px; }
.st-psingle__detail-row > div { display: flex; flex-direction: column; }
.st-psingle__detail-row span { font-size: 11px; font-weight: 700; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; }
.st-psingle__detail-row strong { font-size: 15px; color: var(--text); margin-top: 3px; font-weight: 700; }
.st-psingle__tech { padding: 16px 28px 20px; border-top: 1px solid var(--line); }
.st-psingle__tech-label { font-size: 11px; font-weight: 700; color: var(--muted-2); text-transform: uppercase; letter-spacing: .06em; display: block; margin-bottom: 12px; }
.st-psingle__tech-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.st-psingle__tech-tag { font-size: 12.5px; font-weight: 600; color: var(--orange-2); background: rgba(255,122,26,.1); border: 1px solid rgba(255,122,26,.22); padding: 4px 12px; border-radius: 100px; }
.st-psingle__card-cta { padding: 0 28px 28px; display: grid; gap: 10px; }
.st-psingle__card-cta .st-btn:first-child { margin-top: 4px; }

/* Related projects */
.st-psingle__more { padding-top: 0; }

/* Blog feature */
.st-blog .st-feature {
	display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; margin-bottom: 50px;
	background: linear-gradient(165deg, var(--surface), var(--bg-2)); border: 1px solid var(--line);
	border-radius: var(--radius-lg); overflow: hidden; transition: border-color .4s, box-shadow .4s;
}
.st-blog .st-feature:hover { border-color: var(--line-2); box-shadow: var(--shadow); }
.st-feature__media { position: relative; min-height: 320px; background: var(--bg-2); overflow: hidden; }
.st-feature__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.st-feature:hover .st-feature__media img { transform: scale(1.05); }
.st-feature__body { padding: 40px 42px; display: flex; flex-direction: column; justify-content: center; }
.st-feature__badge { display: inline-block; width: fit-content; font-size: 12.5px; font-weight: 700; color: #1a1205; background: var(--grad); padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }
.st-feature__title { font-size: clamp(24px, 3vw, 32px); margin-bottom: 14px; }
.st-feature__title a:hover { color: var(--orange-2); }
.st-feature__excerpt { color: var(--muted); margin-bottom: 24px; }
.st-feature .st-btn { width: fit-content; }

/* Post cards — extras */
.st-post-card__link { display: block; color: inherit; }
.st-post-card__media { position: relative; }
.st-post-card__cat { position: absolute; top: 14px; inset-inline-start: 14px; font-size: 12.5px; font-weight: 700; color: #1a1205; background: var(--grad); padding: 5px 13px; border-radius: 100px; z-index: 2; }
.st-post-card__media .st-project__placeholder { display: grid; place-items: center; height: 100%; color: var(--muted-2); }
.st-post-card__media .st-project__placeholder .st-icon { width: 48px; height: 48px; }
.st-post-card__more { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: 14.5px; color: var(--orange-2); }
.st-post-card__more .st-icon { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.st-post-card:hover .st-post-card__more .st-icon { transform: translateX(-5px); }

/* Single article extras */
.st-single__hero { max-width: 1000px; margin: 0 auto 44px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); }
.st-single__hero img { width: 100%; display: block; }
.st-article__byline { display: inline-flex; align-items: center; gap: 12px; margin-top: 26px; text-align: start; }
.st-article__avatar { border-radius: 50%; border: 2px solid var(--line-2); }
.st-article__byline strong { display: block; font-size: 15px; }
.st-article__byline small { color: var(--muted-2); font-size: 13px; }
.st-article__content { font-size: 18px; }
.st-article__content > * { margin-bottom: 1.1em; }
.st-article__content h2 { font-size: 28px; }
.st-article__content h3 { font-size: 22px; }
.st-article__content blockquote { margin: 1.6em 0; padding: 18px 26px; border-inline-start: 3px solid var(--orange); background: var(--surface); border-radius: 0 12px 12px 0; color: var(--text); font-size: 19px; }
.st-article__content ul, .st-article__content ol { padding-inline-start: 1.4em; }
.st-article__content li { margin-bottom: .5em; }
.st-article__content code { background: var(--surface); padding: 2px 7px; border-radius: 6px; font-size: .9em; direction: ltr; display: inline-block; }
.st-article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); }
.st-article__tags a { font-size: 14px; color: var(--muted); background: var(--surface); border: 1px solid var(--line); padding: 6px 14px; border-radius: 100px; text-decoration: none; transition: color .25s, border-color .25s; }
.st-article__tags a:hover { color: var(--orange-2); border-color: rgba(255,122,26,.4); }
.st-article__share { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.st-article__share span { color: var(--muted); font-size: 14px; font-weight: 600; }
.st-article__share a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line-2); color: var(--text); font-weight: 800; text-decoration: none; transition: transform .3s var(--ease), border-color .3s, color .3s; }
.st-article__share a:hover { transform: translateY(-3px); border-color: var(--orange); color: var(--orange-2); }
.st-article__share .st-icon { width: 20px; height: 20px; }
.st-single__related { margin-top: 80px; }

/* Pagination */
.st-pagination { margin-top: 50px; }
.st-pagination .nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }
.st-pagination .page-numbers { display: grid; place-items: center; min-width: 44px; height: 44px; padding: 0 12px; border-radius: 12px; background: var(--surface); border: 1px solid var(--line); color: var(--muted); font-weight: 600; text-decoration: none; transition: color .25s, border-color .25s, background .25s; }
.st-pagination .page-numbers:hover { color: var(--text); border-color: var(--line-2); }
.st-pagination .page-numbers.current { color: #1a1205; background: var(--grad); border-color: transparent; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
	.st-nav, .st-header__phone { display: none; }
	.st-burger { display: flex; }
	.st-hero__inner { grid-template-columns: 1fr; gap: 40px; }
	.st-hero__visual { min-height: 320px; order: 2; }
	.st-about__inner, .st-contact__inner { grid-template-columns: 1fr; gap: 36px; }
	.st-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
	.st-services__grid, .st-process__grid, .st-projects__grid, .st-testimonials__grid, .st-posts__grid { grid-template-columns: repeat(2, 1fr); }
	.st-footer__grid { grid-template-columns: 1fr 1fr; }
	.st-project-single__grid { grid-template-columns: 1fr; gap: 36px; }
	.st-meta-card { position: static; }
	.st-psingle__grid { grid-template-columns: 1fr; gap: 36px; }
	.st-psingle__card { position: static; }
	.st-hero--project-single { min-height: 380px; }
	.st-psingle__bar-item { padding: 12px 18px; }
	.st-psingle__bar-cta { padding: 0 18px; }
	.st-blog .st-feature { grid-template-columns: 1fr; }
	.st-feature__media { min-height: 240px; }
	.st-cta-band__inner { flex-direction: column; text-align: center; align-items: stretch; }
	.st-cta-band__media { flex-basis: auto; max-width: none; }
	.st-projects-intro__inner { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 620px) {
	body { font-size: 16px; }
	.st-section { padding: 72px 0; }
	.st-header__inner { height: 66px; }
	.st-mobile-nav { inset-block-start: 66px; }
	.st-services__grid, .st-process__grid, .st-projects__grid, .st-testimonials__grid, .st-posts__grid, .st-field-row { grid-template-columns: 1fr; }
	.st-footer__grid { grid-template-columns: 1fr; gap: 30px; }
	.st-stats__grid { padding: 28px 18px; }
	.st-hero { padding: 40px 0 70px; }
	.st-feature__body { padding: 28px 24px; }
	.st-cta-band__inner { padding: 32px 26px; }
	.st-project-gallery { grid-template-columns: 1fr; }
	.st-psingle__bar-item { flex: 1 1 calc(50% - 1px); border-bottom: 1px solid var(--line); }
	.st-psingle__bar-cta { flex: 1 1 100%; padding: 12px 18px; border-top: 1px solid var(--line); }
	.st-psingle__gallery-grid { grid-template-columns: 1fr; }
	.st-psingle__gallery-item.is-featured img { aspect-ratio: 16/9; }
	.st-form { padding: 26px 22px; }
	.st-card-float--code { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
	.st-reveal { opacity: 1; transform: none; }
}
