/* ===========================================================
   home.css — homepage-only styles.
   =========================================================== */

/* ---- Hero ----------------------------------------------- */
.hero {
	min-height: 100vh; min-height: 100svh;
	display: flex; align-items: center;
	position: relative; overflow: hidden;
	padding-top: 120px; padding-bottom: 80px;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__gradient {
	position: absolute; inset: 0;
	background: radial-gradient(80% 60% at 70% 30%, rgba(124,92,255,.30), transparent 60%),
		radial-gradient(60% 50% at 20% 70%, rgba(34,211,238,.18), transparent 60%);
}
.hero__noise {
	position: absolute; inset: 0; opacity: .06; mix-blend-mode: overlay;
	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.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero__inner { position: relative; max-width: 1200px; }
.hero__eyebrow { color: var(--vc-fg-soft); }
.hero__headline {
	font-size: clamp(2.5rem, 6vw + 1rem, 6.5rem);
	letter-spacing: -.04em; font-weight: 600; line-height: .98;
	margin: 0 0 var(--vc-s-6); max-width: 18ch;
}
.hero__sub {
	font-size: clamp(1.05rem, 1vw + .9rem, 1.5rem);
	max-width: 56ch; color: var(--vc-fg-soft);
	margin: 0 0 var(--vc-s-10);
}
.hero__actions { display: flex; gap: var(--vc-s-3); flex-wrap: wrap; }
.hero__scroll {
	position: absolute; bottom: 24px; left: 24px;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
	color: var(--vc-muted); font-size: var(--vc-text-xs); letter-spacing: .12em; text-transform: uppercase;
}
.hero__scroll-line { display: block; width: 1px; height: 56px; background: var(--vc-line-strong); position: relative; overflow: hidden; }
.hero__scroll-line::after { content: ''; position: absolute; left: 0; right: 0; top: -50%; height: 50%; background: var(--vc-fg); animation: vcScroll 2.4s var(--vc-ease-out) infinite; }
@keyframes vcScroll { 0% { top: -50%; } 100% { top: 100%; } }
@media (max-width: 767px) { .hero__canvas { display: none; } .hero__scroll { display: none; } }

/* ---- Logo marquee --------------------------------------- */
.logo-marquee { padding: clamp(40px, 5vw, 80px) 0; border-top: 1px solid var(--vc-line); border-bottom: 1px solid var(--vc-line); }
.logo-marquee__label { text-align: center; color: var(--vc-muted); font-size: var(--vc-text-xs); letter-spacing: .14em; text-transform: uppercase; margin: 0 0 var(--vc-s-8); }
.marquee { overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent); }
.marquee__track {
	display: flex; gap: var(--vc-s-12); align-items: center;
	width: max-content;
	animation: vcMarquee 36s linear infinite;
}
.marquee__item { flex: 0 0 auto; opacity: .65; transition: opacity var(--vc-dur) var(--vc-ease); }
.marquee__item:hover { opacity: 1; }
.marquee__item img { max-height: 36px; width: auto; filter: grayscale(1) brightness(2); }
.marquee__name { font-family: var(--vc-font-display); font-size: var(--vc-text-lg); color: var(--vc-fg-soft); }
@keyframes vcMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* ---- Services grid -------------------------------------- */
.services-grid { background: var(--vc-bg); }
.services-grid__more { display: flex; justify-content: center; margin-top: var(--vc-s-12); }

/* ---- Process -------------------------------------------- */
.process { background: var(--vc-bg-alt); }
.process__list {
	display: grid; gap: var(--vc-s-6);
	grid-template-columns: 1fr;
	counter-reset: process;
}
@media (min-width: 768px)  { .process__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process__list { grid-template-columns: repeat(5, 1fr); gap: var(--vc-s-4); } }
.process__step { padding: var(--vc-s-6); border: 1px solid var(--vc-line); border-radius: var(--vc-radius); background: var(--vc-bg); }
.process__num { font-family: var(--vc-font-display); font-size: var(--vc-text-2xl); color: var(--vc-accent); display: block; margin-bottom: var(--vc-s-3); }
.process__title { font-size: var(--vc-text-lg); margin: 0 0 var(--vc-s-2); }
.process__desc { font-size: var(--vc-text-sm); color: var(--vc-fg-soft); margin: 0; }

/* ---- Featured work -------------------------------------- */
.featured-work__more { display: flex; justify-content: center; margin-top: var(--vc-s-12); }

/* ---- Stats ---------------------------------------------- */
.stats { background: linear-gradient(180deg, var(--vc-bg), var(--vc-bg-alt)); }
.stats__grid { display: grid; gap: var(--vc-s-6); grid-template-columns: repeat(2, 1fr); margin-top: var(--vc-s-8); }
@media (min-width: 768px) { .stats__grid { grid-template-columns: repeat(4, 1fr); } }
.stat { text-align: left; padding: var(--vc-s-6) 0; border-top: 1px solid var(--vc-line); }
.stat__value { display: block; font-family: var(--vc-font-display); font-size: clamp(2.5rem, 4vw + 1rem, 5rem); font-weight: 600; letter-spacing: -.03em; color: var(--vc-fg); line-height: 1; }
.stat__suffix { color: var(--vc-accent); margin-left: 4px; }
.stat__label { display: block; margin-top: var(--vc-s-3); font-size: var(--vc-text-sm); color: var(--vc-muted); letter-spacing: .04em; text-transform: uppercase; }

/* ---- Products section ----------------------------------- */
.products-section { background: var(--vc-bg); }
.products-section__more { display: flex; justify-content: center; margin-top: var(--vc-s-12); }

/* ---- Testimonials --------------------------------------- */
.testimonials { background: var(--vc-bg-alt); }
.testimonials__swiper { padding-bottom: 56px; }
.testimonial { padding: var(--vc-s-8); background: var(--vc-bg); border: 1px solid var(--vc-line); border-radius: var(--vc-radius-lg); height: 100%; display: flex; flex-direction: column; gap: var(--vc-s-6); }
.testimonial__quote p { font-size: var(--vc-text-lg); color: var(--vc-fg); margin: 0; line-height: 1.5; }
.testimonial__author { display: flex; gap: var(--vc-s-3); align-items: center; margin-top: auto; }
.testimonial__author img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.testimonial__author strong { display: block; color: var(--vc-fg); font-family: var(--vc-font-display); font-weight: 500; }
.testimonial__author em { display: block; font-style: normal; color: var(--vc-muted); font-size: var(--vc-text-sm); }
.testimonials__pagination { bottom: 0 !important; }
.testimonials__pagination .swiper-pagination-bullet { background: var(--vc-fg); opacity: .25; }
.testimonials__pagination .swiper-pagination-bullet-active { background: var(--vc-accent); opacity: 1; }

/* ---- Blog preview --------------------------------------- */
.blog-preview__more { display: flex; justify-content: center; margin-top: var(--vc-s-12); }

/* ---- Final CTA ------------------------------------------ */
.final-cta {
	background: radial-gradient(60% 80% at 50% 50%, rgba(124,92,255,.18), transparent),
		var(--vc-bg);
	text-align: center; padding: clamp(80px, 12vw, 200px) 0;
}
.final-cta__inner { display: flex; flex-direction: column; align-items: center; gap: var(--vc-s-5); }
.final-cta__headline { font-size: clamp(2rem, 4vw + 1rem, 4.5rem); margin: 0; max-width: 18ch; }
.final-cta__sub { color: var(--vc-fg-soft); font-size: var(--vc-text-md); max-width: 50ch; margin: 0 0 var(--vc-s-6); }
