@charset "utf-8";
/**
 * Simplybot Landing - Main Styles
 * Based on TemplateMo 605 Xmas Countdown
 */

/* ---- Variables ---- */
:root {
	--bg-dark: #0a0a0f;
	--bg-card: rgba(255, 255, 255, 0.03);
	--bg-glass: rgba(255, 255, 255, 0.05);
	--border-glass: rgba(255, 255, 255, 0.08);
	--border-glow: rgba(255, 255, 255, 0.15);
	--text-primary: #ffffff;
	--text-secondary: rgba(255, 255, 255, 0.6);
	--text-dim: rgba(255, 255, 255, 0.4);
	--accent-red: #ff3d5a;
	--accent-orange: #fbb00b;
	--accent-pink: #f1556a;
	--accent-green: #12d400;
	--accent-gold: #ffd700;
	--accent-blue: #4d9fff;
	--glow-red: rgba(255, 61, 61, 0.4);
	--glow-green: rgba(7, 212, 0, 0.4);
	--glow-gold: rgba(255, 215, 0, 0.3);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Space Grotesk', sans-serif;
	font-weight: 400;
	background: var(--bg-dark);
	color: var(--text-primary);
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

/* ---- Grid background pattern ---- */
.grid-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 60px 60px;
}

/* Blends color gradients over grid background */
.grid-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(ellipse at 50% 0%, rgba(228, 10, 42, 0.08) 0%, transparent 50%),
		radial-gradient(ellipse at 80% 50%, rgba(212, 120, 0, 0.05) 0%, transparent 40%),
		radial-gradient(ellipse at 20% 80%, rgba(212, 181, 1, 0.05) 0%, transparent 40%);
}

/* ---- Floating particles ---- */
.particles {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
	overflow: hidden;
}

.particle {
	position: absolute;
	width: 4px;
	height: 4px;
	background: var(--accent-gold);
	border-radius: 50%;
	opacity: 0.3;
	animation: float-particle linear infinite;
}

.particle:nth-child(odd) {
	background: var(--accent-red);
}

.particle:nth-child(3n) {
	background: var(--accent-orange);
}

@keyframes float-particle {
	0% {
		transform: translateY(100vh) rotate(0deg);
		opacity: 0;
	}

	10% {
		opacity: 0.3;
	}

	90% {
		opacity: 0.3;
	}

	100% {
		transform: translateY(-20px) rotate(360deg);
		opacity: 0;
	}
}

/* Header */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 20px 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1400px;
	margin: 0 auto;
	transition: all 0.3s ease;
	/* Add a transparent bottom border to keep height consistent when scrolled */
	border-bottom: 1px solid transparent;
}

header.scrolled {
	background: rgba(10, 10, 15, 0.8);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	/* Change border color on scroll without affecting height */
	border-bottom-color: var(--border-glass);
}

.logo {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
}
.logo .brand-img,
.logo-img {
	height: 44px;
	width: auto;
	display: block;
	object-fit: contain;
	-webkit-filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45));
	filter: drop-shadow(0 4px 10px rgba(0,0,0,0.45));
}

/* if the SVG is inlined or the file supports currentColor, let it inherit */
.logo .brand-img svg {
	height: 100%;
	width: auto;
	fill: currentColor;
}

/* Responsive sizes */
@media (max-width: 920px) {
	.logo .brand-img,
	.logo-img {
		height: 36px;
	}
}

@media (max-width: 480px) {
	.logo .brand-img,
	.logo-img {
		height: 28px;
	}
}
nav {
	display: flex;
	gap: 8px;
}

nav a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	padding: 10px 20px;
	border-radius: 12px;
	transition: all 0.3s ease;
	/* Add a transparent border to keep size consistent when active */
	border: 1px solid transparent;
	box-sizing: border-box;
}

nav a:hover {
	color: var(--text-primary);
	background: var(--bg-glass);
}

nav a.nav-active {
	color: var(--text-primary);
	background: var(--bg-glass);
	border-color: var(--border-glass);
}

.nav-cta {
	background: linear-gradient(135deg, var(--accent-red), #ff6b6b) !important;
	color: var(--text-primary) !important;
}

.nav-cta:hover {
	box-shadow: 0 8px 30px var(--glow-red);
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
	padding: 10px;
}

.nav-toggle span {
	width: 24px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -6px);
}

/* Hero Section */
.hero {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 100px 20px 100px;
	position: relative;
	z-index: 2;
	text-align: center;
}

.hero-inner {
    width: min(1100px, 90%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-direction: row;
    position: relative;
    z-index: 3;
}

.hero-content {
	flex: 1 0 60%;           /* give title more horizontal space */
	text-align: left;
}

.hero-media {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
}

/* Hero tag pill above the title */
.hero-tag {
	animation: fadeInUp 0.5s ease 0.05s forwards;
	opacity: 0;
	margin-bottom: 20px;
}

.hero-tag-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-gold);
	box-shadow: 0 0 8px var(--glow-gold);
	animation: hero-dot-pulse 2s ease-in-out infinite;
}

@keyframes hero-dot-pulse {
	0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
	50% { box-shadow: 0 0 0 6px rgba(255, 215, 0, 0); }
}

/* Hero CTA row */
.hero-ctas {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
	animation: fadeInUp 0.8s ease 0.6s forwards;
	opacity: 0;
}
/* Small trust line under the hero CTAs */
.hero-trust {
	margin-top: 18px;
	font-size: 0.82rem;
	color: var(--text-dim);
	letter-spacing: 0.3px;
	animation: fadeInUp 0.8s ease 0.7s forwards;
	opacity: 0;
}

/* ---- Hero chat widget ---- */
.chat-card {
	position: relative;
	width: 340px;
	max-width: 100%;
	height: 430px;
	border-radius: 24px;
	background: rgba(14, 14, 22, 0.85);
	border: 1px solid var(--border-glass);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	animation: fadeInUp 0.8s ease 0.5s forwards;
	opacity: 0;
}

/* Gradient rim, same treatment as the About window */
.chat-card::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 24px;
	padding: 1px;
	background: linear-gradient(135deg, rgba(255, 61, 90, 0.45), rgba(255, 215, 0, 0.25));
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	z-index: 2;
}

/* Widget header */
.chat-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-bottom: 1px solid var(--border-glass);
	background: rgba(255, 255, 255, 0.02);
}

.chat-avatar {
	width: 36px;
	height: 36px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.chat-avatar svg {
	width: 20px;
	height: 20px;
}

.chat-id {
	display: flex;
	flex-direction: column;
	line-height: 1.3;
}

.chat-id b {
	font-family: 'Syne', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-primary);
}

.chat-id i {
	font-style: normal;
	font-size: 0.7rem;
	color: var(--text-dim);
	display: flex;
	align-items: center;
	gap: 5px;
}

.chat-online {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent-gold);
	box-shadow: 0 0 6px var(--glow-gold);
}

/* Messages area */
.chat-animation {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 16px;
	gap: 10px;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%);
	mask-image: linear-gradient(180deg, transparent 0%, #000 18%);
}

.chat-animation .bubble {
	max-width: 85%;
	padding: 10px 14px;
	border-radius: 14px;
	font-size: 0.84rem;
	line-height: 1.5;
	opacity: 0;
	animation: slideIn 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
	word-wrap: break-word;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@keyframes slideIn {
	0% { opacity: 0; transform: translateY(15px) scale(0.95); }
	60% { opacity: 1; transform: translateY(-2px) scale(1.02); }
	100% { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-animation .bot {
	align-self: flex-start;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	color: var(--text-primary);
	border-bottom-left-radius: 4px;
}

.chat-animation .user {
	align-self: flex-end;
	background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
	color: #fff;
	border-bottom-right-radius: 4px;
}

/* typing indicator */
.chat-animation .bubble.typing {
	display: inline-flex;
	gap: 4px;
	padding: 13px 14px;
}

.chat-animation .bubble.typing i {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	animation: chat-typing 1s ease-in-out infinite;
}

.chat-animation .bubble.typing i:nth-child(2) { animation-delay: 0.15s; }
.chat-animation .bubble.typing i:nth-child(3) { animation-delay: 0.3s; }

@keyframes chat-typing {
	0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
	30% { transform: translateY(-4px); opacity: 1; }
}

/* Input bar */
.chat-inputbar {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-top: 1px solid var(--border-glass);
	background: rgba(255, 255, 255, 0.02);
}

.chat-placeholder {
	flex: 1;
	font-size: 0.78rem;
	color: var(--text-dim);
}

.chat-send {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.chat-send svg {
	width: 14px;
	height: 14px;
}

/* Responsive: Stack and shrink on small screens */
@media (max-width: 920px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-media {
        margin-top: 24px;
        width: 100%;
        padding: 0;
    }

    .chat-card {
        width: 100%;
        max-width: 320px;
        height: 380px;
        margin: 20px auto 0;
    }
}

.hero h1 {
	font-family: 'Syne', sans-serif;
	font-size: clamp(1.8rem, 5vw, 3.8rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -2px;
	margin-bottom: 24px;
	animation: fadeInUp 0.5s ease 0.2s forwards;
	opacity: 0;
	white-space: normal;
}

.hero h1 .gradient {
	background: linear-gradient(135deg, var(--accent-red), var(--accent-gold), var(--accent-green));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.hero h1 .gradient2 {
	background: linear-gradient(135deg, var(--accent-red), var(--accent-gold));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-subtitle {
	font-size: 1.2rem;
	color: var(--text-secondary);
	max-width: 500px;
	margin-bottom: 60px;
	animation: fadeInUp 0.8s ease 0.4s forwards;
	opacity: 0;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

.scroll-indicator {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	animation: fadeInUp 0.8s ease 1s forwards, bounce 2s ease-in-out infinite 1.5s;
	opacity: 0;
}

.scroll-indicator span {
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--text-dim);
}

.scroll-indicator .line {
	width: 1px;
	height: 40px;
	background: linear-gradient(180deg, var(--accent-red), transparent);
}

@keyframes bounce {

	0%,
	100% {
		transform: translateX(-50%) translateY(0);
	}

	50% {
		transform: translateX(-50%) translateY(10px);
	}
}

/* ---- Section common styles ---- */
section {
	position: relative;
	z-index: 2;
	padding: 120px 60px;
}

.section-header {
	padding-bottom: 0px;
	padding-top: 30px;
	text-align: center;
	margin-bottom: 20px;
}

.section-tag {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 100px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--accent-gold);
	margin-bottom: 24px;
	
}

.section-title {
	font-family: 'Syne', sans-serif;
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	letter-spacing: -1.5px;
	color: var(--text-primary);
}

.section-subtitle {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--text-secondary);
	max-width: 500px;
	margin: 20px auto 0;
}

/* ---- About Section ---- */
/* ---- Holle Section ---- */
.holle-section {
	position: relative;
	z-index: 2;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.336);
	overflow: hidden;
	padding: 80px 20px;
}

/* Soft ambient glows behind the About content, echoing the hero gradients */
.holle-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	pointer-events: none;
	z-index: 0;
}

.holle-glow-1 {
	width: 480px;
	height: 480px;
	top: -120px;
	left: -140px;
	background: radial-gradient(circle, rgba(255, 61, 90, 0.16), transparent 70%);
}

.holle-glow-2 {
	width: 420px;
	height: 420px;
	bottom: -140px;
	right: -120px;
	background: radial-gradient(circle, rgba(18, 212, 0, 0.12), transparent 70%);
}

.holle-container {
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 1200px;
	align-items: center;
	gap: 56px;
	position: relative;
	z-index: 1;
}

.holle-container .section-header {
	width: 100%;
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-glass);
}

.holle-inner {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: center;
	gap: 60px;
}

.holle-text {
	flex: 1 1 480px;
	max-width: 560px;
	text-align: left;
}

.holle-text h2 {
	font-family: 'Syne', sans-serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -1px;
	margin-bottom: 24px;
	line-height: 1.1;
	color: var(--text-primary);
}

.gradient-text {
	background: linear-gradient(135deg, var(--accent-red), var(--accent-gold), var(--accent-green));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.holle-text p {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--text-secondary);
	margin-bottom: 20px;
	text-align: left;
}

.holle-text .btn-templatemo {
	margin-top: 24px;
}

/* ---- About creative visual: multichannel flow diagram ---- */
.holle-visual {
	flex: 1 1 360px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 22px;
	min-width: 0;
}

.holle-orbit {
	position: relative;
	width: clamp(260px, 26vw, 400px);
	aspect-ratio: 1 / 1;
}

.holle-flow {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.flow-line {
	fill: none;
	stroke-width: 2;
	opacity: 0.4;
	stroke-linecap: round;
	stroke-dasharray: 6 8;
	animation: holle-dash 1.6s linear infinite;
}

.flow-line-ig {
	stroke: var(--accent-red);
}

.flow-line-ms {
	stroke: var(--accent-gold);
}

.flow-line-web {
	stroke: var(--accent-green);
}

@keyframes holle-dash {
	to {
		stroke-dashoffset: -28;
	}
}

.flow-dot-ig {
	fill: var(--accent-red);
	filter: drop-shadow(0 0 6px var(--accent-red));
}

.flow-dot-ms {
	fill: var(--accent-gold);
	filter: drop-shadow(0 0 6px var(--accent-gold));
}

.flow-dot-web {
	fill: var(--accent-green);
	filter: drop-shadow(0 0 6px var(--accent-green));
}

.holle-node,
.holle-core {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	border-radius: 22%;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.holle-node {
	width: 24%;
	aspect-ratio: 1 / 1;
	padding: 6%;
	animation: holle-float 5s ease-in-out infinite;
}

.holle-node svg {
	width: 42%;
	height: 42%;
	flex-shrink: 0;
}

.holle-node span {
	font-size: 0.6rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	color: var(--text-secondary);
	text-align: center;
	line-height: 1.15;
	overflow-wrap: break-word;
	max-width: 100%;
}

.holle-node-ig {
	left: 50%;
	top: 13%;
	color: var(--accent-red);
	border-color: rgba(255, 61, 90, 0.35);
	box-shadow: 0 0 30px rgba(255, 61, 90, 0.12);
	transform: translate(-50%, -50%);
	animation-duration: 4.6s;
	animation-delay: 0s;
}

.holle-node-ms {
	left: 82%;
	top: 68%;
	color: var(--accent-gold);
	border-color: rgba(255, 215, 0, 0.35);
	box-shadow: 0 0 30px rgba(255, 215, 0, 0.12);
	transform: translate(-50%, -50%);
	animation-duration: 5.4s;
	animation-delay: 0.3s;
}

.holle-node-web {
	left: 18%;
	top: 68%;
	color: var(--accent-green);
	border-color: rgba(18, 212, 0, 0.35);
	box-shadow: 0 0 30px rgba(18, 212, 0, 0.12);
	transform: translate(-50%, -50%);
	animation-duration: 5s;
	animation-delay: 0.6s;
}

@keyframes holle-float {
	0%,
	100% {
		transform: translate(-50%, -50%) translateY(0);
	}

	50% {
		transform: translate(-50%, -50%) translateY(-6px);
	}
}

.holle-node:hover {
	animation-play-state: paused;
	transform: translate(-50%, -50%) scale(1.12);
	border-color: var(--border-glow);
}

.holle-core {
	left: 50%;
	top: 50%;
	width: 34%;
	aspect-ratio: 1 / 1;
	padding: 8%;
	background: linear-gradient(135deg, rgba(255, 61, 90, 0.2), rgba(255, 215, 0, 0.2), rgba(18, 212, 0, 0.2));
	border: 1px solid var(--border-glow);
	box-shadow: 0 0 50px rgba(255, 215, 0, 0.15), 0 20px 50px rgba(0, 0, 0, 0.4);
	color: var(--text-primary);
	transform: translate(-50%, -50%);
	animation: holle-pulse 3s ease-in-out infinite;
	z-index: 1;
}

.holle-core svg {
	width: 38%;
	height: 38%;
}

.holle-core span {
	font-family: 'Syne', sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	color: var(--text-primary);
	overflow-wrap: break-word;
	max-width: 100%;
	text-align: center;
}

@keyframes holle-pulse {

	0%,
	100% {
		box-shadow: 0 0 50px rgba(255, 215, 0, 0.15), 0 20px 50px rgba(0, 0, 0, 0.4);
		transform: translate(-50%, -50%) scale(1);
	}

	50% {
		box-shadow: 0 0 70px rgba(255, 215, 0, 0.3), 0 20px 50px rgba(0, 0, 0, 0.4);
		transform: translate(-50%, -50%) scale(1.03);
	}
}

.holle-visual-caption {
	font-size: 0.85rem;
	color: var(--text-dim);
	text-align: center;
	max-width: 280px;
}

/* ---- About badges row ---- */
.holle-badges {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	width: 100%;
}

.holle-badge {
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding: 12px 22px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 100px;
	transition: all 0.3s ease;
}

.holle-badge:hover {
	border-color: var(--border-glow);
	transform: translateY(-3px);
}

.holle-badge-value {
	font-family: 'Syne', sans-serif;
	font-weight: 800;
	font-size: 1.3rem;
	color: var(--accent-gold);
}

.holle-badge-label {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

@media (max-width: 920px) {
	.holle-container {
		flex-direction: column;
		gap: 40px;
	}

	.holle-inner {
		flex-direction: column;
		gap: 40px;
	}

	.holle-text {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.holle-text p {
		text-align: left;
	}

	.holle-text h2 {
		font-size: clamp(1.5rem, 4vw, 2.5rem);
	}

	.holle-orbit {
		width: clamp(240px, 60vw, 320px);
	}
}

@media (max-width: 920px) {
    .full-inner {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }
    .full-image, .full-content {
        max-width: 100%;
        flex: none;
    }
    .full-content h3 {
        font-size: 1.5rem;
    }
}
.about {
	padding-top: 20px;
	padding-bottom: 20px;
	background: var(--bg-dark);
}

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

.about-image {
	position: relative;
}

.about-image-stack {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
	height: 400px;
}

.about-img-item {
	border-radius: 20px;
	overflow: hidden;
	border: none;
	position: relative;
	transition: all 0.4s ease;
}

.about-img-item:hover {
	border-color: var(--border-glow);
	transform: scale(1.02);
}

.about-img-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-img-item.img-1 {
	/*questions from different platforms image in about section*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(102%, 600px);
	height: min(102%, 350px);
	border-radius: 16px;
	overflow: hidden;
	border: none;
}

.about-content h3 {
	font-family: 'Syne', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 24px;
	line-height: 1.2;
}

.about-content h3 span {
	color: var(--accent-red);
}

.about-content p {
	color: var(--text-secondary);
	margin-bottom: 20px;
	font-size: 1.05rem;
}

/* Connect Section */
.connect {
	padding-top: 0;
	padding-bottom: 20px;
	background: var(--bg-dark);
}

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

.connect-image {
	position: relative;
	order:  2;
}

.connect-image-stack {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 16px;
	height: 400px;
}

.connect-img-item {
	border-radius: 20px;
	overflow: hidden;
	border: none;
	position: relative;
	transition: all 0.4s ease;
}

.connect-img-item:hover {
	border-color: var(--border-glow);
	transform: scale(1.02);
}

.connect-img-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.connect-img-item.img-1 {
	/*questions from different platforms image in about section*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(102%, 600px);
	height: min(102%, 350px);
	border-radius: 16px;
	overflow: hidden;
	border: none;
}
.connect-content h3 {
	font-family: 'Syne', sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	letter-spacing: -1px;
	margin-bottom: 24px;
	line-height: 1.2;
}

.connect-content h3 span {
	color: var(--accent-red);
}

.connect-content p {
	color: var(--text-secondary);
	margin-bottom: 20px;
	font-size: 1.05rem;
}

.btn-templatemo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
	border-radius: 12px;
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.btn-templatemo:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px var(--glow-red);
}

/* Secondary (ghost) button — same shape as the primary */
.btn-ghost {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 28px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 12px;
	color: var(--text-secondary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
}

.btn-ghost:hover {
	transform: translateY(-3px);
	border-color: var(--border-glow);
	color: var(--text-primary);
	background: rgba(255, 255, 255, 0.08);
}

.btn-templatemo svg {
	width: 18px;
	height: 18px;
	stroke: var(--bg-dark);
}

/* ---- Pricing Section ---- */
.pricing-section {
	background: rgba(9, 9, 13, 0.74);
	padding-bottom: 80px;
}

.pricing-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	gap: 24px;
}

.pricing-grid .pricing-card {
	max-width: 480px;
	width: 100%;
}

.pricing-card {
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 24px;
	padding: 40px 32px;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover {
	border-color: var(--border-glow);
	transform: translateY(-8px);
}

.pricing-card.pricing-featured {
	border-color: var(--accent-gold);
	box-shadow: 0 20px 60px rgba(255, 215, 0, 0.15);
}

.pricing-card.pricing-featured:hover {
	box-shadow: 0 25px 70px rgba(255, 215, 0, 0.2);
}

.pricing-header {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--border-glass);
}

.pricing-header h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 8px;
	color: var(--text-primary);
}

.pricing-price {
	font-family: 'Syne', sans-serif;
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--accent-gold);
}

.pricing-features {
	list-style: none;
	margin: 0 0 32px 0;
	padding: 0;
	flex: 1;
}

.pricing-features li {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 8px 0;
	font-size: 0.95rem;
	color: var(--text-secondary);
}

.pricing-features .check {
	color: var(--accent-gold);
	font-weight: 700;
}

.pricing-features .cross {
	color: var(--text-dim);
	opacity: 0.6;
}

.pricing-btn {
	display: block;
	text-align: center;
	padding: 16px 24px;
}

.pricing-btn-disabled {
	opacity: 0.7;
	cursor: not-allowed;
	pointer-events: none;
}

/* Features Section */
.features {
	background: linear-gradient(180deg, transparent 0%, rgba(255, 61, 90, 0.025) 50%, transparent 100%);
}

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

.features-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 24px;
	transition: all 0.4s ease;
	min-height: 180px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.features-header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.features-card:hover {
	border-color: var(--border-glow);
	transform: translateY(-6px);
	background: rgba(255, 255, 255, 0.08);
}

.features-image {
	width: 40px;
	height: 40px;
	min-width: 40px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
}

.features-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.features-content {
	padding-right: 20px;
}

.features-header h3,
.features-content h3 {
	font-family: 'Syne', sans-serif;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.5px;
	margin: 0;
	color: var(--text-primary);
	line-height: 1.3;
}

.features-content p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 0;
}

.features-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: transparent;
	border: 1px solid var(--border-glow);
	border-radius: 10px;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	transition: all 0.3s ease;
}

.features-btn svg {
	width: 16px;
	height: 16px;
	stroke: var(--accent-gold);
	transition: transform 0.3s ease;
}

.features-btn:hover {
	background: rgba(255, 215, 0, 0.1);
	border-color: var(--accent-gold);
	color: var(--accent-gold);
}

.features-btn:hover svg {
	transform: translateX(4px);
}

/* Footer */
.footer {
	position: relative;
	z-index: 2;
	margin-top: 0;
	background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(0, 0, 0, 0.5) 100%);
	border-top: 1px solid var(--border-glass);
}

.footer-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 64px 40px 32px;
}

.footer-main {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 48px;
	padding-bottom: 40px;
	border-bottom: 1px solid var(--border-glass);
}

.footer-brand .footer-logo {
	display: inline-block;
	margin-bottom: 20px;
}

.footer-brand .brand-img {
	height: 36px;
	width: auto;
}

.footer-brand p {
	color: var(--text-secondary);
	font-size: 0.95rem;
	line-height: 1.7;
	max-width: 320px;
	margin-bottom: 24px;
}

.btn-footer-cta {
	display: inline-block;
	padding: 12px 24px;
	font-size: 0.9rem;
}

.footer-nav h4,
.footer-contact h4 {
	font-family: 'Syne', sans-serif;
	font-size: 0.9rem;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-primary);
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.footer-nav ul,
.footer-contact ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-nav li,
.footer-contact li {
	margin-bottom: 10px;
}

.footer-nav a,
.footer-contact a {
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-contact a:hover {
	color: var(--accent-gold);
}

.footer-contact li {
	color: var(--text-secondary);
}

.footer-social {
	display: flex;
	gap: 10px;
	margin-top: 20px;
}

.footer-social a {
	width: 40px;
	height: 40px;
	background: var(--bg-glass);
	border: 1px solid var(--border-glass);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-secondary);
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.3s ease;
}

.footer-social a:hover {
	border-color: var(--accent-gold);
	color: var(--accent-gold);
	transform: translateY(-2px);
}

.footer-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	flex-wrap: wrap;
	gap: 16px;
}

.footer-bar p {
	font-size: 0.9rem;
	color: var(--text-dim);
	margin: 0;
}

.footer-bar-links {
	display: flex;
	gap: 24px;
}

.footer-bar a {
	font-size: 0.9rem;
	color: var(--text-dim);
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-bar a:hover {
	color: var(--accent-gold);
}

/* ---- Responsive breakpoints ---- */
@media (max-width: 1024px) {
	section {
		padding: 100px 40px;
	}

	.about-grid {
		gap: 50px;
	}

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

	.footer-main {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
}

@media (max-width: 920px) {
	header {
		padding: 15px 24px;
	}

	nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background: rgba(10, 10, 15, 0.98);
		backdrop-filter: blur(40px);
		-webkit-backdrop-filter: blur(40px);
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding: 40px;
		gap: 8px;
		transition: right 0.4s ease;
		border-left: 1px solid var(--border-glass);
	}

	nav.active {
		right: 0;
	}

	nav a {
		width: 100%;
		font-size: 1.1rem;
	}

	.nav-toggle {
		display: flex;
	}

	section {
		padding: 80px 24px;
	}

	.hero {
		padding: 120px 20px 80px;
	}

	.hero h1 {
		letter-spacing: -2px;
	}

	.about-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.about-image {
		max-width: 400px;
		margin: 0 auto;
	}

	.about-image-stack {
		height: 350px;
	}

	.features-card {
		gap: 12px;
		padding: 16px;
	}

	.features-image {
		width: 36px;
		height: 36px;
		min-width: 36px;
	}

	.footer-inner {
		padding: 48px 24px 24px;
	}

	.footer-main {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}

	.footer-brand p {
		margin-left: auto;
		margin-right: auto;
	}

	.footer-bar {
		flex-direction: column;
		text-align: center;
	}
}

/* ---- Proximity glow effect ---- */
/* Cards fetch a soft light that tracks the cursor and fades in as the
   pointer approaches, even before it actually touches the element. */
.glow-card {
	position: relative;
	overflow: hidden;
}

.glow-card::after {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: inherit;
	background: radial-gradient(280px circle at var(--glow-x, -9999px) var(--glow-y, -9999px),
		rgba(255, 255, 255, 0.14),
		rgba(255, 190, 60, 0.08) 35%,
		transparent 68%);
	opacity: 0;
	transition: opacity 0.45s ease;
	pointer-events: none;
	z-index: 3;
}

.glow-card.glow-active::after {
	opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
	.glow-card::after {
		display: none;
	}
}

/* Tab card visuals moved to tabs-section.css */
