:root {
--bg-main: #090811;
--bg-secondary: #0f0d1b;
--bg-card: rgba(22, 18, 38, 0.65);
--bg-glass: rgba(18, 15, 33, 0.75);
--border-glass: rgba(255, 255, 255, 0.09);
--border-glow: rgba(168, 85, 247, 0.4);
--text-primary: #ffffff;
--text-secondary: #a1a1aa;
--text-muted: #71717a;
--accent-magenta: #ec4899;
--accent-purple: #a855f7;
--accent-violet: #8b5cf6;
--accent-blue: #3b82f6;
--accent-cyan: #06b6d4;
--accent-green: #22c55e;
--gradient-glow-1: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, rgba(9, 8, 17, 0) 70%);
--gradient-glow-2: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(9, 8, 17, 0) 70%);
--gradient-primary: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #6366f1 100%);
--font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--radius-sm: 8px;
--radius-md: 14px;
--radius-lg: 20px;
--radius-full: 9999px;
--shadow-glow: 0 0 30px rgba(168, 85, 247, 0.25);
--shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
--transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
--transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}  :root {
--bg-main: #090811;
--bg-secondary: #0f0d1b;
--bg-card: rgba(22, 18, 38, 0.65);
--bg-glass: rgba(18, 15, 33, 0.75);
--border-glass: rgba(255, 255, 255, 0.09);
--border-glow: rgba(168, 85, 247, 0.4);
--text-primary: #ffffff;
--text-secondary: #a1a1aa;
--text-muted: #71717a;
--accent-magenta: #ec4899;
--accent-purple: #a855f7;
--accent-violet: #8b5cf6;
--accent-blue: #3b82f6;
--accent-cyan: #06b6d4;
--accent-green: #22c55e;
--gradient-glow-1: radial-gradient(circle, rgba(168, 85, 247, 0.25) 0%, rgba(9, 8, 17, 0) 70%);
--gradient-glow-2: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, rgba(9, 8, 17, 0) 70%);
--gradient-primary: linear-gradient(135deg, #ec4899 0%, #a855f7 50%, #6366f1 100%);
--font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
--font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
--radius-sm: 8px;
--radius-md: 14px;
--radius-lg: 20px;
--radius-full: 9999px;
--shadow-glow: 0 0 30px rgba(168, 85, 247, 0.25);
--shadow-card: 0 10px 40px rgba(0, 0, 0, 0.4);
--transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
--transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
} *, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
background-color: var(--bg-main);
color: var(--text-primary);
font-family: var(--font-body);
line-height: 1.6;
overflow-x: hidden;
-webkit-font-smoothing: antialiased;
}
a {
color: inherit;
text-decoration: none;
transition: var(--transition-fast);
}
ul {
list-style: none;
}
button, input, select {
font-family: inherit;
outline: none;
}
.section-container {
max-width: 1240px;
margin: 0 auto;
padding: 0 24px;
} .gradient-text-purple {
background: linear-gradient(135deg, #f472b6, #c084fc);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.gradient-text-blue {
background: linear-gradient(135deg, #a855f7, #60a5fa);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
} .header-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
z-index: 1000;
background: rgba(9, 8, 17, 0.8);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid var(--border-glass);
padding: 12px 0;
}
.header-inner {
max-width: 1280px;
margin: 0 auto;
padding: 0 32px;
display: flex;
align-items: center;
justify-content: space-between;
height: 60px;
position: relative;
} .logo-wrapper {
display: flex;
align-items: center;
gap: 12px;
position: relative;
padding: 6px 14px;
background: rgba(22, 18, 38, 0.9);
border: 1px solid var(--border-glow);
border-radius: var(--radius-md);
box-shadow: 0 0 20px rgba(168, 85, 247, 0.25);
margin-top: 4px;
transition: var(--transition-fast);
}
.logo-wrapper:hover {
transform: translateY(-2px);
box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
border-color: var(--accent-magenta);
}
.logo-badge-icon {
width: 32px; height: 32px; display: flex;
align-items: center;
justify-content: center; } .logo-badge-icon img {
width: 100%;
height: 100%;
object-fit: contain; }
.logo-text-group {
display: flex;
align-items: center;
gap: 4px;
}
.logo-text {
font-family: var(--font-heading);
font-size: 19px;
font-weight: 800;
letter-spacing: -0.5px;
color: #ffffff;
}
.logo-dot {
width: 6px;
height: 6px;
background: var(--accent-magenta);
border-radius: 50%;
} .main-nav {
display: flex;
align-items: center;
}
.nav-list {
display: flex;
align-items: center;
gap: 36px;
}
.nav-link {
font-size: 14px;
font-weight: 500;
color: var(--text-secondary);
position: relative;
padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
color: #ffffff;
}
.nav-link.active::after, .nav-link:hover::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 2px;
background: var(--accent-purple);
border-radius: 2px;
box-shadow: 0 0 8px var(--accent-purple);
} .btn-get-started {
background: var(--gradient-primary);
color: #ffffff;
font-weight: 600;
font-size: 14px;
padding: 10px 24px;
border-radius: var(--radius-full);
border: none;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 8px;
box-shadow: 0 0 25px rgba(168, 85, 247, 0.4);
transition: var(--transition-fast);
}
.btn-get-started:hover {
transform: translateY(-2px) scale(1.02);
box-shadow: 0 0 35px rgba(236, 72, 153, 0.6);
} .hero-section {
position: relative;
padding-top: 140px;
padding-bottom: 90px;
background-color: var(--bg-main);
overflow: hidden;
}
.ambient-glow {
position: absolute;
width: 600px;
height: 600px;
border-radius: 50%;
pointer-events: none;
z-index: 0;
}
.glow-top-left {
top: -150px;
left: -150px;
background: var(--gradient-glow-1);
}
.glow-bottom-right {
bottom: -150px;
right: -100px;
background: var(--gradient-glow-2);
}
.hero-container {
max-width: 1280px;
margin: 0 auto;
padding: 0 32px;
display: grid;
grid-template-columns: 1.15fr 0.85fr;
gap: 60px;
align-items: center;
position: relative;
z-index: 1;
} .trusted-badge {
display: inline-flex;
align-items: center;
gap: 10px;
background: rgba(22, 18, 38, 0.8);
border: 1px solid var(--border-glass);
padding: 6px 16px;
border-radius: var(--radius-full);
margin-bottom: 24px;
}
.pulse-dot {
width: 8px;
height: 8px;
background-color: var(--accent-green);
border-radius: 50%;
box-shadow: 0 0 10px var(--accent-green);
animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
.badge-text {
font-size: 13px;
font-weight: 500;
color: var(--text-secondary);
} .hero-headline {
font-family: var(--font-heading);
font-size: 52px;
font-weight: 800;
line-height: 1.12;
letter-spacing: -1.5px;
margin-bottom: 24px;
}
.hero-description {
font-size: 16px;
color: var(--text-secondary);
line-height: 1.65;
margin-bottom: 36px;
max-width: 580px;
} .hero-actions {
display: flex;
align-items: center;
gap: 18px;
}
.btn-primary-glow {
background: var(--gradient-primary);
color: #ffffff;
font-weight: 600;
font-size: 15px;
padding: 14px 32px;
border-radius: var(--radius-full);
display: inline-flex;
align-items: center;
gap: 10px;
border: none;
cursor: pointer;
box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
transition: var(--transition-fast);
}
.btn-primary-glow:hover {
transform: translateY(-2px);
box-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
}
.btn-secondary-outline {
background: rgba(255, 255, 255, 0.03);
border: 1px solid var(--border-glass);
color: #ffffff;
font-weight: 600;
font-size: 15px;
padding: 14px 28px;
border-radius: var(--radius-full);
display: inline-flex;
align-items: center;
gap: 8px;
transition: var(--transition-fast);
}
.btn-secondary-outline:hover {
background: rgba(255, 255, 255, 0.08);
border-color: rgba(255, 255, 255, 0.2);
} .hero-visual {
position: relative;
min-height: 480px;
display: flex;
align-items: center;
justify-content: center;
} .floating-card {
position: absolute;
background: rgba(20, 16, 35, 0.85);
backdrop-filter: blur(20px);
border: 1px solid var(--border-glass);
border-radius: var(--radius-md);
padding: 14px 20px;
display: flex;
align-items: center;
gap: 14px;
box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
z-index: 3;
}
.card-icon-box {
width: 40px;
height: 40px;
border-radius: var(--radius-sm);
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
.pink-glow { background: rgba(236, 72, 153, 0.2); color: var(--accent-magenta); }
.target-glow { background: rgba(168, 85, 247, 0.2); color: var(--accent-purple); }
.purple-sparkle { background: rgba(99, 102, 241, 0.2); color: #818cf8; }
.stat-number {
font-family: var(--font-heading);
font-weight: 700;
font-size: 16px;
color: #ffffff;
}
.stat-label {
font-size: 12px;
color: var(--text-muted);
} .traffic-card {
top: 20px;
left: -20px;
}
.ranking-card {
right: -25px;
top: 55%;
}
.webdesign-card {
bottom: 0px;
left: 20%;
} .animate-float-slow { animation: floatAnim 6s ease-in-out infinite; }
.animate-float-medium { animation: floatAnim 5s ease-in-out infinite 1s; }
.animate-float-fast { animation: floatAnim 4s ease-in-out infinite 0.5s; }
@keyframes floatAnim {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
} .glass-dashboard-window {
width: 380px;
background: rgba(18, 14, 32, 0.9);
border: 1px solid var(--border-glass);
border-radius: var(--radius-lg);
box-shadow: 0 0 50px rgba(168, 85, 247, 0.2);
overflow: hidden;
z-index: 2;
}
.dashboard-header-bar {
background: rgba(10, 8, 18, 0.95);
padding: 12px 18px;
display: flex;
align-items: center;
gap: 16px;
border-bottom: 1px solid var(--border-glass);
}
.window-controls {
display: flex;
gap: 6px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.red { background: #ef4444; }
.yellow { background: #f59e0b; }
.green { background: #10b981; }
.window-url-bar {
font-family: monospace;
font-size: 12px;
color: var(--text-muted);
background: rgba(255, 255, 255, 0.04);
padding: 3px 12px;
border-radius: 6px;
flex: 1;
}
.dashboard-body {
padding: 24px;
display: flex;
flex-direction: column;
gap: 18px;
}
.metric-row {
display: flex;
align-items: center;
gap: 14px;
}
.metric-title {
font-size: 13px;
color: var(--text-secondary);
width: 90px;
}
.progress-track {
flex: 1;
height: 8px;
background: rgba(255, 255, 255, 0.06);
border-radius: 4px;
overflow: hidden;
}
.progress-bar {
height: 100%;
border-radius: 4px;
}
.bar-magenta { background: var(--gradient-primary); }
.bar-blue { background: linear-gradient(90deg, #3b82f6, #60a5fa); }
.bar-violet { background: linear-gradient(90deg, #8b5cf6, #c084fc); }
.bar-cyan { background: linear-gradient(90deg, #06b6d4, #38bdf8); }
.metric-value {
font-family: var(--font-heading);
font-weight: 700;
font-size: 14px;
color: #ffffff;
width: 32px;
text-align: right;
} .stats-counter-section {
padding: 60px 0;
background: rgba(14, 11, 26, 0.6);
border-top: 1px solid var(--border-glass);
border-bottom: 1px solid var(--border-glass);
}
.stats-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 30px;
}
.stat-box {
background: var(--bg-card);
border: 1px solid var(--border-glass);
padding: 28px;
border-radius: var(--radius-md);
text-align: center;
transition: var(--transition-fast);
}
.stat-box:hover {
transform: translateY(-4px);
border-color: var(--border-glow);
box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}
.counter-number-group {
font-family: var(--font-heading);
font-size: 42px;
font-weight: 800;
color: #ffffff;
line-height: 1;
margin-bottom: 8px;
display: flex;
align-items: center;
justify-content: center;
gap: 2px;
}
.counter-number-group .symbol {
color: var(--accent-magenta);
}
.stat-title {
font-weight: 600;
font-size: 15px;
color: #ffffff;
margin-bottom: 4px;
}
.stat-sub {
font-size: 13px;
color: var(--text-muted);
} .about-overview-section {
padding: 100px 0;
}
.about-grid {
display: grid;
grid-template-columns: 0.9fr 1.1fr;
gap: 60px;
align-items: center;
}
.founder-card-glass {
background: var(--bg-card);
border: 1px solid var(--border-glass);
border-radius: var(--radius-lg);
padding: 32px;
position: relative;
box-shadow: var(--shadow-card);
}
.founder-image-box {
position: relative;
width: 100%;
height: 260px;
background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(236, 72, 153, 0.2));
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
border: 1px solid var(--border-glass);
}
.founder-avatar-placeholder {
font-size: 80px;
color: var(--accent-purple);
}
.badge-ceo {
position: absolute;
bottom: 12px;
left: 12px;
background: rgba(9, 8, 17, 0.9);
border: 1px solid var(--border-glow);
padding: 6px 14px;
border-radius: var(--radius-full);
font-size: 12px;
font-weight: 600;
color: #ffffff;
}
.founder-name {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 700;
margin-bottom: 4px;
}
.founder-role {
font-size: 13px;
color: var(--accent-purple);
margin-bottom: 14px;
}
.founder-bio {
font-size: 14px;
color: var(--text-secondary);
font-style: italic;
} .section-tag {
display: inline-block;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--accent-magenta);
margin-bottom: 12px;
}
.section-title {
font-family: var(--font-heading);
font-size: 36px;
font-weight: 800;
line-height: 1.25;
margin-bottom: 18px;
}
.section-desc {
font-size: 15px;
color: var(--text-secondary);
margin-bottom: 28px;
line-height: 1.7;
}
.feature-checklist {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 32px;
}
.check-item {
display: flex;
align-items: center;
gap: 12px;
font-size: 14px;
color: #ffffff;
}
.check-item i {
color: var(--accent-purple);
font-size: 16px;
}
.btn-text-link {
display: inline-flex;
align-items: center;
gap: 8px;
font-weight: 600;
color: var(--accent-magenta);
}
.btn-text-link:hover {
gap: 12px;
color: #ffffff;
} .services-section {
padding: 90px 0;
background: rgba(14, 11, 26, 0.4);
}
.section-header-center {
text-align: center;
max-width: 680px;
margin: 0 auto 60px auto;
}
.section-subtitle {
font-size: 16px;
color: var(--text-secondary);
margin-top: 8px;
}
.services-cards-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
}
.glass-card {
background: var(--bg-card);
border: 1px solid var(--border-glass);
border-radius: var(--radius-lg);
padding: 32px 24px;
transition: var(--transition-smooth);
}
.glass-card:hover {
transform: translateY(-8px);
border-color: var(--border-glow);
box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}
.service-icon-wrapper {
width: 52px;
height: 52px;
border-radius: var(--radius-md);
display: flex;
align-items: center;
justify-content: center;
font-size: 22px;
margin-bottom: 24px;
}
.service-icon-wrapper.magenta { background: rgba(236, 72, 153, 0.15); color: var(--accent-magenta); }
.service-icon-wrapper.violet { background: rgba(168, 85, 247, 0.15); color: var(--accent-purple); }
.service-icon-wrapper.blue { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); }
.service-icon-wrapper.cyan { background: rgba(6, 182, 212, 0.15); color: var(--accent-cyan); }
.service-card-title {
font-family: var(--font-heading);
font-size: 19px;
font-weight: 700;
margin-bottom: 12px;
}
.service-card-text {
font-size: 14px;
color: var(--text-secondary);
line-height: 1.6;
margin-bottom: 20px;
}
.service-features-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.service-features-list li {
font-size: 13px;
color: var(--text-muted);
display: flex;
align-items: center;
gap: 8px;
}
.service-features-list i {
color: var(--accent-green);
font-size: 11px;
} .projects-section {
padding: 90px 0;
}
.section-header-split {
display: flex;
align-items: flex-end;
justify-content: space-between;
margin-bottom: 50px;
}
.projects-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 30px;
}
.project-card {
padding: 0;
overflow: hidden;
}
.project-preview-visual {
height: 240px;
width: 100%;
position: relative;
padding: 20px;
}
.preview-bg-1 {
background: linear-gradient(135deg, #1e1b4b, #431407);
}
.preview-bg-2 {
background: linear-gradient(135deg, #064e3b, #1e1b4b);
}
.project-tag {
display: inline-block;
background: rgba(9, 8, 17, 0.85);
border: 1px solid var(--border-glass);
padding: 6px 14px;
border-radius: var(--radius-full);
font-size: 12px;
font-weight: 600;
color: #ffffff;
}
.project-details {
padding: 28px;
}
.project-title {
font-family: var(--font-heading);
font-size: 22px;
font-weight: 700;
margin-bottom: 8px;
}
.project-excerpt {
font-size: 14px;
color: var(--text-secondary);
margin-bottom: 20px;
}
.project-stats-row {
display: flex;
gap: 24px;
font-size: 14px;
color: var(--accent-purple);
border-top: 1px solid var(--border-glass);
padding-top: 16px;
} .why-us-banner-section {
padding: 60px 0;
}
.banner-glass-card {
background: linear-gradient(135deg, rgba(22, 18, 38, 0.9), rgba(46, 16, 56, 0.8));
border: 1px solid var(--border-glow);
border-radius: var(--radius-lg);
padding: 60px 40px;
text-align: center;
box-shadow: 0 0 50px rgba(168, 85, 247, 0.2);
}
.badge-pill {
display: inline-block;
background: rgba(236, 72, 153, 0.15);
color: var(--accent-magenta);
font-size: 12px;
font-weight: 700;
padding: 6px 16px;
border-radius: var(--radius-full);
margin-bottom: 16px;
}
.banner-title {
font-family: var(--font-heading);
font-size: 38px;
font-weight: 800;
margin-bottom: 16px;
}
.banner-desc {
font-size: 16px;
color: var(--text-secondary);
max-width: 640px;
margin: 0 auto 32px auto;
} .newsletter-section {
padding: 70px 0 100px 0;
}
.newsletter-glass-card {
background: var(--bg-card);
border: 1px solid var(--border-glass);
border-radius: var(--radius-lg);
padding: 50px;
max-width: 800px;
margin: 0 auto;
text-align: center;
}
.newsletter-icon-badge {
width: 60px;
height: 60px;
border-radius: 50%;
background: rgba(168, 85, 247, 0.15);
color: var(--accent-purple);
font-size: 24px;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 20px auto;
}
.newsletter-title {
font-family: var(--font-heading);
font-size: 28px;
font-weight: 800;
margin-bottom: 10px;
}
.newsletter-desc {
font-size: 15px;
color: var(--text-secondary);
margin-bottom: 30px;
}
.newsletter-form {
display: flex;
gap: 12px;
max-width: 580px;
margin: 0 auto 16px auto;
}
.input-wrapper {
position: relative;
flex: 1;
}
.input-icon {
position: absolute;
left: 18px;
top: 50%;
transform: translateY(-50%);
color: var(--text-muted);
font-size: 16px;
}
.input-wrapper input {
width: 100%;
background: rgba(9, 8, 17, 0.8);
border: 1px solid var(--border-glass);
border-radius: var(--radius-full);
padding: 14px 20px 14px 48px;
color: #ffffff;
font-size: 14px;
transition: var(--transition-fast);
}
.input-wrapper input:focus {
border-color: var(--accent-purple);
box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}
.btn-subscribe-glow {
background: var(--gradient-primary);
color: #ffffff;
font-weight: 600;
font-size: 14px;
padding: 14px 28px;
border-radius: var(--radius-full);
border: none;
cursor: pointer;
display: flex;
align-items: center;
gap: 8px;
white-space: nowrap;
box-shadow: 0 0 25px rgba(236, 72, 153, 0.4);
transition: var(--transition-fast);
}
.btn-subscribe-glow:hover {
transform: translateY(-2px);
box-shadow: 0 0 35px rgba(168, 85, 247, 0.6);
}
.newsletter-privacy-note {
font-size: 12px;
color: var(--text-muted);
} .site-footer {
background: #06050b;
border-top: 1px solid var(--border-glass);
padding: 80px 0 40px 0;
}
.footer-grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 50px;
margin-bottom: 60px;
}
.footer-slogan {
font-size: 14px;
color: var(--text-secondary);
margin: 20px 0 24px 0;
line-height: 1.6;
}
.social-links-row {
display: flex;
gap: 12px;
}
.social-link {
width: 38px;
height: 38px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.05);
border: 1px solid var(--border-glass);
display: flex;
align-items: center;
justify-content: center;
color: var(--text-secondary);
font-size: 15px;
}
.social-link:hover {
background: var(--accent-purple);
color: #ffffff;
box-shadow: 0 0 15px var(--accent-purple);
}
.footer-col-title {
font-family: var(--font-heading);
font-size: 16px;
font-weight: 700;
margin-bottom: 20px;
color: #ffffff;
}
.footer-links-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.footer-links-list a {
font-size: 14px;
color: var(--text-secondary);
}
.footer-links-list a:hover {
color: var(--accent-magenta);
}
.footer-contact-info {
display: flex;
flex-direction: column;
gap: 14px;
font-size: 14px;
color: var(--text-secondary);
}
.footer-contact-info i {
color: var(--accent-purple);
width: 20px;
}
.footer-bottom-bar {
border-top: 1px solid var(--border-glass);
padding-top: 30px;
display: flex;
align-items: center;
justify-content: space-between;
font-size: 13px;
color: var(--text-muted);
}
.footer-legal-links {
display: flex;
gap: 20px;
} .modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(5, 4, 10, 0.85);
backdrop-filter: blur(12px);
z-index: 2000;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
opacity: 0;
visibility: hidden;
transition: var(--transition-smooth);
}
.modal-overlay.active {
opacity: 1;
visibility: visible;
}
.modal-card-glass {
background: rgba(22, 18, 38, 0.95);
border: 1px solid var(--border-glow);
border-radius: var(--radius-lg);
width: 100%;
max-width: 520px;
padding: 40px;
position: relative;
box-shadow: 0 0 60px rgba(168, 85, 247, 0.3);
transform: scale(0.9);
transition: var(--transition-smooth);
}
.modal-overlay.active .modal-card-glass {
transform: scale(1);
}
.modal-close-btn {
position: absolute;
top: 20px;
right: 20px;
background: rgba(255, 255, 255, 0.05);
border: none;
color: var(--text-secondary);
width: 32px;
height: 32px;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.modal-close-btn:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }
.modal-title { font-family: var(--font-heading); font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.modal-desc { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary); }
.custom-input, .custom-select {
width: 100%;
background: rgba(9, 8, 17, 0.9);
border: 1px solid var(--border-glass);
border-radius: var(--radius-sm);
padding: 12px 16px;
color: #ffffff;
font-size: 14px;
}
.custom-input:focus, .custom-select:focus {
border-color: var(--accent-purple);
}
.btn-full { width: 100%; justify-content: center; margin-top: 10px; } .ai-chatbot-widget {
position: fixed;
bottom: 28px;
right: 28px;
z-index: 9999;
}
.chatbot-trigger-btn {
width: 60px;
height: 60px;
border-radius: 50%;
background: var(--gradient-primary);
border: none;
color: #ffffff;
cursor: pointer;
box-shadow: 0 0 30px rgba(236, 72, 153, 0.6);
display: flex;
align-items: center;
justify-content: center;
position: relative;
transition: var(--transition-fast);
}
.chatbot-trigger-btn:hover {
transform: scale(1.08);
box-shadow: 0 0 40px rgba(168, 85, 247, 0.8);
}
.trigger-icon-box {
font-size: 22px;
display: flex;
align-items: center;
justify-content: center;
}
.trigger-icon-box .icon-close { display: none; }
.ai-chatbot-widget.open .icon-mail { display: none; }
.ai-chatbot-widget.open .icon-close { display: block; }
.online-indicator-dot {
position: absolute;
top: 4px;
right: 4px;
width: 12px;
height: 12px;
background: var(--accent-green);
border: 2px solid var(--bg-main);
border-radius: 50%;
} .chatbot-drawer-glass {
position: absolute;
bottom: 80px;
right: 0;
width: 370px;
height: 520px;
background: rgba(18, 14, 32, 0.95);
backdrop-filter: blur(20px);
border: 1px solid var(--border-glow);
border-radius: var(--radius-lg);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
display: flex;
flex-direction: column;
overflow: hidden;
opacity: 0;
visibility: hidden;
transform: translateY(20px) scale(0.95);
transition: var(--transition-smooth);
}
.ai-chatbot-widget.open .chatbot-drawer-glass {
opacity: 1;
visibility: visible;
transform: translateY(0) scale(1);
}
.chatbot-header {
background: rgba(10, 8, 18, 0.95);
padding: 16px 20px;
display: flex;
align-items: center;
gap: 12px;
border-bottom: 1px solid var(--border-glass);
}
.bot-avatar-box {
width: 38px;
height: 38px;
border-radius: 50%;
background: var(--gradient-primary);
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-size: 16px;
}
.bot-name { font-family: var(--font-heading); font-size: 14px; font-weight: 700; }
.bot-status { font-size: 11px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.green-dot { width: 6px; height: 6px; background: var(--accent-green); border-radius: 50%; }
.bot-close-btn {
margin-left: auto;
background: none;
border: none;
color: var(--text-muted);
cursor: pointer;
font-size: 14px;
}
.chatbot-messages-log {
flex: 1;
padding: 18px;
overflow-y: auto;
display: flex;
flex-direction: column;
gap: 14px;
}
.chat-message {
display: flex;
flex-direction: column;
max-width: 85%;
}
.chat-message.bot-msg { align-self: flex-start; }
.chat-message.user-msg { align-self: flex-end; }
.msg-bubble {
padding: 12px 16px;
border-radius: 16px;
font-size: 13px;
line-height: 1.5;
}
.bot-msg .msg-bubble {
background: rgba(30, 24, 52, 0.9);
border: 1px solid var(--border-glass);
color: #ffffff;
border-top-left-radius: 4px;
}
.user-msg .msg-bubble {
background: var(--gradient-primary);
color: #ffffff;
border-top-right-radius: 4px;
}
.msg-time {
font-size: 10px;
color: var(--text-muted);
margin-top: 4px;
}
.chatbot-chips-row {
padding: 8px 14px;
display: flex;
gap: 6px;
overflow-x: auto;
border-top: 1px solid var(--border-glass);
background: rgba(10, 8, 18, 0.4);
}
.chip-btn {
background: rgba(255, 255, 255, 0.06);
border: 1px solid var(--border-glass);
color: var(--text-secondary);
font-size: 11px;
padding: 5px 12px;
border-radius: var(--radius-full);
cursor: pointer;
white-space: nowrap;
}
.chip-btn:hover {
background: var(--accent-purple);
color: #fff;
}
.chatbot-input-form {
padding: 12px;
background: rgba(10, 8, 18, 0.95);
display: flex;
gap: 8px;
border-top: 1px solid var(--border-glass);
}
.chatbot-input-form input {
flex: 1;
background: rgba(22, 18, 38, 0.8);
border: 1px solid var(--border-glass);
border-radius: var(--radius-full);
padding: 10px 16px;
color: #fff;
font-size: 13px;
}
.chat-send-btn {
width: 38px;
height: 38px;
border-radius: 50%;
background: var(--gradient-primary);
border: none;
color: #fff;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
} .toast-container {
position: fixed;
top: 90px;
right: 24px;
z-index: 10000;
display: flex;
flex-direction: column;
gap: 10px;
}
.toast {
background: rgba(22, 18, 38, 0.95);
border: 1px solid var(--border-glow);
color: #fff;
padding: 14px 22px;
border-radius: var(--radius-md);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
gap: 12px;
font-size: 14px;
animation: toastIn 0.3s ease forwards;
}
@keyframes toastIn {
from { opacity: 0; transform: translateX(50px); }
to { opacity: 1; transform: translateX(0); }
}