/* =============================================
   ALPHA'S TOUCH — Stylesheet
   Brand: navy + cyan on warm cream
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;0,9..144,900;1,9..144,400;1,9..144,500;1,9..144,600&family=Manrope:wght@300;400;500;600;700;800&display=swap');

:root {
	/* Color system */
	--cream: #f6f1e7;
	--cream-deep: #ece3d2;
	--ink: #0c1e38;
	--ink-soft: #2b3d5a;
	--ink-mute: #6e7a8e;
	--cyan: #1bb5da;
	--cyan-deep: #0e7c97;
	--cyan-pale: #d5eef6;
	--coral: #f4b8b8;
	--sand: #e8dfd0;
	--white: #ffffff;
	--black: #08080c;

	/* Typography */
	--font-display: 'Fraunces', 'Times New Roman', serif;
	--font-body: 'Manrope', system-ui, -apple-system, sans-serif;

	/* Spacing */
	--container: 1240px;
	--gutter: clamp(1.25rem, 4vw, 3rem);

	/* Motion */
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--cream);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	display: block;
}

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

::selection {
	background: var(--cyan);
	color: var(--white);
}

/* =============================================
   Layout primitives
   ============================================= */
.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding-left: var(--gutter);
	padding-right: var(--gutter);
}

.section {
	padding: clamp(4rem, 10vw, 8rem) 0;
	position: relative;
}

.eyebrow {
	font-family: var(--font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--cyan-deep);
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}

.eyebrow::before {
	content: '';
	display: inline-block;
	width: 22px;
	height: 1px;
	background: var(--cyan-deep);
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-display);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--ink);
}

h2 {
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 500;
}

h2 em {
	font-style: italic;
	font-weight: 400;
	color: var(--cyan-deep);
}

h3 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 500;
}

p {
	color: var(--ink-soft);
}

/* =============================================
   Navigation
   ============================================= */
.nav {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(246, 241, 231, 0.85);
	backdrop-filter: saturate(140%) blur(14px);
	-webkit-backdrop-filter: saturate(140%) blur(14px);
	border-bottom: 1px solid rgba(12, 30, 56, 0.06);
}

.nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 76px;
}

.nav__logo {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	font-family: var(--font-body);
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 0.04em;
	color: var(--ink);
}

.nav__logo svg {
	width: 38px;
	height: auto;
	flex-shrink: 0;
}

.nav__logo small {
	display: block;
	font-weight: 400;
	letter-spacing: 0.06em;
	font-size: 0.65rem;
	color: var(--ink-mute);
	text-transform: uppercase;
	margin-top: 1px;
}

.nav__links {
	display: flex;
	gap: 2.25rem;
	list-style: none;
	font-size: 0.94rem;
	font-weight: 500;
}

.nav__links a {
	position: relative;
	padding: 4px 0;
	transition: color 0.2s var(--ease);
}

.nav__links a:hover {
	color: var(--cyan-deep);
}

.nav__links a.active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -2px;
	height: 2px;
	background: var(--cyan);
}

.nav__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

@media (max-width: 880px) {
	.nav__links {
		display: none;
	}
}

/* =============================================
   Buttons
   ============================================= */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	padding: 0.95rem 1.5rem;
	border-radius: 999px;
	border: 1px solid transparent;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.95rem;
	cursor: pointer;
	transition: all 0.25s var(--ease);
	white-space: nowrap;
}

.btn--primary {
	background: var(--ink);
	color: var(--white);
}
.btn--primary:hover {
	background: var(--cyan-deep);
	transform: translateY(-1px);
}

.btn--cyan {
	background: var(--cyan);
	color: var(--white);
}
.btn--cyan:hover {
	background: var(--cyan-deep);
	transform: translateY(-1px);
}

.btn--ghost {
	background: transparent;
	color: var(--ink);
	border-color: rgba(12, 30, 56, 0.18);
}
.btn--ghost:hover {
	border-color: var(--ink);
	background: var(--ink);
	color: var(--white);
}

.btn--whatsapp {
	background: #25d366;
	color: var(--white);
}
.btn--whatsapp:hover {
	background: #1fb955;
	transform: translateY(-1px);
}

.btn--sm {
	padding: 0.65rem 1.1rem;
	font-size: 0.85rem;
}

.btn .arrow {
	display: inline-block;
	transition: transform 0.25s var(--ease);
}
.btn:hover .arrow {
	transform: translateX(3px);
}

/* =============================================
   Hero
   ============================================= */
.hero {
	position: relative;
	padding: clamp(3rem, 7vw, 6rem) 0 clamp(4rem, 8vw, 7rem);
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -120px;
	width: 520px;
	height: 520px;
	border-radius: 50%;
	background: radial-gradient(
		circle at center,
		rgba(27, 181, 218, 0.18),
		transparent 65%
	);
	pointer-events: none;
	z-index: 0;
}

.hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}

.hero__title {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(2.75rem, 7.5vw, 6rem);
	line-height: 0.98;
	letter-spacing: -0.035em;
	color: var(--ink);
}

.hero__title .accent {
	font-style: italic;
	font-weight: 400;
	color: var(--cyan-deep);
}

.hero__title .stains {
	position: relative;
	display: inline-block;
}
.hero__title .stains::after {
	content: '';
	position: absolute;
	left: -2%;
	right: -2%;
	bottom: 4%;
	height: 14px;
	background: var(--cyan);
	opacity: 0.35;
	z-index: -1;
	border-radius: 2px;
}

.hero__lede {
	margin-top: 1.75rem;
	font-size: clamp(1.05rem, 1.4vw, 1.2rem);
	max-width: 520px;
	color: var(--ink-soft);
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 2.25rem;
}

.hero__signals {
	margin-top: 3.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 1.75rem;
	align-items: center;
}
.hero__signals .pill {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.84rem;
	color: var(--ink-soft);
	font-weight: 500;
}
.hero__signals .dot {
	width: 6px;
	height: 6px;
	background: var(--cyan);
	border-radius: 50%;
}

/* Hero visual */
.hero__visual {
	position: relative;
	aspect-ratio: 1 / 1.05;
	max-width: 520px;
	justify-self: center;
	width: 100%;
}

.hero__card {
	position: absolute;
	background: var(--white);
	border-radius: 24px;
	box-shadow: 0 30px 60px -25px rgba(12, 30, 56, 0.25);
	padding: 1.5rem;
	font-size: 0.85rem;
}

.hero__card--main {
	top: 0;
	left: 0;
	width: 70%;
	height: 78%;
	background: linear-gradient(155deg, var(--ink) 0%, #122845 100%);
	color: var(--white);
	padding: 2rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow: hidden;
}
.hero__card--main::before {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -80px;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: var(--cyan);
	opacity: 0.18;
}
.hero__card--main h3 {
	color: var(--white);
	font-size: 1.6rem;
	font-weight: 500;
	font-style: italic;
	position: relative;
}
.hero__card--main .badge {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cyan);
	position: relative;
}
.hero__card--main .badge::before {
	content: '';
	width: 18px;
	height: 1px;
	background: var(--cyan);
}
.hero__card--main .price {
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 400;
	line-height: 1;
	color: var(--white);
	margin-top: 0.5rem;
}
.hero__card--main .price small {
	font-size: 0.85rem;
	color: var(--cyan-pale);
	font-family: var(--font-body);
	font-weight: 400;
	margin-left: 0.25rem;
}

.hero__card--mini {
	bottom: 0;
	right: 0;
	width: 64%;
	background: var(--cyan);
	color: var(--white);
	padding: 1.5rem 1.65rem;
	border-radius: 22px;
	box-shadow: 0 25px 50px -20px rgba(14, 124, 151, 0.4);
}
.hero__card--mini .meta {
	font-size: 0.7rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
}
.hero__card--mini h4 {
	color: var(--white);
	font-family: var(--font-display);
	font-style: italic;
	font-weight: 400;
	font-size: 1.5rem;
	margin-top: 0.3rem;
}

.hero__card--review {
	top: 22%;
	right: -4%;
	width: 220px;
	padding: 1.1rem 1.25rem;
	border-radius: 18px;
	background: var(--white);
}
.hero__card--review .stars {
	color: #f2b743;
	font-size: 0.85rem;
	letter-spacing: 1px;
}
.hero__card--review p {
	font-size: 0.82rem;
	color: var(--ink);
	margin-top: 0.45rem;
	line-height: 1.5;
}
.hero__card--review .who {
	margin-top: 0.65rem;
	font-size: 0.72rem;
	color: var(--ink-mute);
	font-weight: 500;
}

@media (max-width: 880px) {
	.hero__grid {
		grid-template-columns: 1fr;
	}
	.hero__visual {
		max-width: 420px;
		margin-top: 1rem;
	}
	.hero__card--review {
		width: 180px;
		right: -2%;
	}
}

/* =============================================
   Marquee / Trust bar
   ============================================= */
.marquee {
	border-top: 1px solid rgba(12, 30, 56, 0.08);
	border-bottom: 1px solid rgba(12, 30, 56, 0.08);
	background: var(--cream-deep);
	padding: 1.1rem 0;
	overflow: hidden;
}
.marquee__track {
	display: flex;
	gap: 3rem;
	white-space: nowrap;
	animation: scroll 35s linear infinite;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 1.5rem;
	color: var(--ink-soft);
	font-weight: 400;
}
.marquee__track span {
	display: inline-flex;
	align-items: center;
	gap: 3rem;
}
.marquee__track .dot {
	width: 8px;
	height: 8px;
	background: var(--cyan);
	border-radius: 50%;
	display: inline-block;
}
@keyframes scroll {
	to {
		transform: translateX(-50%);
	}
}

/* =============================================
   Section headers
   ============================================= */
.section__head {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 2rem;
	align-items: end;
	margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__head p {
	max-width: 380px;
	text-align: right;
}

@media (max-width: 720px) {
	.section__head {
		grid-template-columns: 1fr;
	}
	.section__head p {
		text-align: left;
	}
}

/* =============================================
   Value props (Why us)
   ============================================= */
.why {
	background: var(--ink);
	color: var(--white);
	position: relative;
	overflow: hidden;
}
.why::before {
	content: '';
	position: absolute;
	top: -80px;
	right: -80px;
	width: 380px;
	height: 380px;
	border-radius: 50%;
	background: radial-gradient(
		circle at center,
		rgba(27, 181, 218, 0.25),
		transparent 70%
	);
}

.why h2 {
	color: var(--white);
}
.why h2 em {
	color: var(--cyan);
}
.why p {
	color: rgba(255, 255, 255, 0.7);
}
.why .eyebrow {
	color: var(--cyan);
}
.why .eyebrow::before {
	background: var(--cyan);
}

.why__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
	position: relative;
}

.why__card {
	padding: 2rem 1.75rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 20px;
	transition: all 0.3s var(--ease);
	background: rgba(255, 255, 255, 0.02);
}
.why__card:hover {
	background: rgba(27, 181, 218, 0.08);
	border-color: rgba(27, 181, 218, 0.3);
	transform: translateY(-4px);
}
.why__card .icon {
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: rgba(27, 181, 218, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}
.why__card h4 {
	color: var(--white);
	font-family: var(--font-display);
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 0.6rem;
}
.why__card p {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 980px) {
	.why__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 540px) {
	.why__grid {
		grid-template-columns: 1fr;
	}
}

/* =============================================
   Packages
   ============================================= */
.packages__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.pkg {
	position: relative;
	background: var(--white);
	border: 1px solid rgba(12, 30, 56, 0.07);
	border-radius: 24px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	transition: all 0.3s var(--ease);
}
.pkg:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 60px -30px rgba(12, 30, 56, 0.18);
	border-color: var(--cyan);
}

.pkg--dark {
	background: var(--ink);
	color: var(--white);
}
.pkg--dark .pkg__name {
	color: var(--white);
}
.pkg--dark .pkg__price {
	color: var(--white);
}
.pkg--dark .pkg__features li {
	color: rgba(255, 255, 255, 0.75);
}
.pkg--dark .pkg__divider {
	background: rgba(255, 255, 255, 0.12);
}

.pkg--featured {
	background: var(--cyan);
	color: var(--white);
	border-color: var(--cyan);
}
.pkg--featured .pkg__name {
	color: var(--white);
}
.pkg--featured .pkg__price {
	color: var(--white);
}
.pkg--featured .pkg__features li {
	color: rgba(255, 255, 255, 0.92);
}
.pkg--featured .pkg__divider {
	background: rgba(255, 255, 255, 0.25);
}
.pkg--featured .pkg__tag {
	background: var(--ink);
	color: var(--white);
}

.pkg__tag {
	position: absolute;
	top: -10px;
	right: 24px;
	background: var(--cyan);
	color: var(--white);
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.pkg__name {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: -0.01em;
}

.pkg__price {
	font-family: var(--font-display);
	font-size: 2.6rem;
	font-weight: 400;
	letter-spacing: -0.03em;
	margin: 0.5rem 0 0.25rem;
	line-height: 1;
}
.pkg__price small {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 500;
	opacity: 0.65;
	margin-left: 0.25rem;
}

.pkg__sub {
	font-size: 0.88rem;
	margin-bottom: 1.5rem;
	opacity: 0.75;
}

.pkg__divider {
	height: 1px;
	background: rgba(12, 30, 56, 0.08);
	margin: 0.5rem 0 1.25rem;
}

.pkg__features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-bottom: 1.75rem;
	flex-grow: 1;
}

.pkg__features li {
	display: flex;
	gap: 0.65rem;
	font-size: 0.92rem;
	line-height: 1.45;
	color: var(--ink-soft);
}
.pkg__features li::before {
	content: '✓';
	flex-shrink: 0;
	width: 20px;
	height: 20px;
	background: var(--cyan-pale);
	color: var(--cyan-deep);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	font-weight: 700;
	margin-top: 1px;
}
.pkg--dark .pkg__features li::before,
.pkg--featured .pkg__features li::before {
	background: rgba(255, 255, 255, 0.15);
	color: var(--white);
}

.pkg__cta {
	width: 100%;
	justify-content: space-between;
}

@media (max-width: 980px) {
	.packages__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.packages__grid {
		grid-template-columns: 1fr;
	}
}

/* =============================================
   How it works
   ============================================= */
.steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
	margin-top: 3rem;
	border-top: 1px solid rgba(12, 30, 56, 0.1);
	border-bottom: 1px solid rgba(12, 30, 56, 0.1);
}

.step {
	padding: 2rem 1.5rem 2rem 0;
	border-right: 1px solid rgba(12, 30, 56, 0.1);
	position: relative;
}
.step:last-child {
	border-right: none;
}

.step__num {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 0.95rem;
	color: var(--cyan-deep);
	margin-bottom: 1rem;
}
.step h4 {
	font-family: var(--font-display);
	font-size: 1.3rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}
.step p {
	font-size: 0.92rem;
	color: var(--ink-mute);
}

@media (max-width: 880px) {
	.steps {
		grid-template-columns: repeat(2, 1fr);
	}
	.step:nth-child(2) {
		border-right: none;
	}
	.step:nth-child(1),
	.step:nth-child(2) {
		border-bottom: 1px solid rgba(12, 30, 56, 0.1);
	}
}
@media (max-width: 540px) {
	.steps {
		grid-template-columns: 1fr;
	}
	.step {
		border-right: none !important;
		border-bottom: 1px solid rgba(12, 30, 56, 0.1);
	}
	.step:last-child {
		border-bottom: none;
	}
}

/* =============================================
   Pull quote / billboard
   ============================================= */
.billboard {
	background: var(--cyan);
	color: var(--white);
	border-radius: 32px;
	padding: clamp(3rem, 7vw, 5.5rem);
	text-align: center;
	position: relative;
	overflow: hidden;
}
.billboard::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 320px;
	height: 320px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
}
.billboard::after {
	content: '';
	position: absolute;
	bottom: -120px;
	left: -80px;
	width: 280px;
	height: 280px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 50%;
}

.billboard h2 {
	color: var(--white);
	font-size: clamp(2rem, 5.5vw, 4.5rem);
	font-weight: 400;
	font-style: italic;
	position: relative;
	z-index: 1;
	letter-spacing: -0.025em;
}
.billboard h2 strong {
	font-style: normal;
	font-weight: 600;
	display: block;
}
.billboard p {
	color: rgba(255, 255, 255, 0.92);
	font-size: 1.1rem;
	margin-top: 1.25rem;
	position: relative;
	z-index: 1;
}
.billboard .btn {
	margin-top: 2rem;
	position: relative;
	z-index: 1;
}

/* =============================================
   Testimonials
   ============================================= */
.testimonials__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}
.tcard {
	background: var(--white);
	border: 1px solid rgba(12, 30, 56, 0.07);
	border-radius: 20px;
	padding: 1.75rem;
}
.tcard .stars {
	color: #f2b743;
	letter-spacing: 2px;
	font-size: 0.9rem;
}
.tcard blockquote {
	font-family: var(--font-display);
	font-size: 1.15rem;
	line-height: 1.45;
	font-weight: 400;
	margin: 1rem 0 1.5rem;
	color: var(--ink);
}
.tcard .who {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.tcard .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var(--cyan);
	color: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 0.9rem;
}
.tcard .who-info {
	font-size: 0.85rem;
}
.tcard .who-info strong {
	display: block;
	color: var(--ink);
}
.tcard .who-info span {
	color: var(--ink-mute);
}

@media (max-width: 880px) {
	.testimonials__grid {
		grid-template-columns: 1fr;
	}
}

/* =============================================
   Locations
   ============================================= */
.locs__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 3rem;
}

.loc {
	background: var(--white);
	border-radius: 22px;
	padding: 2rem;
	border: 1px solid rgba(12, 30, 56, 0.07);
	transition: all 0.3s var(--ease);
	position: relative;
	overflow: hidden;
}
.loc:hover {
	transform: translateY(-3px);
	box-shadow: 0 25px 50px -25px rgba(12, 30, 56, 0.2);
}

.loc__num {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 5rem;
	line-height: 0.9;
	color: var(--cream-deep);
	font-weight: 400;
	position: absolute;
	top: 0.5rem;
	right: 1.25rem;
	pointer-events: none;
}
.loc__name {
	font-family: var(--font-display);
	font-size: 1.4rem;
	font-weight: 500;
	margin-bottom: 0.25rem;
	position: relative;
}
.loc__tag {
	font-size: 0.75rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--cyan-deep);
	font-weight: 600;
	margin-bottom: 1rem;
}
.loc__address {
	font-size: 0.95rem;
	color: var(--ink-soft);
	line-height: 1.55;
	margin-bottom: 1.25rem;
}
.loc__hours {
	font-size: 0.85rem;
	color: var(--ink-mute);
	padding-top: 1rem;
	border-top: 1px dashed rgba(12, 30, 56, 0.12);
}

@media (max-width: 880px) {
	.locs__grid {
		grid-template-columns: 1fr;
	}
}

/* =============================================
   Footer
   ============================================= */
.footer {
	background: var(--ink);
	color: var(--white);
	padding: 5rem 0 2rem;
	position: relative;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1fr;
	gap: 3rem;
	margin-bottom: 4rem;
}

.footer__brand h3 {
	font-family: var(--font-display);
	font-size: 1.6rem;
	color: var(--white);
	font-weight: 500;
	margin-bottom: 0.65rem;
	font-style: italic;
}
.footer__brand p {
	color: rgba(255, 255, 255, 0.65);
	font-size: 0.93rem;
	max-width: 320px;
}

.footer__col h5 {
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cyan);
	font-weight: 600;
	margin-bottom: 1.25rem;
	font-family: var(--font-body);
}
.footer__col ul {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
}
.footer__col a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.92rem;
	transition: color 0.2s var(--ease);
}
.footer__col a:hover {
	color: var(--white);
}

.footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	color: rgba(255, 255, 255, 0.5);
	font-size: 0.82rem;
}

.footer__socials {
	display: flex;
	gap: 0.75rem;
}
.footer__socials a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.25s var(--ease);
}
.footer__socials a:hover {
	background: var(--cyan);
	transform: translateY(-2px);
}
.footer__socials svg {
	width: 16px;
	height: 16px;
	fill: var(--white);
}

@media (max-width: 880px) {
	.footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
	.footer__brand {
		grid-column: 1 / -1;
	}
}

/* =============================================
   Pricing page
   ============================================= */
.pricing-hero {
	padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
	text-align: center;
}
.pricing-hero h1 {
	font-family: var(--font-display);
	font-weight: 400;
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	letter-spacing: -0.03em;
	line-height: 1.05;
}
.pricing-hero h1 em {
	font-style: italic;
	color: var(--cyan-deep);
}
.pricing-hero p {
	max-width: 580px;
	margin: 1.25rem auto 0;
	font-size: 1.05rem;
}

.price-categories {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	max-width: 720px;
	margin: 2.5rem auto 0;
	text-align: left;
}
.price-categories a {
	padding: 1rem 1.25rem;
	background: var(--white);
	border: 1px solid rgba(12, 30, 56, 0.07);
	border-radius: 12px;
	font-size: 0.9rem;
	font-weight: 500;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.2s var(--ease);
}
.price-categories a:hover {
	border-color: var(--cyan);
	background: var(--cyan-pale);
}
.price-categories a span {
	color: var(--cyan-deep);
}

@media (max-width: 540px) {
	.price-categories {
		grid-template-columns: 1fr;
	}
}

.price-block {
	background: var(--white);
	border: 1px solid rgba(12, 30, 56, 0.07);
	border-radius: 24px;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	margin-bottom: 1.5rem;
}

.price-block__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid rgba(12, 30, 56, 0.08);
	flex-wrap: wrap;
	gap: 1rem;
}
.price-block__head h3 {
	font-family: var(--font-display);
	font-size: 1.65rem;
	font-weight: 500;
}
.price-block__head .tag {
	font-size: 0.72rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--cyan-deep);
	font-weight: 600;
}

.price-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}
.price-table th {
	text-align: left;
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink-mute);
	font-weight: 600;
	padding: 0.5rem 0.5rem 0.75rem;
}
.price-table td {
	padding: 0.85rem 0.5rem;
	border-top: 1px solid rgba(12, 30, 56, 0.06);
}
.price-table tbody tr:hover td {
	background: rgba(213, 238, 246, 0.4);
}
.price-table .item {
	font-weight: 500;
}
.price-table .sub {
	font-size: 0.85rem;
	color: var(--ink-mute);
}
.price-table .amount {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.05rem;
	text-align: right;
	white-space: nowrap;
	color: var(--ink);
}

.price-table th.amount,
.price-table td.amount {
	text-align: right;
}

.price-note {
	background: var(--cream-deep);
	border-left: 3px solid var(--cyan);
	padding: 1.25rem 1.5rem;
	border-radius: 8px;
	margin: 2rem 0;
	font-size: 0.93rem;
	color: var(--ink-soft);
}
.price-note strong {
	color: var(--ink);
	display: block;
	margin-bottom: 0.25rem;
	font-family: var(--font-display);
	font-weight: 500;
}

/* =============================================
   Contact page
   ============================================= */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.contact-info h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 1rem;
}

.contact-channels {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 2rem 0;
}
.contact-channels a {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.25rem;
	background: var(--white);
	border: 1px solid rgba(12, 30, 56, 0.07);
	border-radius: 14px;
	transition: all 0.25s var(--ease);
}
.contact-channels a:hover {
	border-color: var(--cyan);
	transform: translateX(4px);
}
.contact-channels .icon {
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: var(--cyan-pale);
	color: var(--cyan-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.contact-channels strong {
	display: block;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-mute);
	margin-bottom: 0.15rem;
}
.contact-channels span {
	font-family: var(--font-display);
	font-weight: 500;
	font-size: 1.1rem;
	color: var(--ink);
}

.form {
	background: var(--white);
	border-radius: 24px;
	padding: clamp(1.75rem, 3vw, 2.5rem);
	border: 1px solid rgba(12, 30, 56, 0.07);
}
.form h3 {
	margin-bottom: 0.5rem;
	font-family: var(--font-display);
}
.form > p {
	margin-bottom: 1.75rem;
	font-size: 0.93rem;
}

.form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1rem;
}
.field {
	margin-bottom: 1rem;
}
.field label {
	display: block;
	font-size: 0.78rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink-mute);
	font-weight: 600;
	margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid rgba(12, 30, 56, 0.12);
	background: var(--cream);
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	color: var(--ink);
	transition: all 0.2s var(--ease);
}
.field textarea {
	resize: vertical;
	min-height: 110px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
	outline: none;
	border-color: var(--cyan);
	background: var(--white);
	box-shadow: 0 0 0 4px rgba(27, 181, 218, 0.15);
}

.hide {
	display: none;
}

@media (max-width: 880px) {
	.contact-grid {
		grid-template-columns: 1fr;
	}
	.form__row {
		grid-template-columns: 1fr;
	}
}

/* =============================================
   Misc
   ============================================= */
.fadein {
	opacity: 0;
	transform: translateY(16px);
	animation: fadein 0.9s var(--ease) forwards;
}
.fadein.d1 {
	animation-delay: 0.1s;
}
.fadein.d2 {
	animation-delay: 0.2s;
}
.fadein.d3 {
	animation-delay: 0.35s;
}
.fadein.d4 {
	animation-delay: 0.5s;
}

@keyframes fadein {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
	.marquee__track {
		animation: none;
	}
}
