@import url("https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Space+Grotesk:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap");

:root {
	--bg: #ece7ff;
	--ink: #16101f;
	--paper: #ffffff;

	--violet: #8b5cf6;
	--pink: #ff4d97;
	--teal: #14d6c4;
	--yellow: #ffd633;
	--lime: #b4e82a;
	--orange: #ff7a3d;

	--bd: 3px solid var(--ink);
	--sh: 6px 6px 0 var(--ink);
	--sh-lg: 9px 9px 0 var(--ink);
	--sh-sm: 4px 4px 0 var(--ink);

	--display: "Syne", sans-serif;
	--sans: "Space Grotesk", system-ui, sans-serif;
	--mono: "DM Mono", monospace;
}

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: var(--sans);
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	background-image: radial-gradient(var(--ink) 1.2px, transparent 1.2px);
	background-size: 26px 26px;
	background-position: -13px -13px;
}

a {
	color: inherit;
	text-decoration: none;
}
button {
	font-family: inherit;
	cursor: pointer;
}
img {
	display: block;
	max-width: 100%;
}
::selection {
	background: var(--yellow);
	color: var(--ink);
}

.outline {
	color: transparent;
	-webkit-text-stroke: 3px var(--ink);
}

/* ══ MARQUEE ══ */
.marquee {
	background: var(--ink);
	color: var(--bg);
	border-bottom: var(--bd);
	overflow: hidden;
	white-space: nowrap;
	padding: 9px 0;
}
.marquee--trust {
	background: var(--violet);
	color: var(--paper);
	border-top: var(--bd);
}
.marquee-track {
	display: inline-flex;
	gap: 40px;
	animation: scroll 26s linear infinite;
	font-family: var(--mono);
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.1em;
	padding-left: 40px;
}
@keyframes scroll {
	to {
		transform: translateX(-50%);
	}
}

/* ══ HEADER ══ */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 14px 26px;
	background: var(--bg);
	border-bottom: var(--bd);
}
.logo {
	display: flex;
	align-items: center;
}
.logo-img {
	height: 78px;
	width: auto;
}

.main-nav {
	display: flex;
	gap: 2px;
}
.main-nav a {
	font-family: var(--mono);
	font-size: 12.5px;
	font-weight: 500;
	padding: 8px 11px;
	border: 2px solid transparent;
	white-space: nowrap;
	transition: all 0.15s;
}
.main-nav a:hover {
	border-color: var(--ink);
	background: var(--paper);
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.cta-toggle {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--pink);
	color: var(--ink);
	border: var(--bd);
	box-shadow: var(--sh-sm);
	padding: 10px 16px;
	font-family: var(--display);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.04em;
	transition: all 0.12s;
}
.cta-toggle:hover {
	transform: translate(-2px, -2px);
	box-shadow: var(--sh);
}
.cta-toggle:active {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 var(--ink);
}

.nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	background: var(--paper);
	border: var(--bd);
	box-shadow: var(--sh-sm);
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
.nav-toggle span {
	width: 20px;
	height: 2.5px;
	background: var(--ink);
}

/* ══ HERO ══ */
.hero {
	max-width: 1240px;
	margin: 0 auto;
	padding: 40px 26px 30px;
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 26px;
	align-items: stretch;
}
.hero-main {
	position: relative;
	padding-top: 56px;
	min-width: 0;
}
.hero-sticker {
	position: absolute;
	top: 0;
	right: 10px;
	background: var(--lime);
	border: var(--bd);
	box-shadow: var(--sh-sm);
	font-family: var(--display);
	font-weight: 800;
	font-size: 15px;
	line-height: 0.95;
	text-align: center;
	padding: 12px 14px;
	transform: rotate(8deg);
	z-index: 2;
}
.hero-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(1.55rem, 5.2vw, 4.4rem);
	line-height: 0.95;
	letter-spacing: -0.03em;
	overflow-wrap: break-word;
}
.hero-sub {
	margin-top: 22px;
	font-size: 17px;
	max-width: 480px;
	font-weight: 500;
}
.hero-sub b {
	background: var(--yellow);
	padding: 0 4px;
	box-decoration-break: clone;
}

.hero-card {
	background: var(--violet);
	border: var(--bd);
	box-shadow: var(--sh);
	color: var(--paper);
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.hc-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	font-family: var(--mono);
	font-size: 11.5px;
	padding: 7px 0;
	border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
}
.hc-row b {
	font-weight: 500;
	text-align: right;
}
.hc-big {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(1.6rem, 4.5vw, 2.1rem);
	margin-top: auto;
	padding-top: 16px;
	line-height: 1;
	overflow-wrap: break-word;
}
.hc-cat {
	font-size: 13px;
	opacity: 0.85;
	margin-top: 4px;
}

/* ══ SECTION HEADERS ══ */
.section-head {
	max-width: 1240px;
	margin: 0 auto;
	padding: 70px 26px 30px;
	text-align: center;
}
.eyebrow {
	display: inline-block;
	font-family: var(--mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.12em;
	background: var(--ink);
	color: var(--bg);
	padding: 6px 12px;
	transform: rotate(-2deg);
	margin-bottom: 18px;
}
.section-title {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(2rem, 5.5vw, 3.4rem);
	line-height: 1;
	letter-spacing: -0.02em;
}
.section-sub {
	max-width: 560px;
	margin: 16px auto 0;
	font-weight: 500;
	font-size: 15.5px;
	opacity: 0.85;
}

/* ══ STEPS (Marketing Therapy method) ══ */
.steps {
	max-width: 1240px;
	margin: 0 auto;
	padding: 10px 26px 70px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
.step-card {
	background: var(--c, var(--paper));
	border: var(--bd);
	box-shadow: var(--sh);
	padding: 20px 18px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform 0.15s, box-shadow 0.15s;
}
.step-card:hover {
	transform: translate(-3px, -3px);
	box-shadow: var(--sh-lg);
}
.step-num {
	display: inline-block;
	align-self: flex-start;
	background: var(--ink);
	color: var(--bg);
	font-family: var(--mono);
	font-size: 12px;
	padding: 4px 9px;
	transform: rotate(-3deg);
}
.step-card h3 {
	font-family: var(--display);
	font-weight: 800;
	font-size: 1.35rem;
	letter-spacing: -0.01em;
}
.step-card p {
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.5;
}
.step-deliverable {
	margin-top: auto;
	font-family: var(--mono);
	font-size: 10.5px;
	font-weight: 500;
	background: var(--paper);
	border: 2px solid var(--ink);
	padding: 6px 8px;
	align-self: flex-start;
}

/* ══ SERVICES GRID ══ */
.services-grid {
	max-width: 1240px;
	margin: 0 auto;
	padding: 10px 26px 70px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
}
.service-card {
	background: var(--paper);
	border: var(--bd);
	box-shadow: var(--sh);
	display: flex;
	flex-direction: column;
	transition: transform 0.15s, box-shadow 0.15s;
}
.service-card:hover {
	transform: translate(-3px, -3px);
	box-shadow: var(--sh-lg);
}
.service-icon {
	display: grid;
	place-items: center;
	height: 90px;
	background: var(--c, var(--teal));
	border-bottom: var(--bd);
	color: var(--ink);
}
.service-body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}
.service-body h3 {
	font-family: var(--display);
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: -0.01em;
}
.service-body p {
	font-size: 13.5px;
	font-weight: 500;
	line-height: 1.5;
	flex: 1;
}
.service-chip {
	font-family: var(--mono);
	font-size: 10.5px;
	opacity: 0.65;
	letter-spacing: 0.03em;
}
.card-btn {
	width: 100%;
	background: var(--ink);
	color: var(--paper);
	border: var(--bd);
	border-left: none;
	border-right: none;
	border-bottom: none;
	box-shadow: none;
	padding: 13px;
	font-family: var(--display);
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 0.04em;
	transition: all 0.12s;
	margin-top: 4px;
}
.card-btn:hover {
	background: var(--paper);
	color: var(--ink);
}

/* ══ ABOUT / MEET IRIS ══ */
.about {
	max-width: 1240px;
	margin: 0 auto;
	padding: 10px 26px 80px;
	display: grid;
	grid-template-columns: 338px 1fr;
	gap: 40px;
	align-items: start;
}
.about-photo {
	aspect-ratio: 1 / 1;
	background: var(--paper);
	border: var(--bd);
	box-shadow: var(--sh);
	overflow: hidden;
	transform: rotate(-2deg);
}
.about-photo-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-name {
	font-family: var(--display);
	font-weight: 800;
	font-size: 1.9rem;
}
.about-role {
	font-family: var(--mono);
	font-size: 12.5px;
	opacity: 0.65;
	margin-top: 4px;
	margin-bottom: 16px;
}
.about-body p {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.65;
	max-width: 620px;
}
.about-quote {
	margin-top: 18px;
	font-family: var(--display);
	font-weight: 700;
	font-size: 1.15rem;
	line-height: 1.4;
	max-width: 560px;
	border-left: var(--bd);
	padding-left: 16px;
}
.about-quote span {
	display: block;
	margin-top: 8px;
	font-family: var(--mono);
	font-weight: 400;
	font-size: 12px;
	opacity: 0.65;
}

/* ══ CTA FINAL ══ */
.cta-final {
	background: var(--ink);
	color: var(--bg);
	border-top: var(--bd);
	border-bottom: var(--bd);
	padding: 80px 26px;
	text-align: center;
}
.cta-final h2 {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(2.2rem, 6vw, 3.8rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
	max-width: 780px;
	margin: 0 auto;
}
.cta-final .outline {
	color: transparent;
	-webkit-text-stroke: 3px var(--bg);
}
.cta-final p {
	max-width: 480px;
	margin: 20px auto 30px;
	font-weight: 500;
	opacity: 0.8;
}
.cta-final-btn {
	display: inline-block;
	background: var(--lime);
	color: var(--ink);
	border: 3px solid var(--bg);
	box-shadow: 6px 6px 0 var(--bg);
	padding: 16px 30px;
	font-family: var(--display);
	font-weight: 800;
	font-size: 15px;
	letter-spacing: 0.04em;
	transition: all 0.12s;
}
.cta-final-btn:hover {
	transform: translate(-3px, -3px);
	box-shadow: 9px 9px 0 var(--bg);
}
.cta-final-btn:active {
	transform: translate(3px, 3px);
	box-shadow: 3px 3px 0 var(--bg);
}
.cta-final-note {
	margin-top: 18px;
	font-family: var(--mono);
	font-size: 12px;
	opacity: 0.55;
}

/* ══ FOOTER ══ */
.site-footer {
	background: var(--ink);
	color: var(--bg);
	padding: 44px 26px 26px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 40px;
	align-items: start;
}
.ft-big {
	font-family: var(--display);
	font-weight: 800;
	font-size: clamp(1.8rem, 5.5vw, 3.4rem);
	line-height: 0.95;
	letter-spacing: -0.02em;
	color: transparent;
	-webkit-text-stroke: 2px var(--bg);
}
.ft-cols {
	display: flex;
	gap: 44px;
	flex-wrap: wrap;
}
.ft-cols h4 {
	font-family: var(--mono);
	font-size: 11px;
	letter-spacing: 0.1em;
	margin-bottom: 12px;
	color: var(--yellow);
}
.ft-cols a,
.ft-cols span {
	display: block;
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 8px;
	opacity: 0.85;
	transition: opacity 0.2s, transform 0.2s;
}
.ft-cols a:hover {
	opacity: 1;
	transform: translateX(3px);
}
.ft-note {
	grid-column: 1 / -1;
	font-family: var(--mono);
	font-size: 12px;
	opacity: 0.5;
	border-top: 1.5px solid rgba(255, 255, 255, 0.2);
	padding-top: 18px;
}

/* ══ WHATSAPP FLOAT ══ */
.whatsapp-float {
	position: fixed;
	bottom: 26px;
	right: 26px;
	width: 62px;
	height: 62px;
	display: grid;
	place-items: center;
	background: #25d366;
	color: var(--ink);
	border: var(--bd);
	box-shadow: var(--sh);
	border-radius: 50%;
	z-index: 120;
	transition: transform 0.15s, box-shadow 0.15s;
}
.whatsapp-float:hover {
	transform: translate(-3px, -3px);
	box-shadow: var(--sh-lg);
}
.whatsapp-float:active {
	transform: translate(2px, 2px);
	box-shadow: 2px 2px 0 var(--ink);
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1080px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 860px) {
	.hero {
		grid-template-columns: 1fr;
	}
	.about {
		grid-template-columns: 1fr;
	}
	.about-photo {
		width: 260px;
	}
}
@media (max-width: 900px) {
	.main-nav {
		position: fixed;
		top: 69px;
		left: 0;
		right: 0;
		background: var(--bg);
		border-bottom: var(--bd);
		flex-direction: column;
		gap: 0;
		padding: 8px;
		display: none;
		z-index: 49;
	}
	.main-nav.open {
		display: flex;
	}
	.main-nav a {
		padding: 12px 14px;
		white-space: normal;
	}
	.nav-toggle {
		display: flex;
	}
}
@media (max-width: 640px) {
	.marquee-track {
		font-size: 11px;
	}
	.services-grid,
	.steps {
		grid-template-columns: 1fr;
		padding: 10px 18px 48px;
	}
	.site-header {
		padding: 12px 18px;
	}
	.hero {
		padding: 28px 18px 20px;
	}
	.section-head {
		padding: 50px 18px 24px;
	}
	.site-footer {
		grid-template-columns: 1fr;
		gap: 28px;
	}
}
