:root {
	--primary: #4f46e5;      /* Deeper Indigo */
	--secondary: #0ea5e9;    /* Clean Sky Blue */
	--bg-main: #f8fafc;      /* Very Light Slate */
	--card-bg: #ffffff;      /* White for cards */
	--text-main: #1e293b;    /* Dark Slate for main text */
	--text-muted-custom: #64748b; /* Medium Slate for muted text */
	--border-light: #e2e8f0; /* Subtle border color */
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--bg-main);
	color: var(--text-main);
	font-family: 'Inter', 'Segoe UI', sans-serif;
}

    /* ── NAVBAR ── */
.navbar {
	background: rgba(255,255,255,0.95) !important;
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-light);
	padding: 14px 0;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.navbar-brand {
	font-size: 1.6rem;
	font-weight: 800;
	background: linear-gradient(90deg,var(--primary),var(--secondary));
	-webkit-background-clip: text;
    background-clip: text;
	-webkit-text-fill-color: transparent;
}

.nav-link {
	color: var(--text-muted-custom) !important;
	font-weight: 500;
	margin: 0 6px;
	transition: color .3s;
}

.nav-link:hover, .nav-link.active {
	color: var(--primary) !important;
}

.btn-nav {
	background: linear-gradient(135deg,var(--primary),var(--secondary));
	border: none;
	border-radius: 30px;
	padding: 8px 24px;
	font-weight: 600;
	color: #fff;
}

.btn-nav:hover {
	opacity: .85;
	color: #fff;
}

    /* ── HERO ── */
.hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.hero-bg {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,70,229,.1) 0%, transparent 70%), radial-gradient(ellipse 50% 40% at 80% 80%, rgba(14,165,233,.05) 0%, transparent 60%), #ffffff;
}

.grid-overlay {
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(79,70,229,.04) 1px,transparent 1px), linear-gradient(90deg,rgba(79,70,229,.04) 1px,transparent 1px);
	background-size: 60px 60px;
}

.hero-content {
	position: relative;
	z-index: 2;
}

.badge-hero {
	background: rgba(79,70,229,.05);
	border: 1px solid rgba(79,70,229,.2);
	color: var(--primary);
	padding: 6px 18px;
	border-radius: 30px;
	font-size: .85rem;
	display: inline-block;
	margin-bottom: 20px;
}

.hero h1 {
	font-size: clamp(2.4rem,6vw,4.5rem);
	font-weight: 900;
	line-height: 1.1;
}

.gradient-text {
	background: linear-gradient(90deg,var(--primary),var(--secondary));
	-webkit-background-clip: text;
    background-clip: text;
	-webkit-text-fill-color: transparent;
}

.hero p {
	font-size: 1.15rem;
	color: var(--text-muted-custom);
	max-width: 560px;
	margin: 20px 0 36px;
}

.btn-primary-custom {
	background: linear-gradient(135deg,#7c3aed,#06b6d4);
	border: none;
	border-radius: 30px;
	padding: 14px 36px;
	font-weight: 700;
	font-size: 1rem;
	color: #fff;
	transition: transform .3s,box-shadow .3s;
}

.btn-primary-custom:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px rgba(79,70,229,.3);
	color: #fff;
}

.btn-outline-custom {
	border: 2px solid rgba(79,70,229,.25);
	border-radius: 30px;
	padding: 12px 34px;
	font-weight: 600;
	color: var(--primary);
	background: transparent;
	transition: .3s;
}

.btn-outline-custom:hover {
	background: rgba(79,70,229,.05);
	color: var(--primary);
	border-color: var(--primary);
}

.hero-visual {
	position: relative;
}

.code-card {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: 16px;
	padding: 24px;
	font-family: monospace;
	font-size: .85rem;
	box-shadow: 0 20px 60px rgba(79,70,229,.08);
}

.code-dots {
	display: flex;
	gap: 7px;
	margin-bottom: 16px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.dot-r {
	background: #ef4444;
}

.dot-y {
	background: #f59e0b;
}

.dot-g {
	background: #22c55e;
}

.code-line {
	margin: 4px 0;
}

.kw {
	color: #a78bfa;
}

.fn {
	color: #38bdf8;
}

.str {
	color: #34d399;
}

.cm {
	color: #475569;
}

.float-card {
	position: absolute;
	background: #ffffff;
	border: 1px solid rgba(14,165,233,.2);
	border-radius: 12px;
	padding: 14px 20px;
	font-size: .8rem;
	box-shadow: 0 8px 30px rgba(0,0,0,.06);
	color: var(--text-main);
}

.float-card.top {
	top: -20px;
	right: 20px;
	animation: float 3s ease-in-out infinite;
}

.float-card.bottom {
	bottom: -10px;
	left: 10px;
	animation: float 3s ease-in-out infinite 1.5s;
}

@keyframes float {
	0%,100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
	}
}

    /* ── STATS ── */
.stats-section {
	background: #ffffff;
	border-top: 1px solid var(--border-light);
	border-bottom: 1px solid var(--border-light);
	padding: 60px 0;
}

.stat-item h3 {
	font-size: 2.6rem;
	font-weight: 900;
	background: linear-gradient(90deg,var(--primary),var(--secondary));
	-webkit-background-clip: text;
    background-clip: text;
	-webkit-text-fill-color: transparent;
}

.stat-item p {
	color: #94a3b8;
	font-size: .9rem;
	margin-top: 4px;
}

/* ── SERVICES ── */
.section-pad {
	padding: 40px 0;
}

.section-badge {
	background: rgba(79,70,229,.05);
	border: 1px solid rgba(79,70,229,.15);
	color: var(--primary);
	padding: 5px 16px;
	border-radius: 30px;
	font-size: .8rem;
	display: inline-block;
	margin-bottom: 14px;
}

.section-title {
	font-size: clamp(1.8rem,4vw,2.8rem);
	font-weight: 800;
}

.service-card {
	background: var(--card-bg);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	padding: 34px 28px;
	height: 100%;
	transition: transform .3s,border-color .3s,box-shadow .3s;
}

.service-card:hover {
	transform: translateY(-8px);
	border-color: rgba(79,70,229,.4);
	box-shadow: 0 20px 50px rgba(79,70,229,.08);
}

.service-icon {
	width: 58px;
	height: 58px;
	border-radius: 14px;
	background: rgba(79,70,229,.08);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--primary);
	margin: 0 auto 20px;
}

.service-card h5 {
	font-weight: 700;
	margin-bottom: 12px;
}

.service-card p {
	color: var(--text-muted-custom);
	font-size: .92rem;
	line-height: 1.7;
}

    /* ── WHY US ── */
.why-section {
	background: radial-gradient(ellipse 70% 50% at 50% 50%,rgba(79,70,229,.03) 0%,transparent 70%);
}

.feature-item {
	display: flex;
	gap: 18px;
	margin-bottom: 32px;
}

.feat-icon {
	width: 50px;
	height: 50px;
	min-width: 50px;
	border-radius: 12px;
	background: linear-gradient(135deg,#7c3aed,#06b6d4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: #fff;
}

.feature-item h6 {
	font-weight: 700;
	margin-bottom: 6px;
}

.feature-item p {
	color: var(--text-muted-custom);
	font-size: .9rem;
	margin: 0;
}

.visual-box {
	background: var(--card-bg);
	border: 1px solid var(--border-light);
	border-radius: 24px;
	padding: 36px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,0,0,.03);
}

.visual-box::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: radial-gradient(circle,rgba(79,70,229,.1),transparent 70%);
	border-radius: 50%;
}

.tech-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: 30px;
	padding: 8px 16px;
	margin: 5px;
	font-size: .85rem;
	box-shadow: 0 2px 10px rgba(0,0,0,.02);
}

    /* ── PORTFOLIO ── */
.portfolio-card {
	background: var(--card-bg);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	overflow: hidden;
	transition: transform .3s,box-shadow .3s;
}

.portfolio-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(79,70,229,.1);
}

.portfolio-card:hover .port-img img {
	transform: scale(1.08);
}

.port-img {
	height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 4rem;
}

.port-body {
	padding: 24px;
}

.port-body h5 {
	font-weight: 700;
	margin-bottom: 8px;
}

.port-body p {
	color: var(--text-muted-custom);
	font-size: .9rem;
}

.tag {
	background: rgba(79,70,229,.06);
	color: var(--primary);
	padding: 3px 12px;
	border-radius: 20px;
	font-size: .75rem;
	margin: 3px 2px;
	display: inline-block;
}

    /* ── TEAM ── */
.team-card {
	background: var(--card-bg);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	padding: 30px 24px;
	text-align: center;
	transition: transform .3s,box-shadow .3s;
}

.team-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(79,70,229,.1);
}

.avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg,var(--primary),var(--secondary));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	margin: 0 auto 16px;
}

.team-avatar-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 16px;
	display: block;
	border: 3px solid var(--border-light);
	transition: transform .3s, border-color .3s;
}

.team-card:hover .team-avatar-img {
	transform: scale(1.08);
	border-color: var(--primary);
}

.team-card h6 {
	font-weight: 700;
	margin-bottom: 4px;
}

.team-card small {
	color: var(--primary);
}

.team-card p {
	color: var(--text-muted-custom);
	font-size: .85rem;
	margin-top: 10px;
}

.social-links a {
	color: var(--text-muted-custom);
	margin: 0 6px;
	font-size: 1rem;
	transition: color .3s;
}

.social-links a:hover {
	color: var(--primary);
}

    /* ── TESTIMONIALS ── */
.testi-section {
	background: rgba(79,70,229,.02);
}

.testi-card {
	background: var(--card-bg);
	border: 1px solid var(--border-light);
	border-radius: 20px;
	padding: 30px;
	height: 100%;
	box-shadow: 0 6px 20px rgba(0,0,0,.02);
}

.testi-card .stars {
	color: #f59e0b;
	margin-bottom: 16px;
}

.testi-card p {
	color: var(--text-muted-custom);
	font-style: italic;
	line-height: 1.75;
}

.testi-card .author {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 20px;
}

.testi-avatar {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: linear-gradient(135deg,var(--primary),var(--secondary));
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: .9rem;
}

    /* ── PRICING ── */
.price-card {
	background: var(--card-bg);
	border: 1px solid var(--border-light);
	border-radius: 24px;
	padding: 36px 30px;
	text-align: center;
	transition: transform .3s,box-shadow .3s;
	position: relative;
}

.price-card.popular {
	border-color: var(--primary);
	box-shadow: 0 10px 40px rgba(79,70,229,.15);
	transform: scale(1.03);
}

.popular-badge {
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(90deg,var(--primary),var(--secondary));
	color: #fff;
	padding: 4px 20px;
	border-radius: 30px;
	font-size: .78rem;
	font-weight: 600;
}

.price-card h4 {
	font-weight: 700;
	margin-bottom: 8px;
}

.price-card .price {
	font-size: 2.8rem;
	font-weight: 900;
	color: var(--text-main);
}

.price-card .price span {
	font-size: 1rem;
	color: var(--text-muted-custom);
}

.price-feature {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 10px 0;
	font-size: .9rem;
	color: var(--text-main);
}

.price-feature i {
	color: #34d399;
	font-size: .85rem;
}

.price-feature.off i {
	color: #ef4444;
}

.price-feature.off span {
	color: var(--text-muted-custom);
	text-decoration: line-through;
}

    /* ── CONTACT ── */
.contact-form {
	background: #ffffff;
	border: 1px solid var(--border-light);
	border-radius: 24px;
	padding: 44px;
	box-shadow: 0 10px 30px rgba(0,0,0,.03);
}

.form-control, .form-select {
	background: #ffffff;
	border: 1px solid var(--border-light);
	color: var(--text-main);
	border-radius: 12px;
	padding: 12px 16px;
}

.form-control:focus, .form-select:focus {
	background: #ffffff;
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(79,70,229,.15);
	color: var(--text-main);
}

.form-control::placeholder {
	color: var(--text-muted-custom);
}

.form-label {
	color: var(--text-muted-custom);
	font-size: .9rem;
	margin-bottom: 6px;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.ci-icon {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: rgba(79,70,229,.1);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.1rem;
}

    /* ── FOOTER ── */
footer {
	background: #ffffff;
	border-top: 1px solid var(--border-light);
	padding: 60px 0 30px;
}

.footer-logo {
	font-size: 1.8rem;
	font-weight: 900;
	background: linear-gradient(90deg,var(--primary),var(--secondary));
	-webkit-background-clip: text;
    background-clip: text;
	-webkit-text-fill-color: transparent;
}

.footer-link {
	color: var(--text-muted-custom);
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
	font-size: .9rem;
	transition: color .3s;
}

.footer-link:hover {
	color: var(--primary);
}

.footer-social a {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(79,70,229,.05);
	border: 1px solid rgba(79,70,229,.15);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	margin: 0 5px;
	transition: .3s;
	text-decoration: none;
}

.footer-social a:hover {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid var(--border-light);
	margin-top: 40px;
	padding-top: 24px;
	color: var(--text-muted-custom);
	font-size: .85rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-16px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(120deg); }
    66% { transform: translate(-15px, 15px) rotate(240deg); }
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: .08;
    animation: floatShape 15s ease-in-out infinite;
}
.shape-1 { width: 300px; height: 300px; background: var(--primary); top: -80px; right: -60px; animation-delay: 0s; }
.shape-2 { width: 200px; height: 200px; background: var(--secondary); bottom: -50px; left: -40px; animation-delay: -5s; }
.shape-3 { width: 150px; height: 150px; background: #a78bfa; top: 50%; left: 60%; animation-delay: -10s; }

/* ── PRODUCTS PAGE ── */
.products-hero {
    background: #ffffff;
    padding: 110px 0 70px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light);
}

.products-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(79,70,229,.06) 0%, transparent 70%),
                radial-gradient(ellipse 40% 40% at 80% 80%, rgba(14,165,233,.04) 0%, transparent 60%);
}

.products-hero .grid-overlay { opacity: .25; }

.category-filter-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
    position: sticky;
    top: 66px;
    z-index: 99;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.cat-filter {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    border-radius: 30px;
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border-light);
    color: var(--text-muted-custom);
    transition: all .25s ease;
    background: transparent;
}

.cat-filter:hover {
    background: rgba(79,70,229,.05);
    border-color: rgba(79,70,229,.3);
    color: var(--primary);
    transform: translateY(-1px);
}

.cat-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    box-shadow: 0 4px 14px rgba(79,70,229,.25);
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79,70,229,.35);
    box-shadow: 0 20px 50px rgba(79,70,229,.1), 0 8px 20px rgba(0,0,0,.04);
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-img {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.2rem;
    position: relative;
    overflow: hidden;
}

.product-card-img img {
    transition: transform .4s ease;
}

.product-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(79,70,229,.9);
    backdrop-filter: blur(8px);
    color: #fff;
    border-radius: 20px;
    padding: 4px 14px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .3px;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.product-badge.popular  { background: linear-gradient(135deg, rgba(79,70,229,.95), rgba(124,58,237,.9)); }
.product-badge.new      { background: linear-gradient(135deg, rgba(14,165,233,.95), rgba(6,182,212,.9)); }
.product-badge.sale     { background: linear-gradient(135deg, rgba(239,68,68,.95), rgba(220,38,38,.9)); }
.product-badge.enterprise { background: linear-gradient(135deg, rgba(245,158,11,.95), rgba(234,88,12,.9)); }

.product-card-body {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-cat {
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-desc {
    font-size: .85rem;
    color: var(--text-muted-custom);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 14px;
}

.product-actions { display: flex; gap: 8px; }

.btn-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 2px 10px rgba(34,197,94,.2);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(34,197,94,.35);
}

.btn-demo {
    padding: 11px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    background: var(--card-bg);
    color: var(--text-main);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all .25s ease;
    white-space: nowrap;
}

.btn-demo:hover {
    background: rgba(79,70,229,.06);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 9px 14px;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    color: var(--text-muted-custom);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    background: transparent;
}

.btn-detail:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(79,70,229,.04);
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    color: #475569;
}

.products-cta-section {
    background: linear-gradient(180deg, rgba(79,70,229,.04), rgba(14,165,233,.03));
    border-top: 1px solid var(--border-light);
    padding: 80px 0;
    position: relative;
}

/* ── PRODUCT DETAIL PAGE ── */
.detail-hero {
    background: linear-gradient(180deg, #ffffff, var(--bg-main));
    padding: 100px 0 70px;
    position: relative;
    overflow: hidden;
}

.detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(79,70,229,.06) 0%, transparent 65%),
                radial-gradient(ellipse 40% 40% at 80% 80%, rgba(14,165,233,.04) 0%, transparent 60%);
}

.detail-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 40px rgba(0,0,0,.06);
    display: inline-block;
}

.detail-product-img {
    max-height: 200px;
    max-width: 340px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.detail-image-wrap:hover .detail-product-img {
    transform: scale(1.04);
}

.detail-emoji-wrap {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.detail-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
    background: rgba(79,70,229,.08);
    color: var(--primary);
    border: 1px solid rgba(79,70,229,.2);
    margin-bottom: 14px;
}

.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .84rem;
    color: var(--text-muted-custom);
    margin-bottom: 28px;
    padding: 10px 20px;
    background: rgba(255,255,255,.7);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    display: inline-flex;
}

.breadcrumb-custom a { color: var(--text-muted-custom); text-decoration: none; transition: color .2s; }
.breadcrumb-custom a:hover { color: var(--primary); }
.breadcrumb-custom .sep { color: var(--border-light); font-size: .65rem; }

.btn-wa-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 4px 20px rgba(34,197,94,.25);
}

.btn-wa-lg:hover {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34,197,94,.35);
}

.btn-demo-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 14px;
    border: 1.5px solid var(--border-light);
    background: var(--card-bg);
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all .25s ease;
}

.btn-demo-lg:hover {
    background: rgba(79,70,229,.04);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(79,70,229,.12);
}

.detail-section {
    background: var(--bg-main);
    padding: 70px 0 80px;
}

.detail-content-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,.03);
    transition: box-shadow .3s;
}

.detail-content-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
}

.detail-section-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(79,70,229,.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}

.detail-description {
    color: var(--text-muted-custom);
    font-size: .94rem;
    line-height: 1.85;
}

.detail-description p { margin-bottom: 14px; }
.detail-description ul, .detail-description ol { padding-left: 20px; margin-bottom: 14px; }
.detail-description li { margin-bottom: 6px; }

.detail-features-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.detail-feature-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    transition: background .2s;
}

.detail-feature-row:last-child { border-bottom: none; }

.detail-feature-row:hover {
    background: rgba(79,70,229,.02);
    margin: 0 -16px;
    padding: 14px 16px;
    border-radius: 10px;
}

.feature-check {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(34,197,94,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-check i { color: #22c55e; font-size: .72rem; }
.feature-text { color: var(--text-main); font-size: .92rem; line-height: 1.5; }

.detail-price-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,.04);
}

.detail-sidebar-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 32px;
    position: sticky;
    top: 90px;
    box-shadow: 0 10px 40px rgba(0,0,0,.04);
}

.price-card-label {
    font-size: .74rem;
    font-weight: 700;
    color: var(--text-muted-custom);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}

.price-display {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 6px;
}

.detail-features-list {
    margin-top: 16px;
}

.detail-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: .88rem;
    color: var(--text-main);
}

.detail-feature-item:last-child { border-bottom: none; }
.detail-feature-item i { width: 18px; font-size: .85rem; }

.instant-response-box {
    padding: 14px;
    background: rgba(34,197,94,.04);
    border: 1px solid rgba(34,197,94,.12);
    border-radius: 12px;
    margin-bottom: 16px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: .83rem;
    color: var(--text-muted-custom);
}

.info-row:last-of-type { border-bottom: none; }
.info-row i { width: 16px; color: var(--primary); font-size: .8rem; }

.related-card-v2 {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s, box-shadow .3s;
    text-decoration: none;
    display: block;
    height: 100%;
}

.related-card-v2:hover {
    transform: translateY(-6px);
    border-color: rgba(79,70,229,.3);
    box-shadow: 0 16px 40px rgba(79,70,229,.08);
}

.related-card-img {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.related-card-body {
    padding: 20px;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 768px) {
    .products-hero { padding: 90px 0 50px; }
    .detail-hero { padding: 80px 0 50px; }
    .product-card-img { height: 150px; }
    .breadcrumb-custom { font-size: .78rem; padding: 8px 14px; }
}