@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
	--ink: #12161f;
	--muted: #667085;
	--paper: #f7f7f3;
	--lime: #c8ff4d;
	--purple: #7357ff;
	--line: #dedfd8
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: 'DM Sans', sans-serif
}

a {
	color: inherit;
	text-decoration: none
}

header {
	height: 88px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
	padding: 0 28px;
	border-bottom: 1px solid var(--line)
}

.brand {
	font-family: Manrope, sans-serif;
	font-weight: 800;
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 10px
}

.brand span {
	width: 38px;
	height: 38px;
	background: var(--ink);
	color: #fff;
	display: grid;
	place-items: center;
	border-radius: 12px;
	font-size: 15px
}

.brand.inverse span {
	background: var(--lime);
	color: var(--ink)
}

nav {
	display: flex;
	gap: 24px;
	font-weight: 600;
	font-size: 14px
}

nav a {
	padding: 32px 0;
	border-bottom: 2px solid transparent
}

nav a.active,
nav a:hover {
	border-color: var(--purple);
	color: var(--purple)
}

.menu,
.mobile-panel {
	display: none
}

main {
	overflow: hidden
}

.hero {
	min-height: 650px;
	max-width: 1200px;
	margin: auto;
	padding: 80px 28px;
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	align-items: center;
	gap: 60px
}

.hero small,
.page-hero small,
.section small,
.dark-cta small {
	letter-spacing: .16em;
	font-weight: 700;
	color: var(--purple)
}

h1,
h2,
h3 {
	font-family: Manrope, sans-serif;
	line-height: 1.08;
	margin: 0
}

h1 {
	font-size: clamp(48px, 6vw, 86px);
	letter-spacing: -.055em
}

.hero h1 em,
.page-hero h1 em {
	font-style: normal;
	color: var(--purple)
}

.hero p,
.page-hero p {
	font-size: 20px;
	line-height: 1.7;
	color: var(--muted);
	max-width: 680px
}

.actions {
	display: flex;
	align-items: center;
	gap: 28px;
	margin-top: 34px
}

.button {
	display: inline-flex;
	border: 0;
	cursor: pointer;
	background: var(--ink);
	color: #fff;
	padding: 16px 24px;
	border-radius: 10px;
	font-weight: 700;
	font: 700 15px 'DM Sans'
}

.button:hover {
	background: var(--purple)
}

.text-link {
	font-weight: 700
}

.hero-art {
	height: 430px;
	border-radius: 50%;
	background: var(--purple);
	position: relative;
	display: grid;
	place-items: center;
	color: #fff
}

.hero-art b {
	font: 800 130px Manrope;
	letter-spacing: -.1em
}

.hero-art span {
	position: absolute;
	bottom: 70px;
	font-weight: 700
}

.orbit {
	position: absolute;
	width: 115%;
	height: 64%;
	border: 1px solid rgba(255, 255, 255, .55);
	border-radius: 50%;
	transform: rotate(-24deg)
}

.orbit:after {
	content: '';
	position: absolute;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: var(--lime);
	right: 8%;
	top: 5%
}

.numbers {
	background: var(--ink);
	color: #fff;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding: 36px calc((100% - 1144px)/2)
}

.numbers div {
	padding: 16px 28px;
	border-right: 1px solid #343843
}

.numbers div:last-child {
	border: 0
}

.numbers b {
	font: 700 34px Manrope;
	display: block;
	color: var(--lime)
}

.numbers span {
	color: #b7bac2
}

.section {
	max-width: 1200px;
	margin: auto;
	padding: 110px 28px
}

.section-head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	margin-bottom: 45px
}

.section-head h2,
.split h2,
.dark-cta h2 {
	font-size: clamp(35px, 4vw, 54px);
	letter-spacing: -.04em;
	margin-top: 10px
}

.section-head>a {
	font-weight: 700
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}

.service-card {
	background: #fff;
	border: 1px solid var(--line);
	padding: 32px;
	border-radius: 16px;
	min-height: 270px;
	transition: .25s
}

.service-card:hover {
	transform: translateY(-6px);
	border-color: var(--purple);
	box-shadow: 0 18px 50px #1f1d2d12
}

.service-card i {
	font-style: normal;
	font-size: 28px;
	color: var(--purple)
}

.service-card h3 {
	font-size: 23px;
	margin: 34px 0 12px
}

.service-card p {
	color: var(--muted);
	line-height: 1.6
}

.service-card span {
	font-weight: 700;
	color: var(--purple)
}

.dark-cta {
	padding: 100px max(28px, calc((100% - 1144px)/2));
	background: var(--ink);
	color: #fff
}

.dark-cta h2 {
	max-width: 720px;
	margin: 14px 0 30px
}

.button.light {
	background: var(--lime);
	color: var(--ink)
}

.page-hero {
	max-width: 1200px;
	margin: auto;
	padding: 110px 28px 80px
}

.page-hero h1 {
	max-width: 950px;
	margin: 18px 0 24px;
	font-size: clamp(46px, 6vw, 76px)
}

.page-hero.compact {
	padding-bottom: 55px
}

.split {
	max-width: 1200px;
	margin: auto;
	padding: 40px 28px 100px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px
}

.split p {
	font-size: 18px;
	line-height: 1.8;
	color: var(--muted);
	margin-top: 0
}

.values {
	max-width: 1200px;
	margin: 0 auto 110px;
	padding: 0 28px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}

.values article {
	border-top: 2px solid var(--ink);
	padding: 24px 0
}

.values b {
	color: var(--purple)
}

.values h3 {
	margin: 25px 0 10px;
	font-size: 25px
}

.values p {
	color: var(--muted)
}

.portfolio {
	max-width: 1200px;
	margin: 0 auto 110px;
	padding: 0 28px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}

.portfolio figure {
	margin: 0;
	background: #fff;
	border-radius: 14px;
	overflow: hidden
}

.portfolio img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	transition: .35s
}

.portfolio figure:hover img {
	transform: scale(1.035)
}

.portfolio figcaption {
	padding: 16px 18px;
	font-weight: 600
}

.portfolio.small {
	margin-top: 0
}

.blog-grid {
	max-width: 1200px;
	margin: 0 auto 120px;
	padding: 0 28px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px
}

.blog-grid article {
	background: #fff;
	border: 1px solid var(--line);
	padding: 32px;
	border-radius: 15px
}

.blog-grid span {
	color: var(--purple);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em
}

.blog-grid h2 {
	font-size: 26px;
	margin: 24px 0
}

.blog-grid p {
	color: var(--muted);
	line-height: 1.7
}

.contact-grid {
	max-width: 1200px;
	margin: 0 auto 120px;
	padding: 0 28px;
	display: grid;
	grid-template-columns: .8fr 1.2fr;
	gap: 70px
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 14px
}

.contact-cards a {
	background: #fff;
	padding: 24px;
	border: 1px solid var(--line);
	border-radius: 12px
}

.contact-cards small {
	display: block;
	color: var(--muted);
	margin-bottom: 8px
}

form {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px
}

label {
	font-weight: 600;
	font-size: 14px
}

input,
select,
textarea {
	display: block;
	width: 100%;
	margin-top: 8px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 9px;
	padding: 14px;
	font: inherit
}

textarea,
label:last-of-type {
	grid-column: 1/-1
}

form button {
	width: max-content
}

.service-detail .button {
	margin-top: 15px
}

.service-body ul {
	list-style: none;
	margin: 0;
	padding: 0
}

.service-body li {
	padding: 18px 0;
	border-bottom: 1px solid var(--line);
	font-size: 18px
}

.service-body li:before {
	content: '✓';
	color: var(--purple);
	font-weight: bold;
	margin-right: 14px
}

footer {
	background: #171b24;
	color: #fff;
	padding: 70px max(28px, calc((100% - 1144px)/2));
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 60px
}

footer p {
	color: #aeb3bf;
	max-width: 330px;
	line-height: 1.7
}

footer>div {
	display: flex;
	flex-direction: column;
	gap: 12px
}

footer b {
	margin-bottom: 8px
}

footer a:not(.brand) {
	color: #c3c7d0
}

.copyright {
	background: #171b24;
	color: #858b98;
	border-top: 1px solid #30343d;
	padding: 22px max(28px, calc((100% - 1144px)/2));
	font-size: 13px
}

.whatsapp {
	position: fixed;
	right: 24px;
	bottom: 24px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #25d366;
	color: #fff;
	font-size: 27px;
	box-shadow: 0 8px 25px #0003;
	z-index: 9
}

@media(max-width:800px) {
	header {
		height: 72px
	}

	.menu {
		display: block;
		border: 0;
		background: none;
		font-size: 25px
	}

	.mobile-panel {
		position: fixed;
		z-index: 20;
		top: 72px;
		inset-inline: 0;
		background: var(--paper);
		padding: 20px 28px;
		box-shadow: 0 20px 30px #0002
	}

	.mobile-panel.open {
		display: flex;
		flex-direction: column
	}

	.mobile-panel>a {
		padding: 11px 0;
		font-weight: 700
	}

	.mobile-services {
		display: none
	}

	nav {
		display: none
	}

	.hero {
		grid-template-columns: 1fr;
		padding-top: 60px
	}

	.hero-art {
		height: 330px
	}

	.hero-art b {
		font-size: 95px
	}

	.numbers {
		grid-template-columns: 1fr;
		padding: 22px 28px
	}

	.numbers div {
		border-right: 0;
		border-bottom: 1px solid #343843
	}

	.service-grid,
	.portfolio,
	.blog-grid,
	.values {
		grid-template-columns: 1fr
	}

	.split,
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 30px
	}

	.section-head {
		align-items: start;
		gap: 20px;
		flex-direction: column
	}

	form {
		grid-template-columns: 1fr
	}

	label {
		grid-column: 1/-1
	}

	footer {
		grid-template-columns: 1fr;
		gap: 35px
	}

	h1 {
		font-size: 48px
	}

	.page-hero {
		padding-top: 75px
	}
}
