:root {
	--red: #f71352;
	--black: #0a0a0a;
	--white: #ffffff;
	--gray-200: #e2dfdb;
	--gray-400: #9a9590;
	--gray-700: #3d3a37;
	--pink-glow: #fbcfe87a;
	--cream: #f7f5f2;
	--cream-deep: #ede9e3;
	--font: "Mona Sans", sans-serif;
	--radius: 20px;
	--nav-h: 72px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font);
	background: var(--cream);
	color: var(--black);
	cursor: none;
	overflow-x: hidden;
}

/* ─── CURSOR ─── */
.cursor {
	width: 10px;
	height: 10px;
	background: var(--red);
	border-radius: 50%;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 9999;
	transform: translate(-50%, -50%);
	transition: transform 0.15s ease;
}

.cursor-follow {
	width: 36px;
	height: 36px;
	border: 1.5px solid rgba(247, 19, 82, 0.4);
	border-radius: 50%;
	position: fixed;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 9998;
	transform: translate(-50%, -50%);
}

/* ─── NAVBAR ─── */
nav#navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	height: var(--nav-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px;
	background: rgba(247, 245, 242, 0.7);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid transparent;
	transition: border-color 0.3s, background 0.3s;
}

nav#navbar.scrolled {
	border-color: rgba(0, 0, 0, 0.07);
	background: rgba(247, 245, 242, 0.92);
}

.nav-logo {
	font-size: 19px;
	font-weight: 900;
	letter-spacing: -0.5px;
	color: var(--black);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
    img{
        width: 200px;
    }
}

.nav-logo span {
	color: var(--red);
}

.nav-logo-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--red);
}

.nav-links {
	display: flex;
	gap: 2px;
	list-style: none;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 100px;
	padding: 10px;
	border: 1px solid rgba(0, 0, 0, 0.07);
}

.nav-links li a {
	font-size: 13px;
	font-weight: 550;
	color: var(--gray-700);
	text-decoration: none;
	padding: 6px 14px;
	border-radius: 100px;
	transition: all 0.2s;
}

.nav-links li:first-child a {
	background: var(--black);
	color: white;
}

.nav-links li a:hover {
	background: var(--gray-200);
	color: var(--black);
}

.nav-cta {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 650;
	padding: 9px 20px;
	border-radius: 100px;
	background: white;
	color: var(--black);
	border: 1px solid rgba(0, 0, 0, 0.12);
	text-decoration: none;
	transition: all 0.2s;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-cta:hover {
	background: var(--black);
	color: white;
}

/* ─── HAMBURGER MENU ─── */
.hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: white;
	border: 1px solid rgba(0,0,0,0.1);
	cursor: pointer;
	gap: 5px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transition: background 0.2s;
	z-index: 1100;
	position: relative;
}

.hamburger:hover {
	background: var(--black);
}

.hamburger:hover .ham-line {
	background: white;
}

.ham-line {
	width: 20px;
	height: 2px;
	background: var(--black);
	border-radius: 2px;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center;
}

.hamburger.open .ham-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.hamburger.open .ham-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.hamburger.open .ham-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
	display: none;
	position: fixed;
	top: var(--nav-h);
	left: 0;
	right: 0;
	background: rgba(247, 245, 242, 0.97);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-bottom: 1px solid rgba(0,0,0,0.08);
	padding: 24px;
	z-index: 999;
	flex-direction: column;
	gap: 4px;
	transform: translateY(-20px);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

.mobile-nav.open {
	transform: translateY(0);
	opacity: 1;
	pointer-events: all;
}

.mobile-nav a {
	font-size: 15px;
	font-weight: 650;
	color: var(--gray-700);
	text-decoration: none;
	padding: 13px 16px;
	border-radius: 12px;
	transition: all 0.2s;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-nav a:hover {
	background: white;
	color: var(--black);
}

.mobile-nav a:last-child {
	background: var(--black);
	color: white;
	margin-top: 8px;
	justify-content: center;
}

.mobile-nav a:last-child:hover {
	background: var(--red);
}

/* ─── REVEAL ─── */
.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
	opacity: 1;
	transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── SECTION TAGS ─── */
.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--red);
	background: rgba(247, 19, 82, 0.07);
	border: 1px solid rgba(247, 19, 82, 0.15);
	border-radius: 100px;
	padding: 5px 14px;
	margin-bottom: 16px;
}

.section-h2 {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 850;
	letter-spacing: -1.2px;
	line-height: 1.1;
	margin-bottom: 18px;
}

.section-h2 em {
	font-style: normal;
	color: var(--red);
}

.section-p {
	font-size: 15px;
	line-height: 1.75;
	color: var(--gray-700);
	margin-bottom: 28px;
}

/* ─── BUTTONS ─── */
.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--black);
	color: white;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: -0.2px;
	padding: 13px 24px;
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.25s ease;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

.btn-primary:hover {
	background: var(--red);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(247, 19, 82, 0.3);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: white;
	color: var(--black);
	font-size: 13.5px;
	font-weight: 700;
	padding: 13px 24px;
	border-radius: 100px;
	text-decoration: none;
	transition: all 0.25s ease;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.btn-secondary:hover {
	background: var(--gray-200);
	transform: translateY(-2px);
}

.btn-arrow {
	font-size: 15px;
}

/* ════════════════════════════════════════
           HERO
        ════════════════════════════════════════ */
#hero {
	min-height: 100vh;
	background: var(--cream);
	padding-top: var(--nav-h);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	position: relative;
}

#hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
	pointer-events: none;
	z-index: 0;
}

.hero-main {
	flex: 1;
	display: flex;
	align-items: center;
	gap: 40px;
	padding: 60px 30px;
	max-width: 1280px;
	margin: 0 auto;
	width: 100%;
	position: relative;
	z-index: 1;
}

/* LEFT */
.hero-left {
	flex: 0 0 auto;
	max-width: 480px;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: white;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 100px;
	padding: 8px 16px;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--gray-700);
	margin-bottom: 28px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
	animation: fadeUp 0.6s ease forwards;
}

.hero-badge-dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 0 0 3px rgba(247, 19, 82, 0.2);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { box-shadow: 0 0 0 3px rgba(247, 19, 82, 0.2); }
	50% { box-shadow: 0 0 0 6px rgba(247, 19, 82, 0.1); }
}

.hero-badge-heart {
	color: var(--red);
	animation: heartbeat 1.4s ease-in-out infinite;
}

@keyframes heartbeat {
	0%, 100% { transform: scale(1); }
	14% { transform: scale(1.3); }
	28% { transform: scale(1); }
	42% { transform: scale(1.2); }
	56% { transform: scale(1); }
}

.hero-h1 {
	font-size: clamp(44px, 5.5vw, 72px);
	font-weight: 900;
	letter-spacing: -2.5px;
	line-height: 1;
	color: var(--black);
	margin-bottom: 20px;
	animation: fadeUp 0.6s 0.1s ease forwards;
	opacity: 0;
}

.hero-sub {
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--gray-400);
	max-width: 360px;
	margin-bottom: 32px;
	animation: fadeUp 0.6s 0.2s ease forwards;
	opacity: 0;
}

.hero-btns {
	display: flex;
	align-items: center;
	gap: 12px;
	animation: fadeUp 0.6s 0.3s ease forwards;
	opacity: 0;
}

@keyframes fadeUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* RIGHT */
.hero-right {
	flex: 1;
	position: relative;
	min-height: 500px;
	animation: fadeUp 0.7s 0.15s ease forwards;
	opacity: 0;
}

/* Main photo card */
.hero-photo-card {
	position: absolute;
	top: 0;
	right: -54px;
	width: 670px;
	height: 500px;
	border-radius: 24px;
	overflow: visible;
}

.hero-photo-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: rgba(255, 255, 255, 0.25);
	font-size: 13px;
}

.hero-photo-placeholder img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: visible;
}

.photo-icon {
	font-size: 52px;
	opacity: 0.4;
}

/* 99% stat card */
.hero-stat-card {
	position: absolute;
	top: 30px;
	left: -10px;
	width: 200px;
	background: #1a1a1a;
	border-radius: 20px;
	padding: 18px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.22), 0 6px 16px rgba(0,0,0,0.12);
	z-index: 3;
	animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(-8px); }
}

.hero-stat-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 8px;
}

.hero-stat-num {
	font-size: 42px;
	font-weight: 900;
	color: white;
	letter-spacing: -2px;
	line-height: 1;
}

.hero-stat-num sup {
	font-size: 18px;
	font-weight: 800;
	vertical-align: super;
}

.hero-stat-leaf {
	font-size: 22px;
	animation: leafSpin 3s ease-in-out infinite;
}

@keyframes leafSpin {
	0%, 100% { transform: rotate(-5deg) scale(1); }
	50% { transform: rotate(10deg) scale(1.1); }
}

.hero-stat-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.5;
	margin-bottom: 14px;
}

.hero-stat-bars {
	display: flex;
	align-items: flex-end;
	gap: 5px;
	height: 36px;
}

.stat-bar {
	flex: 1;
	border-radius: 4px;
	background: linear-gradient(to top, var(--red), rgba(247, 19, 82, 0.3));
	transform-origin: bottom;
	animation: barGrow 2.5s ease-in-out infinite;
}

.stat-bar:nth-child(1) { height: 50%; animation-delay: 0s; }
.stat-bar:nth-child(2) { height: 80%; animation-delay: 0.15s; }
.stat-bar:nth-child(3) { height: 100%; animation-delay: 0.3s; }
.stat-bar:nth-child(4) { height: 65%; animation-delay: 0.45s; }
.stat-bar:nth-child(5) { height: 40%; animation-delay: 0.6s; }

@keyframes barGrow {
	0%, 100% { transform: scaleY(1); opacity: 1; }
	50% { transform: scaleY(0.65); opacity: 0.6; }
}

/* Curved dashed arrow */
.hero-arrow-svg {
	position: absolute;
	top: 130px;
	left: 160px;
	width: 100px;
	height: 70px;
	z-index: 4;
	pointer-events: none;
	animation: arrowBob 3s ease-in-out infinite;
}

@keyframes arrowBob {
	0%, 100% { transform: translateX(0); }
	50% { transform: translateX(6px); }
}

/* Quality card */
.hero-quality-card {
	position: absolute;
	bottom: 40px;
	left: 30px;
	background: white;
	border-radius: 20px;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: 0 16px 40px rgba(0,0,0,0.1), 0 4px 12px rgba(0,0,0,0.06);
	z-index: 3;
	min-width: 195px;
	animation: floatCardReverse 4.5s ease-in-out infinite;
}

@keyframes floatCardReverse {
	0%, 100% { transform: translateY(0px); }
	50% { transform: translateY(7px); }
}

.quality-num {
	font-size: 11px;
	color: var(--gray-400);
	font-weight: 700;
	letter-spacing: 1px;
}

.quality-icon-wrap {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: linear-gradient(135deg, #22c55e, #16a34a);
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 18px;
	box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
	animation: iconRotate 4s ease-in-out infinite;
}

@keyframes iconRotate {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(-15deg); }
	75% { transform: rotate(15deg); }
}

.quality-text-main {
	font-size: 16px;
	font-weight: 850;
	letter-spacing: -0.4px;
	line-height: 1.2;
	color: var(--black);
}

/* Play button */
.hero-play-btn {
	position: absolute;
	bottom: -26px;
	right: 30px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: var(--black);
	color: white;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	z-index: 3;
	box-shadow: 0 8px 24px rgba(0,0,0,0.25);
	padding-left: 3px;
	transition: all 0.2s;
	animation: playPulse 2s ease-in-out infinite;
}

@keyframes playPulse {
	0%, 100% {
		box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 0 0 rgba(247,19,82,0);
	}
	50% {
		box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 0 0 12px rgba(247,19,82,0.15);
	}
}

.hero-play-btn:hover {
	background: var(--red);
	transform: scale(1.08);
	animation: none;
	box-shadow: 0 8px 28px rgba(247,19,82,0.4);
}

.hero-play-label {
	position: absolute;
	bottom: -8px;
	right: 88px;
	font-size: 12px;
	font-weight: 650;
	color: var(--gray-700);
	white-space: nowrap;
	z-index: 3;
}

/* Brand strip */
.brand-strip {
	width: 100%;
	overflow: hidden;
	border-top: 1px solid rgba(0,0,0,0.07);
	padding: 20px 0;
	background: rgba(255,255,255,0.5);
	position: relative;
	z-index: 1;
}

.brand-track {
	display: flex;
	gap: 32px;
	align-items: center;
	animation: scrollLeft 22s linear infinite;
	width: max-content;
}

@keyframes scrollLeft {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.brand-item {
	font-size: 14px;
	font-weight: 700;
	color: var(--gray-400);
	white-space: nowrap;
	letter-spacing: -0.3px;
	transition: color 0.2s;
}

.brand-item:hover { color: var(--black); }

/* ════════════════════════════════════════
           ABOUT
        ════════════════════════════════════════ */
#about {
	background: white;
	padding: 100px 80px;
}

.about-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-visual {
	position: relative;
	min-height: 420px;
}

.about-hex-bg {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background: radial-gradient(ellipse at 40% 60%, rgba(247,19,82,0.06) 0%, transparent 70%);
	border-radius: 40px;
	animation: hexBgPulse 5s ease-in-out infinite;
}

@keyframes hexBgPulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.6; transform: scale(1.04); }
}

.about-hexagon-wrap {
	width: 555px;
	height: 505px;
	clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
	background: linear-gradient(135deg, #1a1a1a, #2d0010);
	display: flex;
	align-items: center;
	justify-content: center;
}

.about-hexagon-wrap img {
	width: 100%;
	height: 100%;
}

.about-float-card {
	position: absolute;
	background: white;
	border-radius: 16px;
	padding: 14px 18px;
	display: flex;
	align-items: center;
	gap: 12px;
	box-shadow: 0 12px 32px rgba(0,0,0,0.1), 0 3px 8px rgba(0,0,0,0.06);
	border: 1px solid rgba(0,0,0,0.05);
}

.card-1 {
	top: 20px;
	left: 0;
	animation: floatCard 3.5s ease-in-out infinite;
}

.card-2 {
	bottom: 50px;
	right: 0;
	animation: floatCardReverse 4s ease-in-out infinite;
}

.float-icon {
	font-size: 22px;
}

.float-text-main {
	font-size: 13px;
	font-weight: 750;
	letter-spacing: -0.3px;
	color: var(--black);
}

.float-text-sub {
	font-size: 11px;
	color: var(--gray-400);
	font-weight: 500;
}

.about-points {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 28px;
}

.about-point {
	font-size: 12.5px;
	font-weight: 650;
	background: var(--cream);
	border: 1px solid var(--gray-200);
	border-radius: 100px;
	padding: 6px 14px;
	color: var(--gray-700);
	transition: all 0.2s;
}

.about-point:hover {
	background: var(--black);
	color: white;
	border-color: var(--black);
	transform: translateY(-2px);
}

/* ════════════════════════════════════════
           SERVICES
        ════════════════════════════════════════ */
#services {
	background: var(--cream);
	padding: 100px 80px;
}

.services-header {
	max-width: 1200px;
	margin: 0 auto 60px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: end;
}

.services-header .section-tag {
	background: rgba(247, 19, 82, 0.12);
	color: var(--red);
}

.services-header .section-h2 {
	color: var(--black);
	margin-bottom: 0;
}

.services-header p {
	color: var(--red);
	font-size: 14px;
	line-height: 1.7;
	margin: 0;
}

.services-bento {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.svc-card {
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 24px;
	overflow: hidden;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	transition: transform 0.3s ease, border-color 0.3s, box-shadow 0.3s;
	position: relative;
	backdrop-filter: blur(10px);
	box-shadow: inset 0px 0px 10px #f3a1b7 !important;
}

.svc-card:hover {
	transform: translateY(-6px);
	border-color: rgba(247, 19, 82, 0.3);
	box-shadow: 0 20px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(247,19,82,0.1);
}

.svc-card-wide { grid-column: span 2; }

.svc-illustration {
	height: 160px;
	border-radius: 14px;
	margin-bottom: 6px;
	position: relative;
	overflow: hidden;
	background: #1a1a1a;
	display: flex;
	align-items: center;
	justify-content: center;
}

.svc-illustration video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.svc-illus-1 { background: linear-gradient(135deg, #1a0508, #2d0010); }
.svc-illus-2 { background: linear-gradient(135deg, #0d0a1a, #1a0a2d); }
.svc-illus-3 { background: linear-gradient(135deg, #080f1a, #001028); }
.svc-illus-4 { background: linear-gradient(135deg, #0d0a0a, #1a0505); }
.svc-illus-5 { background: linear-gradient(135deg, #0f0d00, #1a1200); }

.svc-card-num {
	font-size: 11px;
	font-weight: 700;
	color: rgba(247, 19, 82, 0.6);
	letter-spacing: 2px;
}

.svc-card-title {
	font-size: 18px;
	font-weight: 800;
	color: var(--black);
	letter-spacing: -0.4px;
}

.svc-card-desc {
	font-size: 13px;
	line-height: 1.65;
	color: var(--gray-700);
	flex: 1;
}

.svc-card-link {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--red);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 4px;
	transition: gap 0.2s;
}

.svc-card-link:hover { gap: 8px; }

/* ════════════════════════════════════════
           PROCESS
        ════════════════════════════════════════ */
#process {
	background: var(--black);
	padding: 100px 80px;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.process-header {
	max-width: 700px;
	margin: 0 auto 70px;
	text-align: center;
}

.process-header .section-h2 { color: white; }

.process-header p {
	color: rgba(255, 255, 255, 0.38);
	font-size: 14.5px;
	margin: 0;
}

.process-steps-wrap {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

.process-spine {
	position: absolute;
	left: 50%;
	top: 0;
	bottom: 0;
	width: 1px;
	background: linear-gradient(to bottom, transparent, rgba(247,19,82,0.3), transparent);
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	padding: 40px 0;
}

.spine-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--red);
	box-shadow: 0 0 12px rgba(247,19,82,0.5);
	animation: spineDotPulse 2s ease-in-out infinite;
}

.spine-dot:nth-child(2) { animation-delay: 0.66s; }
.spine-dot:nth-child(3) { animation-delay: 1.32s; }

@keyframes spineDotPulse {
	0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(247,19,82,0.5); }
	50% { transform: scale(1.5); box-shadow: 0 0 20px rgba(247,19,82,0.8); }
}

.process-steps-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 80px;
}

.process-step { position: relative; }

.step-card {
	background: #111;
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 20px;
	overflow: hidden;
	transition: transform 0.3s, border-color 0.3s;
}

.step-card:hover {
	transform: translateY(-4px);
	border-color: rgba(247,19,82,0.25);
}

.step-inner {
	padding: 24px;
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.step-icon-wrap {
	font-size: 22px;
	padding: 10px;
	background: rgba(247,19,82,0.08);
	border-radius: 12px;
	flex-shrink: 0;
	transition: transform 0.3s, background 0.3s;
}

.step-card:hover .step-icon-wrap {
	transform: rotate(10deg) scale(1.1);
	background: rgba(247,19,82,0.15);
}

.step-num {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--red);
	margin-bottom: 6px;
	text-transform: uppercase;
}

.step-title {
	font-size: 15px;
	font-weight: 800;
	color: white;
	letter-spacing: -0.3px;
	margin-bottom: 8px;
}

.step-desc {
	font-size: 13px;
	line-height: 1.65;
	color: rgba(255,255,255,0.4);
}

.process-metrics {
	max-width: 1000px;
	margin: 60px auto 0;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.process-metric-card {
	background: #111;
	border: 1px solid rgba(255,255,255,0.07);
	border-radius: 20px;
	padding: 28px;
	text-align: center;
	transition: border-color 0.3s, transform 0.3s;
}

.process-metric-card:hover {
	border-color: rgba(247,19,82,0.25);
	transform: translateY(-4px);
}

.metric-num {
	font-size: 44px;
	font-weight: 900;
	color: white;
	letter-spacing: -2px;
	line-height: 1;
	margin-bottom: 8px;
}

.metric-num span { color: var(--red); }

.metric-title {
	font-size: 14px;
	font-weight: 750;
	color: white;
	margin-bottom: 8px;
	letter-spacing: -0.2px;
}

.metric-desc {
	font-size: 12.5px;
	color: rgba(255,255,255,0.35);
	line-height: 1.6;
}

/* Counter animation */
.metric-num[data-target] {
	transition: none;
}

/* ════════════════════════════════════════
           WHY CHOOSE US
        ════════════════════════════════════════ */
#why {
	background: white;
	padding: 100px 80px;
}

.why-inner {
	max-width: 1160px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: start;
}

.why-features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}

.why-feature {
	padding: 24px;
	border-radius: 18px;
	background: var(--cream);
	border: 1px solid var(--gray-200);
	transition: all 0.25s;
}

.why-feature:hover {
	background: white;
	border-color: var(--red);
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.why-feature-icon {
	font-size: 20px;
	display: block;
	margin-bottom: 12px;
	transition: transform 0.3s;
}

.why-feature:hover .why-feature-icon {
	transform: scale(1.3) rotate(-10deg);
}

.why-feature-title {
	font-size: 14px;
	font-weight: 800;
	letter-spacing: -0.2px;
	color: var(--black);
	margin-bottom: 6px;
}

.why-feature-desc {
	font-size: 12.5px;
	line-height: 1.65;
	color: var(--gray-400);
}

/* ════════════════════════════════════════
           PORTFOLIO
        ════════════════════════════════════════ */
#portfolio {
	background: var(--cream);
	padding: 100px 0;
	overflow: hidden;
}

.portfolio-header {
	max-width: 1200px;
	margin: 0 auto 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 80px;
}

.portfolio-header-right {
	max-width: 440px;
	text-align: right;
}

.portfolio-header-right p {
	font-size: 13.5px;
	line-height: 1.7;
	color: var(--gray-400);
	margin-bottom: 16px;
}

.portfolio-carousel-outer {
	position: relative;
	width: 100%;
	padding: 20px 0 40px;
}

.portfolio-carousel-track {
	display: flex;
	gap: 20px;
	align-items: center;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	padding: 0 calc(50vw - 280px);
}

.pf-card {
	flex-shrink: 0;
	width: 520px;
	border-radius: 28px;
	overflow: hidden;
	position: relative;
	background: var(--black);
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	cursor: pointer;
	box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.pf-card.active {
	box-shadow: 0 32px 80px rgba(0,0,0,0.24), 0 8px 24px rgba(0,0,0,0.14);
}

.pf-card.side {
	width: 360px;
	filter: brightness(0.7);
	transform: scale(0.92);
}

.pf-img-area {
	width: 100%;
	height: 360px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pf-card.side .pf-img-area { height: 260px; }

.pf-img-gradient { position: absolute; inset: 0; }

.pf-img-icon {
	font-size: 80px;
	opacity: 0.2;
	position: relative;
	z-index: 1;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.pf-card.active:hover .pf-img-icon {
	transform: scale(1.15) rotate(5deg);
	opacity: 0.3;
}

.pf-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 24px 26px;
	background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
	z-index: 2;
}

.pf-overlay-tag {
	font-size: 11px;
	font-weight: 700;
	color: rgba(255,255,255,0.55);
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.pf-overlay-title {
	font-size: 19px;
	font-weight: 850;
	color: white;
	letter-spacing: -0.5px;
}

.pf-overlay-desc {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	line-height: 1.6;
	margin-top: 5px;
}

.pf-card.side .pf-overlay { display: none; }

.portfolio-nav {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 32px;
	padding: 0 80px;
}

.pf-nav-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 1.5px solid rgba(0,0,0,0.15);
	background: white;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pf-nav-btn:hover {
	background: var(--black);
	color: white;
	border-color: var(--black);
}

.pf-nav-btn.active-btn {
	background: var(--black);
	color: white;
	border-color: var(--black);
}

/* Auto-slide indicator */
.portfolio-progress {
	display: flex;
	justify-content: center;
	gap: 6px;
	margin-top: 14px;
}

.portfolio-dot {
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background: rgba(0,0,0,0.2);
	transition: all 0.3s;
	cursor: pointer;
}

.portfolio-dot.active {
	width: 24px;
	background: var(--black);
}

/* ════════════════════════════════════════
           PRICING
        ════════════════════════════════════════ */
#pricing {
	background: var(--black);
	padding: 100px 80px;
}

.pricing-header {
	max-width: 700px;
	margin: 0 auto 60px;
	text-align: center;
}

.pricing-header .section-h2 { color: white; }
.pricing-header .section-p { color: rgba(255,255,255,0.4); }

.pricing-cards {
	max-width: 1100px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.price-card {
	background: #111;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 24px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: all 0.3s;
	position: relative;
}

.price-card.featured {
	background: linear-gradient(135deg, #1a0508, #2d0010);
	border-color: rgba(247,19,82,0.3);
	box-shadow: 0 0 0 1px rgba(247,19,82,0.1), 0 20px 50px rgba(247,19,82,0.12);
}

.price-card:hover {
	transform: translateY(-6px);
	border-color: rgba(247,19,82,0.3);
}

.price-badge {
	font-size: 11px;
	font-weight: 750;
	color: var(--red);
	background: rgba(247,19,82,0.1);
	border-radius: 100px;
	padding: 4px 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 6px;
	width: fit-content;
	animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
	0%, 100% { box-shadow: 0 0 0 0 rgba(247,19,82,0); }
	50% { box-shadow: 0 0 12px 2px rgba(247,19,82,0.2); }
}

.price-plan {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.3);
}

.price-title {
	font-size: 26px;
	font-weight: 900;
	color: white;
	letter-spacing: -0.8px;
}

.price-for {
	font-size: 12px;
	color: rgba(255,255,255,0.35);
	margin-bottom: 4px;
}

.price-amount {
	font-size: 38px;
	font-weight: 900;
	color: white;
	letter-spacing: -1.5px;
	line-height: 1.1;
}

.price-also {
	font-size: 12px;
	color: rgba(255,255,255,0.3);
	margin-bottom: 4px;
}

.price-divider {
	height: 1px;
	background: rgba(255,255,255,0.08);
	margin: 16px 0;
}

.price-features {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
}

.price-features li {
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	line-height: 1.5;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	transition: color 0.2s;
}

.price-features li:hover { color: rgba(255,255,255,0.9); }

.price-features li::before {
	content: "✦";
	color: var(--red);
	font-size: 10px;
	flex-shrink: 0;
	margin-top: 3px;
}

.price-cta {
	display: block;
	text-align: center;
	background: rgba(255,255,255,0.08);
	color: white;
	font-size: 13.5px;
	font-weight: 750;
	padding: 13px;
	border-radius: 12px;
	text-decoration: none;
	margin-top: 20px;
	transition: all 0.2s;
	border: 1px solid rgba(255,255,255,0.1);
}

.price-cta:hover,
.price-card.featured .price-cta {
	background: var(--red);
	border-color: var(--red);
	box-shadow: 0 8px 24px rgba(247,19,82,0.35);
}

.pricing-note {
	text-align: center;
	font-size: 13px;
	color: rgba(255,255,255,0.3);
	margin-top: 32px;
}

/* ════════════════════════════════════════
           CONTACT
        ════════════════════════════════════════ */
#contact {
	background: var(--cream);
	border-top: 1px solid rgba(255,255,255,0.06);
	padding: 100px 80px;
}

.contact-inner {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 80px;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-top: 28px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 16px;
	background: rgba(255,255,255,0.04);
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,0.07);
	transition: all 0.25s;
}

.contact-info-item:hover {
	background: white;
	border-color: rgba(247,19,82,0.2);
	transform: translateX(4px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}

.contact-info-icon {
	font-size: 18px;
	flex-shrink: 0;
}

.contact-info-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--red);
	margin-bottom: 3px;
}

.contact-info-value {
	font-size: 14px;
	font-weight: 700;
	color: var(--black);
}

.contact-form {
	background: #111;
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 28px;
	padding: 40px;
}

.form-title {
	font-size: 22px;
	font-weight: 850;
	color: white;
	letter-spacing: -0.5px;
	margin-bottom: 4px;
}

.form-sub {
	font-size: 13px;
	color: rgba(255,255,255,0.35);
	margin-bottom: 24px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-bottom: 14px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 0;
}

.form-group label {
	font-size: 11.5px;
	font-weight: 700;
	color: rgba(255,255,255,0.45);
	letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
	background: rgba(255,255,255,0.05);
	border: 1px solid rgba(255,255,255,0.09);
	border-radius: 10px;
	padding: 11px 14px;
	color: white;
	font-family: var(--font);
	font-size: 13.5px;
	transition: border-color 0.2s, background 0.2s;
	outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
	color: rgba(255,255,255,0.22);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: rgba(247,19,82,0.4);
	background: rgba(247,19,82,0.04);
}

.form-group select option { background: #1a1a1a; }
.form-group textarea { height: 110px; resize: none; }
.form-group { margin-bottom: 14px; }

.form-trust {
	font-size: 12px;
	color: rgba(255,255,255,0.25);
	text-align: center;
	margin-top: 14px;
}

.contact-form .btn-primary {
	width: 100%;
	justify-content: center;
	border: none;
	font-size: 14px;
}

/* ════════════════════════════════════════
           BLOG
        ════════════════════════════════════════ */
#blog {
	background: white;
	padding: 100px 80px;
}

.blog-header {
	max-width: 1200px;
	margin: 0 auto 50px;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.blog-header-left .section-tag {
	color: var(--gray-700);
	background: var(--cream);
	border-color: var(--gray-200);
}

.blog-header-left .section-h2 {
	font-size: clamp(32px, 4vw, 52px);
	margin-bottom: 0;
}

.blog-controls { display: flex; gap: 8px; }

.blog-ctrl-btn {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 1.5px solid rgba(0,0,0,0.12);
	background: white;
	cursor: pointer;
	font-size: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.blog-ctrl-btn:hover,
.blog-ctrl-btn.active-btn {
	background: var(--black);
	color: white;
	border-color: var(--black);
}

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

.blog-card {
	border-radius: 24px;
	overflow: visible;
	transition: transform 0.3s;
	cursor: pointer;
}

.blog-card:hover { transform: translateY(-6px); }

.blog-photo {
	width: 100%;
	height: 280px;
	border-radius: 20px;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
}

.blog-photo-bg { position: absolute; inset: 0; transition: transform 0.5s ease; }
.blog-card:hover .blog-photo-bg { transform: scale(1.05); }

.blog-photo-icon {
	font-size: 64px;
	opacity: 0.18;
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.4s ease, opacity 0.4s ease;
}

.blog-card:hover .blog-photo-icon {
	transform: scale(1.2) rotate(10deg);
	opacity: 0.28;
}

.blog-meta-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.blog-author-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--black);
	color: white;
	font-size: 13px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid white;
	box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.blog-tag-pill {
	font-size: 11.5px;
	font-weight: 700;
	background: var(--cream);
	color: var(--gray-700);
	border: 1px solid var(--gray-200);
	border-radius: 100px;
	padding: 4px 12px;
	transition: all 0.2s;
}

.blog-card:hover .blog-tag-pill {
	background: var(--red);
	color: white;
	border-color: var(--red);
}

.blog-readtime {
	font-size: 11.5px;
	font-weight: 600;
	color: var(--gray-400);
}

.blog-title {
	font-size: 18px;
	font-weight: 850;
	letter-spacing: -0.4px;
	color: var(--black);
	line-height: 1.25;
	margin-bottom: 10px;
}

.blog-excerpt {
	font-size: 13px;
	line-height: 1.65;
	color: var(--gray-400);
}

/* ════════════════════════════════════════
           REVIEWS
        ════════════════════════════════════════ */
#reviews {
	background: var(--cream);
	padding: 100px 80px;
	overflow: hidden;
}

.reviews-header {
	max-width: 700px;
	margin: 0 auto 50px;
	text-align: center;
}

.brands-slider {
	overflow: hidden;
	margin-bottom: 60px;
}

.brands-track {
	display: flex;
	gap: 28px;
	animation: scrollLeft 24s linear infinite;
	width: max-content;
}

.brand-logo-item {
	font-size: 13.5px;
	font-weight: 750;
	color: var(--gray-700);
	white-space: nowrap;
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 8px 18px;
	background: white;
	border-radius: 100px;
	border: 1px solid var(--gray-200);
	box-shadow: 0 2px 8px rgba(0,0,0,0.04);
	transition: all 0.2s;
}

.brand-logo-item:hover {
	background: var(--black);
	color: white;
	border-color: var(--black);
	transform: scale(1.05);
}

.brand-logo-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--red);
}

/* Auto-sliding reviews */
.reviews-slider-wrap {
	overflow: hidden;
	position: relative;
}

.reviews-slider-wrap::before,
.reviews-slider-wrap::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.reviews-slider-wrap::before {
	left: 0;
	background: linear-gradient(to right, var(--cream), transparent);
}

.reviews-slider-wrap::after {
	right: 0;
	background: linear-gradient(to left, var(--cream), transparent);
}

.reviews-grid-bottom {
	display: flex;
	gap: 14px;
	animation: reviewsScroll 30s linear infinite;
	width: max-content;
}

.reviews-grid-bottom:hover {
	animation-play-state: paused;
}

@keyframes reviewsScroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

.review-card {
	background: white;
	border: 1px solid rgba(0,0,0,0.07);
	border-radius: 20px;
	padding: 24px;
	transition: all 0.3s;
	min-width: 300px;
	max-width: 300px;
	flex-shrink: 0;
}

.review-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.08);
	border-color: rgba(247,19,82,0.15);
}

.review-stars {
	color: #f59e0b;
	font-size: 13px;
	margin-bottom: 12px;
	letter-spacing: 2px;
}

.review-text {
	font-size: 13px;
	line-height: 1.7;
	color: var(--gray-700);
	margin-bottom: 18px;
}

.review-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.review-avatar {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 800;
	color: white;
}

.review-name {
	font-size: 13px;
	font-weight: 750;
	color: var(--black);
	letter-spacing: -0.2px;
}

.review-role {
	font-size: 11px;
	color: var(--gray-400);
}

/* ════════════════════════════════════════
           FOOTER
        ════════════════════════════════════════ */
footer {
	background: var(--black);
	padding: 70px 80px 40px;
	border-radius: 80px;
	margin: 15px;
}

.footer-socials {
	display: flex;
	gap: 10px;
	margin-bottom: 50px;
}

.footer-social {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: rgba(255,255,255,0.07);
	border: 1px solid rgba(255,255,255,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.5);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
	transition: all 0.2s;
}

.footer-social:hover {
	background: var(--red);
	color: white;
	border-color: var(--red);
	transform: translateY(-3px) rotate(5deg);
}

.footer-big-heading { margin-bottom: 50px; }

.footer-big-heading .small-label {
	font-size: 13px;
	color: rgba(255,255,255,0.3);
	margin-bottom: 10px;
}

.footer-big-heading h2 {
	font-size: 90px;
	font-weight: 900;
	color: var(--gray-400);
	letter-spacing: -4px;
	line-height: 0.9;
}

.footer-big-heading h2 span { color: var(--red); }

.footer-top {
	display: grid;
	grid-template-columns: 1.2fr 2fr;
	gap: 60px;
	margin-bottom: 50px;
}

.footer-logo {
	font-size: 22px;
	font-weight: 900;
	color: white;
	letter-spacing: -0.5px;
	margin-bottom: 14px;
    img{
        width: 150px;
    }
}

.footer-logo span { color: var(--red); }

.footer-tagline {
	font-size: 13.5px;
	line-height: 1.7;
	color: rgba(255,255,255,0.35);
	margin-bottom: 24px;
}

.newsletter-wrap { display: flex; gap: 8px; }

.newsletter-input {
	flex: 1;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 10px;
	padding: 11px 14px;
	color: white;
	font-family: var(--font);
	font-size: 13px;
	outline: none;
	transition: border-color 0.2s;
}

.newsletter-input:focus { border-color: rgba(247,19,82,0.4); }
.newsletter-input::placeholder { color: rgba(255,255,255,0.25); }

.newsletter-btn {
	background: var(--red);
	color: white;
	border: none;
	border-radius: 10px;
	padding: 11px 18px;
	font-family: var(--font);
	font-size: 13px;
	font-weight: 750;
	cursor: pointer;
	transition: opacity 0.2s, transform 0.2s;
}

.newsletter-btn:hover { opacity: 0.85; transform: scale(1.04); }

.footer-links {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.footer-col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-col-title {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.3);
	margin-bottom: 4px;
}

.footer-col a {
	font-size: 13.5px;
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
	color: white;
	padding-left: 4px;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.07);
	padding-top: 26px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-copy span { color: rgba(255,255,255,0.5); }

.footer-legal { display: flex; gap: 20px; }

.footer-legal a {
	font-size: 13px;
	color: rgba(255,255,255,0.3);
	text-decoration: none;
	transition: color 0.2s;
}

.footer-legal a:hover { color: white; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
	#hero { padding-top: calc(var(--nav-h) + 10px); }

	.hero-main {
		flex-direction: column;
		padding: 30px 24px 20px;
		gap: 60px;
	}

	.hero-right {
		width: 100%;
		min-height: 400px;
	}

	.hero-photo-card {
		width: auto;
		height: auto;
		right: 0;
		top: 22px;
	}

	.hero-stat-card {
		width: 170px;
		top: -40px;
		left: 0;
		scale: 0.8;
	}

	.hero-quality-card {
		bottom: -3px;
		left: 10px;
		min-width: 160px;
	}

	.hero-play-btn {
		bottom: 9px;
		right: 3px;
	}

	.hero-play-label {
		right: 58px;
		bottom: 23px;
	}

	nav#navbar { padding: 0 20px; }

	.nav-links { display: none; }
	.nav-cta { display: none; }
	.hamburger { display: flex; }
	.mobile-nav { display: flex; }

	#about, #services, #why, #pricing, #contact, #blog, #reviews, footer {
		padding: 60px 24px;
	}

	.about-inner, .why-inner, .contact-inner, .footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.services-header { grid-template-columns: 1fr; }
	.services-bento { grid-template-columns: 1fr; }
	.svc-card-wide { grid-column: span 1; }

	.process-steps-grid { grid-template-columns: 1fr; }
	.process-spine { display: none; }
	.process-metrics { grid-template-columns: 1fr; }
	.pricing-cards { grid-template-columns: 1fr; }

	.portfolio-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
		padding: 0 24px;
	}

	.portfolio-header-right { text-align: left; }

	.blog-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 20px;
	}

	.blog-grid { grid-template-columns: 1fr; }

	.reviews-grid-bottom {
		animation: reviewsScroll 20s linear infinite;
	}

	.footer-links { grid-template-columns: 1fr 1fr; }

	.pf-card { width: 80vw; }
	.pf-card.side { width: 65vw; }
	.portfolio-carousel-track { padding: 0 10vw; }
	.form-row { grid-template-columns: 1fr; }

	.footer-big-heading h2 { font-size: 53px; }
	footer { border-radius: 50px; }

	.about-hexagon-wrap {
		width: auto;
		height: auto;
	}

	.card-1 { top: -18px; }

	#process { padding: 100px 20px; }
}