:root { --bg-dark: #030014;
--text-primary: #fff;
--text-secondary: #94a3b8;
--primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 50%, #ec4899 100%);
--accent-purple: #a855f7;
--accent-indigo: #6366f1;
--accent-pink: #ec4899;
--success: #4ade80; --glass-surface: rgb(255 255 255 / 3%);
--glass-surface-hover: rgb(255 255 255 / 7%);
--glass-border: 0.5px solid rgb(255 255 255 / 10%);
--glass-blur: blur(24px); --shadow-ao:
0 1px 1px rgb(0 0 0 / 11%),
0 2px 2px rgb(0 0 0 / 11%),
0 4px 4px rgb(0 0 0 / 11%),
0 8px 8px rgb(0 0 0 / 11%),
0 16px 16px rgb(0 0 0 / 11%);
--shadow-ao-hover:
0 2px 2px rgb(99 102 241 / 5%),
0 4px 4px rgb(99 102 241 / 5%),
0 8px 8px rgb(99 102 241 / 10%),
0 16px 16px rgb(99 102 241 / 10%),
0 32px 32px rgb(99 102 241 / 15%);
--glass-border-gradient: linear-gradient(135deg, rgb(255 255 255 / 20%) 0%, rgb(255 255 255 / 5%) 50%, rgb(255 255 255 / 20%) 100%); --z-sidebar: 1000;
--z-header: 900;
--z-modal: 1100;
--z-overlay: 800; --radius-pill: 9999px;
--radius-card: 20px;
--radius-inner: 16px;
--gap-sm: 1rem;
--gap-md: 2rem;
--gap-lg: 8rem;
--gap-hero: 10rem;
} *,
*::before,
*::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html {
scroll-behavior: smooth;
font-size: 16px;
}
body {
background-color: var(--bg-dark);
color: var(--text-primary);
font-family: Outfit, system-ui, -apple-system, sans-serif;
line-height: 1.6;
overflow-x: hidden;
overflow-wrap: break-word;
} h1,
h2,
h3,
h4,
h5,
h6 {
line-height: 1.1;
margin-bottom: var(--gap-sm);
letter-spacing: -0.02em;
}
h1 {
font-size: clamp(1.625rem, 4vw, 2.75rem);
font-weight: 800;
}
h2 {
font-size: clamp(1.25rem, 3.5vw, 2rem);
font-weight: 700;
}
h3 {
font-size: clamp(1rem, 2.5vw, 1.5rem);
font-weight: 600;
}
a {
color: inherit;
text-decoration: none;
transition: opacity 0.3s ease;
}
a:hover {
opacity: 0.8;
} .contextual-link {
text-decoration: underline !important;
text-decoration-color: rgba(168, 85, 247, 0.4) !important;
text-decoration-thickness: 2px !important;
text-underline-offset: 4px;
font-weight: 700;
color: #fff;
transition: all 0.3s ease;
}
.contextual-link:hover {
text-decoration-color: rgba(168, 85, 247, 1) !important;
color: var(--accent-purple);
opacity: 1;
}
img {
max-width: 100%;
height: auto;
display: block;
} .container {
width: 90%;
max-width: 1200px;
margin: 0 auto;
}
.section {
padding: var(--gap-lg) 0;
}  .gradient-text {
background: var(--primary-gradient);
-webkit-text-fill-color: transparent;
background-clip: text;
display: inline;
}
.text-white {
color: var(--text-primary);
} .no-scrollbar::-webkit-scrollbar {
display: none;
}
.no-scrollbar {
-ms-overflow-style: none; scrollbar-width: none; }  .hero-section {
position: relative;
padding: var(--gap-lg) 0;
min-height: 90vh;
display: flex;
align-items: center;
overflow: hidden;
}
.hero-video {
position: absolute;
top: 50%;
left: 50%;
width: 100%;
height: 100%;
object-fit: cover;
transform: translate(-50%, -50%);
z-index: -1;
opacity: 0.4;
}
.video-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at center, transparent 0%, var(--bg-dark) 100%);
z-index: 0;
}
.hero-container {
position: relative;
z-index: 10;
}
.hero-grid {
display: grid;
gap: var(--gap-lg);
align-items: center;
}
.hero-content {
text-align: left;
}
.hero-content h1 {
font-size: clamp(1.625rem, 4vw, 2.75rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: var(--gap-md);
}
.hero-subtext {
color: var(--text-secondary);
font-size: 1.1rem;
max-width: 500px;
margin-bottom: var(--gap-md);
} .status-badges {
display: flex;
flex-wrap: wrap;
gap: 10px;
margin-bottom: 2rem;
}
.status-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 6px 12px;
background: rgb(255 255 255 / 5%);
border: 1px solid rgb(255 255 255 / 10%);
border-radius: 100px;
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
color: var(--text-secondary);
}
.status-badge.live {
color: #4ade80;
}
.status-dot {
width: 8px;
height: 8px;
background: #4ade80;
border-radius: 50%;
animation: pulse 2s infinite;
}
@keyframes pulse {
0% {
opacity: 0.5;
box-shadow: 0 0 0 0 rgb(74 222 128 / 40%);
}
70% {
opacity: 1;
box-shadow: 0 0 0 10px rgb(74 222 128 / 0%);
}
100% {
opacity: 0.5;
box-shadow: 0 0 0 0 rgb(74 222 128 / 0%);
}
}
@keyframes pulse-dot {
0% {
transform: scale(1);
opacity: 0.8;
}
50% {
transform: scale(1.5);
opacity: 0.4;
}
100% {
transform: scale(1);
opacity: 0.8;
}
}
.status-dot.pulse {
animation: pulse-dot 2s infinite ease-in-out;
background: var(--accent-secondary);
box-shadow: 0 0 10px var(--accent-secondary);
}
.status-dot.green {
background: #10b981;
box-shadow: 0 0 10px #10b981;
}
.status-badge.sustainability {
background: rgb(16 185 129 / 10%);
border: 1px solid rgb(16 185 129 / 20%);
color: #10b981;
margin-left: 0.5rem;
} .btn-gradient {
padding: 14px 28px;
background: var(--primary-gradient);
border-radius: 100px;
color: #fff;
font-weight: 700;
transition: all 0.3s ease;
border: none;
cursor: pointer;
text-align: center;
}
.btn-gradient:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px -5px rgb(168 85 247 / 50%);
}
.btn-secondary {
padding: 14px 28px;
background: rgb(255 255 255 / 5%);
border: 1px solid rgb(255 255 255 / 10%);
border-radius: 100px;
color: #fff;
font-weight: 600;
transition: all 0.3s ease;
cursor: pointer;
text-align: center;
}
.btn-secondary:hover {
background: rgb(255 255 255 / 10%);
border-color: rgb(255 255 255 / 20%);
transform: translateY(-2px);
} .hero-ctas {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
gap: 1rem;
margin-bottom: var(--gap-lg);
} .trust-cards {
display: flex;
flex-wrap: wrap;
justify-content: flex-start;
gap: 1rem;
margin-bottom: var(--gap-lg);
}
.trust-card {
padding: 12px 20px;
background: var(--glass-surface);
backdrop-filter: var(--glass-blur);
border: 1px solid rgb(255 255 255 / 10%);
border-radius: 12px;
display: flex;
align-items: center;
gap: 12px;
box-shadow: var(--glass-shadow);
transition: transform 0.3s ease;
}
.trust-card:hover {
transform: translateY(-4px);
}
.trust-card-info {
display: flex;
flex-direction: column;
}
.trust-source {
font-size: 0.7rem;
color: var(--text-secondary);
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.trust-score {
font-size: 1.1rem;
font-weight: 800;
color: #fbbf24;
text-shadow: 0 0 20px rgb(251 191 36 / 30%);
} .social-proof {
display: flex;
align-items: center;
gap: 1.5rem;
}
.avatar-stack {
display: flex;
align-items: center;
}
.client-logo {
width: 44px;
height: 44px;
object-fit: contain;
background: #fff;
border: 3px solid var(--bg-dark);
border-radius: 50%;
margin-right: -15px;
padding: 6px;
box-shadow: 0 4px 10px rgb(0 0 0 / 30%);
transition: transform 0.3s ease, margin 0.3s ease;
}
.client-logo:hover {
transform: translateY(-5px);
margin-right: -5px;
z-index: 10;
}
.proof-text {
color: var(--text-secondary);
font-size: 0.9rem;
font-weight: 500;
} .hero-visual {
display: none;
}
.stats-img {
width: 100%;
height: auto;
border-radius: 8px;
margin-top: 1rem;
}
.device-mockup {
background: var(--glass-surface);
backdrop-filter: var(--glass-blur);
border: 1px solid rgb(255 255 255 / 10%);
border-radius: 20px;
overflow: hidden;
box-shadow: var(--glass-shadow);
animation: float-device 6s ease-in-out infinite;
}
@keyframes float-device {
0%,
100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}
.device-header {
display: flex;
gap: 6px;
padding: 12px 16px;
background: rgb(0 0 0 / 30%);
}
.device-header .dot {
width: 10px;
height: 10px;
border-radius: 50%;
}
.device-header .dot.red {
background: #ef4444;
}
.device-header .dot.yellow {
background: #eab308;
}
.device-header .dot.green {
background: #22c55e;
}
.device-content {
padding: var(--gap-md);
text-align: center;
}
.preview-card {
padding: var(--gap-md);
background: var(--primary-gradient);
border-radius: 12px;
color: #fff;
box-shadow: 0 10px 30px rgb(99 102 241 / 30%);
}
.preview-icon {
font-size: 3rem;
margin-bottom: 0.5rem;
}
.preview-card h3 {
font-size: 1.25rem;
margin-bottom: 0.25rem;
color: #000;
}
.preview-card p {
font-size: 0.9rem;
opacity: 0.8;
}
.device-stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
padding: var(--gap-md);
background: rgb(0 0 0 / 20%);
}
.stat-card {
padding: 1rem;
background: var(--glass-surface);
border: var(--glass-border);
border-radius: 8px;
}
.stat-label {
display: block;
font-size: 0.75rem;
color: var(--text-secondary);
margin-bottom: 0.25rem;
}
.stat-value {
font-size: 1.5rem;
font-weight: 700;
}
.stat-card.accent {
border-color: rgb(168 85 247 / 30%);
} @media (width >=1024px) {
.hero-grid {
grid-template-columns: 1fr 1fr;
}
.hero-visual {
display: block;
}
.hero-content h1 {
font-size: 2.75rem;
}
}
.post-grid {
display: grid;
gap: var(--gap-md);
}
.post-item {
margin-bottom: 0; } .site-header {
position: sticky;
top: 0;
z-index: 100;
background: rgb(3 0 20 / 95%);
backdrop-filter: var(--glass-blur);
border-bottom: var(--glass-border);
}
.site-header .container {
padding: 0.75rem 0;
}
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
} .site-branding {
display: flex;
align-items: center;
flex: 1; }
.site-logo {
display: flex;
align-items: center;
gap: 0.75rem;
}
.site-logo img {
width: 40px;
height: 40px;
border-radius: 50%;
border: 2px solid var(--glass-border-color);
flex-shrink: 0;
}
.site-title {
font-size: 1.1rem;
font-weight: 700;
margin: 0;
white-space: nowrap;
} .menu-toggle {
display: flex;
align-items: center;
justify-content: center;
background: var(--glass-surface);
border: var(--glass-border);
border-radius: 8px;
color: var(--text-primary);
cursor: pointer;
padding: 0.5rem;
order: 2; } .main-navigation {
display: none;
}
.main-navigation ul {
list-style: none;
display: flex;
gap: var(--gap-md);
margin: 0;
padding: 0;
}
.main-navigation a {
font-size: 0.9rem;
font-weight: 500;
color: var(--text-secondary);
transition: color 0.2s ease;
}
.main-navigation a:hover {
color: var(--text-primary);
} .header-cta {
display: none;
} @media (width >=768px) {
.menu-toggle {
display: none;
}
.main-navigation {
display: block;
margin: 0 var(--gap-md);
}
.header-cta {
display: block;
flex-shrink: 0;
}
.site-branding {
flex: 0 0 auto; }
} .site-footer {
background: var(--bg-dark);
border-top: var(--glass-border);
margin-top: var(--gap-lg);
margin-bottom: var(--gap-md);
padding: var(--gap-lg) 0 var(--gap-md);
}
.footer-grid {
display: flex;
flex-direction: column;
gap: var(--gap-md);
margin-bottom: var(--gap-md);
}
.site-info {
border-top: var(--glass-border);
padding-top: var(--gap-sm);
text-align: center;
color: var(--text-secondary);
font-size: 0.8rem;
} .glass-card {
position: relative;
background: var(--glass-surface);
backdrop-filter: var(--glass-blur);
border-radius: var(--radius-card);
padding: var(--gap-md);
width: 100%;
overflow: hidden;
transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
box-shadow: var(--shadow-ao);
border: none;
} .glass-card::before {
content: "";
position: absolute;
inset: 0;
border-radius: inherit;
padding: 1px; background: var(--glass-border-gradient);
mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
mask-composite: exclude;
mask-composite: destination-out;
pointer-events: none;
z-index: 1;
} .glass-card::after {
content: "";
position: absolute;
top: 0;
left: -150%;
width: 100%;
height: 100%;
background: linear-gradient(90deg,
transparent,
rgb(255 255 255 / 5%),
transparent);
transform: skewX(-20deg);
transition: left 0.7s ease;
z-index: 2;
}
.glass-card:hover {
background: var(--glass-surface-hover);
transform: translateY(-12px) scale(1.02);
box-shadow: var(--shadow-ao-hover);
}
.glass-card:hover::after {
left: 150%;
} .bg-glow-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -2;
overflow: hidden;
pointer-events: none;
}
.bg-glow-blob {
position: absolute;
width: 500px;
height: 500px;
background: radial-gradient(circle, rgb(99 102 241 / 15%) 0%, transparent 70%);
border-radius: 50%;
filter: blur(80px);
animation: floating 20s infinite alternate;
}
.bg-glow-blob:nth-child(2) {
background: radial-gradient(circle, rgb(168 85 247 / 10%) 0%, transparent 70%);
width: 600px;
height: 600px;
right: -100px;
top: 20%;
animation-delay: -5s;
}
.bg-glow-blob:nth-child(3) {
background: radial-gradient(circle, rgb(236 72 153 / 10%) 0%, transparent 70%);
width: 400px;
height: 400px;
left: 20%;
bottom: -100px;
animation-delay: -10s;
}
@keyframes floating {
0% {
transform: translate(0, 0) rotate(0deg);
}
33% {
transform: translate(30px, 50px) rotate(5deg);
}
66% {
transform: translate(-20px, 20px) rotate(-5deg);
}
100% {
transform: translate(0, 0) rotate(0deg);
}
}
.btn-primary {
display: inline-block;
padding: 0.75rem 1.5rem;
background: var(--primary-gradient);
border-radius: var(--radius-pill);
font-weight: 600;
text-align: center;
cursor: pointer;
border: none;
color: var(--text-primary);
}
.btn-primary:hover {
opacity: 0.9;
transform: translateY(-2px);
transition: all 0.2s ease;
}  .location-single {
padding-bottom: var(--gap-lg);
}
.location-content,
.location-faq,
.location-cta {
margin-top: var(--gap-lg);
}
.content-block p {
margin-bottom: 1rem;
color: var(--text-secondary);
} .faq-list {
display: flex;
flex-direction: column;
gap: var(--gap-sm);
margin-top: var(--gap-md);
}
.faq-item {
background: var(--glass-surface-hover);
border: var(--glass-border);
border-radius: var(--radius-card);
overflow: hidden;
}
.faq-question {
padding: var(--gap-sm) var(--gap-md);
cursor: pointer;
font-weight: 600;
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}
.faq-question::after {
content: '+';
font-size: 1.5rem;
transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
transform: rotate(45deg);
}
.faq-answer {
padding: 0 var(--gap-md) var(--gap-md);
color: var(--text-secondary);
} @media (width >=768px) {
.site-header .container {
flex-direction: row;
justify-content: space-between;
}
.main-navigation ul {
gap: var(--gap-md);
}
.footer-grid {
flex-direction: row;
justify-content: space-between;
}
.post-grid {
grid-template-columns: repeat(2, 1fr);
}
.features-grid {
grid-template-columns: repeat(3, 1fr);
}
.locations-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (width >=1024px) {
.container {
max-width: 1200px;
}
.locations-grid {
grid-template-columns: repeat(3, 1fr);
}
}  .section-header {
text-align: center;
max-width: 800px;
margin: 0 auto var(--gap-lg);
}
.section-header h2 {
font-size: clamp(1.75rem, 3vw, 2.5rem);
font-weight: 700;
margin-bottom: 1rem;
}
.section-header .section-subtext {
max-width: 600px;
margin: 0 auto;
color: var(--text-secondary);
font-size: 1.1rem;
line-height: 1.6;
} .services-section {
background: linear-gradient(180deg, transparent 0%, rgb(99 102 241 / 2%) 100%);
}
.services-grid {
display: grid;
gap: var(--gap-md);
}
.service-card {
display: flex;
flex-direction: column;
padding: var(--gap-md);
background: var(--glass-surface);
border: var(--glass-border);
border-radius: var(--radius-card);
transition: all 0.3s ease;
}
.service-card:hover {
transform: translateY(-4px);
background: var(--glass-surface-hover);
border-color: rgb(99 102 241 / 30%);
}
.service-icon {
font-size: 2rem;
margin-bottom: 0.75rem;
}
.service-card h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
.service-card p {
color: var(--text-secondary);
font-size: 0.9rem;
flex-grow: 1;
margin-bottom: 0.75rem;
}
.link-arrow {
font-size: 1.25rem;
color: var(--text-secondary);
transition: all 0.2s ease;
}
.service-card:hover .link-arrow,
.location-card:hover .link-arrow,
.feature-card:hover .link-arrow {
color: var(--text-primary);
transform: translateX(4px);
} .why-section {
background: linear-gradient(180deg, rgb(99 102 241 / 2%) 0%, transparent 100%);
margin-top: var(--gap-lg);
}
.features-grid {
display: grid;
gap: var(--gap-md);
}
.feature-card {
padding: var(--gap-md);
background: var(--glass-surface);
border: var(--glass-border);
border-radius: var(--radius-card);
transition: all 0.3s ease;
}
.feature-card:hover {
background: var(--glass-surface-hover);
transform: translateY(-2px);
}
.feature-icon {
font-size: 2.5rem;
margin-bottom: 1rem;
}
.feature-card h3 {
font-size: 1.1rem;
margin-bottom: 0.5rem;
}
.feature-card p {
color: var(--text-secondary);
font-size: 0.9rem;
} .locations-grid {
display: grid;
gap: var(--gap-md);
}
.location-card {
display: flex;
align-items: center;
gap: 1rem;
padding: 1.25rem;
background: var(--glass-surface);
border: var(--glass-border);
border-radius: var(--radius-card);
transition: all 0.3s ease;
}
.location-card:hover {
background: var(--glass-surface-hover);
transform: translateY(-2px);
border-color: rgb(99 102 241 / 30%);
}
.location-icon {
font-size: 1.5rem;
}
.location-card h3 {
flex-grow: 1;
font-size: 1rem;
margin: 0;
} .section-cta {
text-align: center;
margin-top: var(--gap-md);
} .cta-section {
background: linear-gradient(180deg, transparent 0%, rgb(168 85 247 / 3%) 100%);
}
.cta-card {
text-align: center;
padding: var(--gap-lg);
position: relative;
overflow: hidden;
background: linear-gradient(135deg, rgb(99 102 241 / 10%) 0%, rgb(236 72 153 / 10%) 100%);
}
.cta-card h2 {
font-size: clamp(1.5rem, 3vw, 2rem);
margin-bottom: 1rem;
}
.cta-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin-top: var(--gap-md);
} @media (width >=768px) {
.services-grid {
grid-template-columns: repeat(2, 1fr);
}
.features-grid {
grid-template-columns: repeat(2, 1fr);
}
.locations-grid {
grid-template-columns: repeat(3, 1fr);
}
}
@media (width >=1024px) {
.services-grid {
grid-template-columns: repeat(3, 1fr);
}
} @media (width >=1024px) { .features-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(2, auto);
gap: 1.5rem;
}
.feature-card:nth-child(1) {
grid-column: span 2;
grid-row: span 2;
}
.feature-card:nth-child(2) {
grid-column: span 2;
}
.feature-card {
padding: 3rem;
display: flex;
flex-direction: column;
justify-content: center;
} .case-studies-grid {
display: grid;
grid-template-columns: repeat(12, 1fr);
gap: 2rem;
}
.case-study-card:nth-child(1) {
grid-column: span 8;
}
.case-study-card:nth-child(2) {
grid-column: span 4;
}
.case-study-card:nth-child(3) {
grid-column: span 12;
} .process-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
}
.process-step:nth-child(1),
.process-step:nth-child(4) {
background: var(--glass-surface-subtle);
}
}  .trust-badge {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin-bottom: 1.5rem;
}
.badge-item {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.5rem 1rem;
background: var(--glass-surface-hover);
border: var(--glass-border);
border-radius: var(--radius-pill);
font-size: 0.85rem;
font-weight: 500;
color: var(--text-primary);
} .locations-cta {
text-align: center;
margin-top: var(--gap-md);
}
.footer-main {
display: grid;
gap: var(--gap-lg);
margin-bottom: var(--gap-lg);
} .footer-brand {
max-width: 280px;
}
.footer-logo {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: var(--gap-sm);
}
.footer-logo img {
width: 40px;
height: 40px;
border-radius: 50%;
}
.footer-logo-text {
font-size: 1.25rem;
font-weight: 600;
}
.footer-tagline {
color: var(--text-secondary);
font-size: 0.875rem;
line-height: 1.6;
margin-bottom: var(--gap-md);
}
.footer-powered {
margin-top: var(--gap-md);
}
.footer-label {
display: block;
font-size: 0.7rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 0.5rem;
}
.footer-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
background: var(--glass-surface);
border: var(--glass-border);
border-radius: var(--radius-pill);
padding: 0.5rem 1rem;
font-size: 0.8rem;
color: var(--text-primary);
}
.footer-badge:hover {
background: var(--glass-surface-hover);
} .footer-column {
min-width: 120px;
}
.footer-heading {
font-size: 0.75rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.15em;
color: var(--text-secondary);
margin-bottom: var(--gap-sm);
}
.footer-links {
list-style: none;
padding: 0;
margin: 0;
}
.footer-links li {
margin-bottom: 0.5rem;
}
.footer-links a {
color: var(--text-primary);
font-size: 0.875rem;
transition: opacity 0.2s ease;
}
.footer-links a:hover {
opacity: 0.7;
}
.footer-social {
display: flex;
gap: 1rem;
margin-top: var(--gap-md);
}
.footer-social a {
color: var(--text-secondary);
transition: color 0.2s ease;
}
.footer-social a:hover {
color: var(--text-primary);
}
.footer-view-all {
display: inline-block;
margin-top: var(--gap-sm);
font-size: 0.8rem;
font-weight: 600;
color: #a855f7;
} .footer-region-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.footer-region-tags a {
color: var(--text-secondary);
font-size: 0.8rem;
text-decoration: underline;
text-underline-offset: 2px;
}
.footer-region-tags a:hover {
color: var(--text-primary);
} .footer-bottom {
display: flex;
flex-direction: column;
gap: var(--gap-sm);
padding-top: var(--gap-md);
border-top: var(--glass-border);
}
.footer-copyright p {
color: var(--text-secondary);
font-size: 0.8rem;
margin: 0;
}
.footer-address {
margin-top: 0.25rem;
}
.footer-contact {
display: flex;
flex-wrap: wrap;
gap: var(--gap-md);
}
.footer-contact span {
font-size: 0.8rem;
color: var(--text-secondary);
}
.footer-contact a {
color: #a855f7;
} @media (width >=768px) {
.footer-main {
grid-template-columns: 1.5fr repeat(3, 1fr);
}
.footer-bottom {
flex-direction: row;
justify-content: space-between;
align-items: center;
}
} .site-sidebar {
position: fixed;
left: 0;
top: 0;
bottom: 0;
width: 280px;
background: #0a0a1a; border-right: 1px solid rgb(255 255 255 / 5%);
z-index: 1000;
display: flex;
flex-direction: column;
transform: translateX(-100%);
transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-sidebar.is-open {
transform: translateX(0);
}
.sidebar-logo img {
width: 100px; height: auto;
display: block;
transition: transform 0.3s ease;
}
.sidebar-logo:hover img {
transform: scale(1.05); }
.sidebar-header {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 1.5rem 1rem 1rem;
min-height: auto;
border-bottom: 1px solid rgb(255 255 255 / 3%);
}
.sidebar-toggle {
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
}
.sidebar-logo {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
}
.sidebar-brand {
font-size: 1.25rem;
font-weight: 700;
color: var(--text-primary);
}
.sidebar-nav {
flex: 1;
padding: 1rem 0;
overflow-y: auto;
}
.sidebar-menu {
list-style: none;
padding: 0 1rem;
margin: 0;
}
.sidebar-link {
display: flex;
align-items: center;
gap: 1rem;
padding: 0.875rem 1rem;
color: rgb(255 255 255 / 70%);
font-size: 0.95rem;
font-weight: 500;
border-radius: 12px;
transition: all 0.2s ease;
}
.sidebar-link:hover {
background: rgb(255 255 255 / 3%);
color: #fff;
}
.sidebar-item.is-active .sidebar-link {
background: rgb(99 102 241 / 15%); color: #fff;
border: 1px solid rgb(99 102 241 / 30%);
}
.sidebar-icon {
display: flex;
align-items: center;
justify-content: center;
width: 24px;
height: 24px;
} .sidebar-footer {
padding: 1.5rem;
border-top: 1px solid rgb(255 255 255 / 5%);
}
.sidebar-btn-cta {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.875rem 1.25rem;
background: var(--primary-gradient);
border-radius: 12px;
color: #fff;
font-size: 0.85rem;
font-weight: 700;
text-align: center;
transition: all 0.3s ease;
box-shadow: 0 4px 12px rgb(99 102 241 / 20%);
}
.sidebar-btn-cta:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgb(99 102 241 / 40%);
opacity: 1;
}
.sidebar-btn-cta span {
flex: 1;
text-align: left;
}
.sidebar-btn-cta svg {
margin-left: 0.5rem;
transition: transform 0.2s ease;
}
.sidebar-btn-cta:hover svg {
transform: translateX(3px);
} @media (width >=1024px) {
.site-sidebar,
.sidebar-toggle {
display: none !important;
}
}
@media (width <=1023px) { .site-header {
display: block;
}
body.sidebar-locked {
overflow: hidden;
}
}  .ai-answer-section {
position: relative;
z-index: 20;
margin-top: -3rem;
margin-bottom: var(--gap-lg);
}
.ai-answer-card {
background: rgb(3 0 20 / 95%); border: 1px solid rgb(168 85 247 / 50%); box-shadow: 0 0 30px rgb(168 85 247 / 15%); }
.ai-header {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: 1rem;
}
.ai-label {
font-size: 0.75rem;
font-weight: 700;
letter-spacing: 0.1em;
color: #a855f7; text-transform: uppercase;
}
.ai-question {
font-size: 1.25rem;
font-weight: 700;
margin-bottom: 0.75rem;
color: var(--text-primary);
}
.ai-answer {
color: var(--text-secondary);
font-size: 1rem;
line-height: 1.7;
margin: 0;
} .service-hero {
position: relative;
padding: var(--gap-lg) 0;
min-height: 80vh;
display: flex;
align-items: center;
overflow: hidden;
}
.service-hero-grid {
display: grid;
gap: var(--gap-lg);
align-items: center;
}
.service-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 8px 16px;
background: var(--glass-surface);
border: var(--glass-border);
border-radius: var(--radius-pill);
margin-bottom: var(--gap-md);
font-size: 0.85rem;
font-weight: 600;
}
.service-hero-content h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: var(--gap-md);
}
.trust-signal {
display: flex;
align-items: center;
gap: 10px;
margin-top: var(--gap-md);
color: var(--text-secondary);
font-size: 0.9rem;
}
.trust-stars {
color: #fbbf24;
} .benefits-grid {
display: grid;
gap: 1rem;
}
.benefit-card {
display: flex;
align-items: flex-start;
gap: 1rem;
padding: 1.25rem;
background: var(--glass-surface);
border: var(--glass-border);
border-radius: var(--radius-card);
transition: all 0.3s ease;
}
.benefit-card:hover {
background: var(--glass-surface-hover);
transform: translateY(-2px);
}
.benefit-icon {
font-size: 1.5rem;
flex-shrink: 0;
}
.benefit-info h3 {
font-size: 1rem;
margin-bottom: 0.25rem;
}
.benefit-info p {
font-size: 0.85rem;
color: var(--text-secondary);
margin: 0;
} .service-problem {
padding: var(--gap-lg) 0;
}
.problem-grid {
display: grid;
gap: var(--gap-md);
}
.problem-card,
.solution-card {
padding: var(--gap-md);
border-radius: var(--radius-card);
}
.problem-card {
background: rgb(239 68 68 / 5%);
border: 1px solid rgb(239 68 68 / 20%);
}
.problem-card h2 {
color: #f87171;
margin-bottom: 1rem;
}
.problem-list,
.solution-list {
list-style: none;
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.problem-list li {
color: var(--text-secondary);
}
.solution-list li {
color: #4ade80;
} .service-pricing {
padding: var(--gap-lg) 0;
}
.pricing-grid {
display: grid;
gap: var(--gap-md);
margin-top: var(--gap-md);
}
.pricing-card {
position: relative;
padding: var(--gap-md);
text-align: center;
transition: all 0.3s ease;
display: flex;
flex-direction: column;
height: 100%;
gap: 1rem; }
.pricing-card.popular {
border-color: rgb(168 85 247 / 50%);
transform: scale(1.02);
}
.popular-badge {
position: absolute;
top: -12px;
left: 50%;
transform: translateX(-50%);
background: var(--primary-gradient);
color: #fff;
padding: 4px 16px;
border-radius: var(--radius-pill);
font-size: 0.75rem;
font-weight: 700;
}
.pricing-card h3 {
font-size: 1.25rem;
margin: 0;
}
.price {
font-size: 2.5rem;
font-weight: 800;
background: var(--primary-gradient);
background-clip: text;
-webkit-text-fill-color: transparent;
margin: 0;
}
.features-list {
list-style: none;
text-align: left;
margin: 0;
}
.features-list li {
padding: 0.5rem 0;
border-bottom: 1px solid rgb(255 255 255 / 5%);
color: var(--text-secondary);
font-size: 0.9rem;
}
.features-list li:last-child {
border-bottom: none;
}
.pricing-card .btn-gradient {
width: 100%;
margin-top: auto; } .service-trust {
padding: var(--gap-md) 0;
background: linear-gradient(180deg, rgb(99 102 241 / 5%) 0%, transparent 100%);
}
.trust-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--gap-md);
text-align: center;
}
.trust-item {
padding: 1rem;
}
.trust-number {
display: block;
font-size: 2.5rem;
font-weight: 800;
background: var(--primary-gradient);
background-clip: text;
-webkit-text-fill-color: transparent;
}
.trust-label {
display: block;
color: var(--text-secondary);
font-size: 0.85rem;
margin-top: 0.25rem;
} .service-faq {
padding: var(--gap-lg) 0;
}
.faq-grid {
display: flex;
flex-direction: column;
gap: 1rem;
max-width: 800px;
margin: var(--gap-md) auto 0;
} .service-cta {
padding: var(--gap-lg) 0;
}
.service-cta .cta-card {
text-align: center;
padding: var(--gap-lg);
}  @media (width >=768px) {
.service-hero-grid {
grid-template-columns: 1fr 1fr;
}
.benefits-grid {
grid-template-columns: repeat(2, 1fr);
}
.problem-grid {
grid-template-columns: 1fr 1fr;
}
.pricing-grid {
grid-template-columns: repeat(3, 1fr);
}
.trust-grid {
grid-template-columns: repeat(4, 1fr);
}
} .location-hero {
position: relative;
overflow: hidden;
}  .pricing-hero {
position: relative;
overflow: hidden;
}
.pricing-hero-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.pricing-hero-content h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: var(--gap-md);
} .pricing-section {
padding: var(--gap-lg) 0;
}
.plan-desc {
color: var(--text-secondary);
font-size: 0.9rem;
margin-bottom: 1.5rem;
min-height: 60px;
} .pricing-why {
padding: var(--gap-lg) 0;
background: linear-gradient(180deg, rgb(99 102 241 / 3%) 0%, transparent 100%);
}
.why-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--gap-md);
margin-top: var(--gap-md);
}
.why-card {
padding: var(--gap-md);
text-align: center;
}
.why-icon {
font-size: 2.5rem;
display: block;
margin-bottom: 1rem;
}
.why-card h3 {
margin-bottom: 0.5rem;
}
.why-card p {
color: var(--text-secondary);
font-size: 0.9rem;
margin: 0;
} .pricing-faq {
padding: var(--gap-lg) 0;
} .pricing-cta {
padding: var(--gap-lg) 0;
}
.pricing-cta .cta-card {
text-align: center;
padding: var(--gap-lg);
} @media (width >=768px) {
.why-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (width >=1024px) {
.why-grid {
grid-template-columns: repeat(4, 1fr);
}
}  .portfolio-hero {
position: relative;
overflow: hidden;
}
.portfolio-hero-content {
text-align: center;
max-width: 800px;
margin: 0 auto;
}
.portfolio-hero-content h1 {
font-size: clamp(2rem, 5vw, 3.5rem);
font-weight: 700;
line-height: 1.1;
margin-bottom: var(--gap-md);
} .portfolio-section {
padding: var(--gap-lg) 0;
} .portfolio-filters-wrapper {
margin-bottom: var(--gap-md);
background: var(--glass-surface);
border: var(--glass-border);
padding: 1.5rem;
border-radius: var(--radius-card);
display: flex;
flex-direction: column;
gap: 1rem;
}
.filter-group {
display: flex;
align-items: center;
gap: 1rem;
flex-wrap: wrap;
}
.filter-label {
font-size: 0.75rem;
font-weight: 700;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.1em;
min-width: 80px;
}
.portfolio-filters {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
}
.filter-btn {
padding: 6px 16px;
background: rgb(255 255 255 / 3%);
border: 1px solid rgb(255 255 255 / 10%);
border-radius: var(--radius-pill);
color: var(--text-secondary);
font-size: 0.85rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.filter-btn:hover {
background: rgb(255 255 255 / 8%);
color: #fff;
}
.filter-btn.active {
background: var(--primary-gradient);
color: #fff;
border-color: transparent;
box-shadow: 0 4px 15px rgb(168 85 247 / 30%);
}
.portfolio-meta {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
margin-bottom: 8px;
}
.portfolio-industry {
font-size: 0.7rem;
color: #a855f7;
font-weight: 700;
background: rgb(168 85 247 / 10%);
padding: 2px 8px;
border-radius: 4px;
text-transform: uppercase;
} .portfolio-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--gap-md);
} .portfolio-card {
overflow: hidden;
transition: all 0.3s ease;
}
.portfolio-card:hover {
transform: translateY(-5px);
}
.portfolio-image {
position: relative;
height: 200px;
overflow: hidden;
background: #f8f9fa;
}
.portfolio-image img {
width: 100%;
height: 100%;
object-fit: contain;
padding: 1rem;
transition: transform 0.3s ease;
}
.portfolio-card:hover .portfolio-image img {
transform: scale(1.05);
}
.portfolio-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgb(0 0 0 / 70%);
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
}
.portfolio-card:hover .portfolio-overlay {
opacity: 1;
}
.portfolio-info {
padding: 1rem;
text-align: center;
}
.portfolio-type {
display: inline-block;
font-size: 0.75rem;
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 0.25rem;
}
.portfolio-info h3 {
font-size: 1rem;
margin: 0;
} .portfolio-stats {
padding: var(--gap-md) 0;
background: linear-gradient(180deg, rgb(99 102 241 / 3%) 0%, transparent 100%);
} .portfolio-cta {
padding: var(--gap-lg) 0;
}
.portfolio-cta .cta-card {
text-align: center;
padding: var(--gap-lg);
} @media (width >=768px) {
.portfolio-grid {
grid-template-columns: repeat(2, 1fr);
}
}
@media (width >=1024px) {
.portfolio-grid {
grid-template-columns: repeat(4, 1fr);
}
.portfolio-image {
height: 180px;
}
}  .main-navigation ul li {
position: relative;
}
.main-navigation ul li a {
text-decoration: none;
color: var(--text-primary);
font-weight: 500;
transition: color 0.3s;
display: block;
padding: 10px 0;
}
.main-navigation ul li:hover>a,
.main-navigation ul li.current-menu-item>a {
color: var(--primary-color);
} .main-navigation ul ul {
display: none;
position: absolute;
top: 100%;
left: 0;
background: rgb(255 255 255 / 95%);
backdrop-filter: blur(10px);
border: 1px solid rgb(255 255 255 / 20%);
box-shadow: 0 10px 30px rgb(0 0 0 / 10%);
border-radius: 12px;
padding: 10px;
flex-direction: column;
gap: 0;
min-width: 220px;
z-index: 999;
}
.main-navigation ul li.is-open>ul {
display: flex;
}
.main-navigation ul ul li {
width: 100%;
}
.main-navigation ul ul li a {
padding: 10px 15px;
white-space: nowrap;
color: var(--text-primary);
border-radius: 6px;
}
.main-navigation ul ul li a:hover {
background: rgb(99 102 241 / 10%);
color: var(--primary-color);
} .menu-item-has-children>a::after {
content: ' ';
font-size: 0.6em;
vertical-align: middle;
margin-left: 5px;
opacity: 0.5;
} .sidebar-item {
margin-bottom: 5px;
transition: all 0.3s ease;
}
.sidebar-item.is-active>.sidebar-link {
background: rgb(99 102 241 / 15%);
color: #fff;
box-shadow: 0 0 20px rgb(99 102 241 / 20%);
}
.sidebar-chevron {
margin-left: auto;
opacity: 0.4;
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-item.is-open .sidebar-chevron {
transform: rotate(180deg);
opacity: 0.8;
} .sidebar-submenu {
list-style: none;
padding: 0;
margin: 5px 0 10px 1.5rem; display: none; flex-direction: column;
gap: 4px;
}
.sidebar-item.is-open .sidebar-submenu {
display: flex;
}
.sidebar-submenu-item {
margin: 0;
}
.sidebar-submenu-link {
display: flex;
align-items: center;
gap: 12px;
padding: 0.6rem 1rem;
color: rgb(255 255 255 / 45%);
text-decoration: none;
font-size: 0.82rem;
border-radius: 8px;
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.sidebar-icon-mini {
display: flex;
align-items: center;
justify-content: center;
width: 20px;
opacity: 0.6;
transition: opacity 0.3s ease;
}
.sidebar-submenu-link:hover {
color: #fff;
background: rgb(255 255 255 / 5%);
}
.sidebar-submenu-link:hover .sidebar-icon-mini {
opacity: 1;
}
.sidebar-icon:empty+.sidebar-label {
margin-left: 0;
} .container-wide {
max-width: 1400px;
}
.centered-hero {
display: flex !important;
flex-direction: column;
align-items: center;
text-align: center;
width: 100%;
}
.centered-hero .service-hero-content {
max-width: 900px;
margin: 0 auto;
}
.centered-hero .hero-ctas,
.centered-hero .trust-signal {
justify-content: center;
}
.centered-hero .service-hero-visual {
display: none;
}
.table-pricing-wrapper {
display: table; margin: 4rem auto 0;
max-width: 1300px;
width: 95%; background: #030014; border: 1px solid rgb(255 255 255 / 8%);
border-radius: 4px;
box-shadow: 0 30px 60px rgb(0 0 0 / 50%);
overflow: hidden;
}
.domain-table {
border-collapse: collapse;
width: 100%;
}
.domain-table thead th {
padding: 1.75rem 1rem;
background: #f1f5f9; color: #0f172a; font-size: 1.05rem;
font-weight: 800;
text-transform: uppercase;
text-align: center;
border: 1.5px solid #000; letter-spacing: 0.05em;
}
.domain-table td {
padding: 1.5rem 2rem;
color: rgb(255 255 255 / 70%);
border-bottom: 1px solid rgb(255 255 255 / 3%);
font-size: 1rem;
vertical-align: middle;
}
.domain-table tr:hover td {
background: rgb(255 255 255 / 2%);
color: #fff;
}
.btn-micro-gradient {
display: inline-block;
padding: 12px 24px;
background: var(--primary-gradient);
border-radius: 4px;
color: #fff !important;
font-size: 0.85rem;
font-weight: 800;
text-transform: capitalize;
transition: all 0.3s ease;
}
.btn-micro-gradient:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgb(168 85 247 / 40%); }
.btn-micro-outline {
display: inline-block;
padding: 12px 24px;
background: #030014; border: 1px solid rgb(255 255 255 / 20%);
border-radius: 4px;
color: #fff !important;
font-size: 0.85rem;
font-weight: 500;
transition: all 0.3s ease;
}
.btn-micro-outline:hover {
background: rgb(255 255 255 / 10%);
border-color: rgb(255 255 255 / 40%);
}
.notice-block.glass-card {
background: rgb(234 179 8 / 5%);
border: 1px solid rgb(234 179 8 / 20%);
border-left: 4px solid #eab308;
}
.search-card-hero {
max-width: 900px;
margin: 3rem auto 0;
padding: 2.5rem;
}
.domain-hero-search {
display: flex;
gap: 10px;
}
.domain-hero-search input {
flex: 1;
background: rgb(255 255 255 / 5%);
border: 1px solid rgb(255 255 255 / 10%);
border-radius: 12px;
padding: 1rem 1.5rem;
color: #fff;
font-size: 1.1rem;
}
.domain-hero-search input:focus {
outline: none;
border-color: var(--primary-color);
background: rgb(255 255 255 / 10%);
}   .reviews-grid {
display: grid;
gap: var(--gap-md);
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.review-card {
padding: 2rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
position: relative;
}
.review-stars {
color: #fbbf24;
font-size: 1rem;
letter-spacing: 2px;
}
.review-text {
font-size: 1rem;
color: var(--text-secondary);
font-style: italic;
line-height: 1.7;
}
.review-author {
display: flex;
align-items: center;
gap: 1rem;
margin-top: auto;
}
.author-info h4 {
font-size: 1rem;
margin: 0;
color: var(--text-primary);
}
.author-info span {
font-size: 0.8rem;
color: var(--text-secondary);
} .case-studies-grid {
display: grid;
gap: var(--gap-md);
grid-template-columns: 1fr; }
.case-study-card {
padding: 0;
overflow: hidden;
height: 100%;
display: flex;
flex-direction: column;
}
.case-study-image {
width: 100%;
aspect-ratio: 16 / 9;
background: #05001a;
position: relative;
overflow: hidden;
}
.case-study-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.case-study-card:hover .case-study-image img {
transform: scale(1.1);
}
.case-study-content {
padding: 2rem;
}
.case-study-tag {
font-size: 0.7rem;
font-weight: 700;
text-transform: uppercase;
color: var(--accent-purple);
margin-bottom: 0.5rem;
display: block;
}
.case-study-stats {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
margin-top: 1.5rem;
padding-top: 1.5rem;
border-top: 1px solid rgb(255 255 255 / 5%);
}
.stat-item .stat-value {
display: block;
font-size: 1.5rem;
font-weight: 800;
background: var(--primary-gradient);
background-clip: text;
-webkit-text-fill-color: transparent;
}
.stat-item .stat-label {
font-size: 0.75rem;
color: var(--text-secondary);
} .process-grid {
display: grid;
gap: 2rem;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
counter-reset: process;
}
.process-step {
padding: 2rem;
position: relative;
}
.process-step::before {
counter-increment: process;
content: "0" counter(process);
position: absolute;
top: 1rem;
right: 1.5rem;
font-size: 3rem;
font-weight: 900;
opacity: 0.05;
}
.step-icon {
font-size: 2rem;
margin-bottom: 1rem;
display: block;
} .leapfrog-grid {
display: grid;
gap: var(--gap-md);
grid-template-columns: 1fr 1fr;
}
.leapfrog-card {
padding: 3rem;
}
.eco-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 4px 12px;
background: rgb(74 222 128 / 10%);
border: 1px solid rgb(74 222 128 / 20%);
border-radius: 100px;
color: #4ade80;
font-size: 0.7rem;
font-weight: 700;
margin-bottom: 1rem;
}
.wcag-badge {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 4px 12px;
background: rgb(99 102 241 / 10%);
border: 1px solid rgb(99 102 241 / 20%);
border-radius: 100px;
color: #6366f1;
font-size: 0.7rem;
font-weight: 700;
margin-bottom: 1rem;
} .glow-blob {
position: absolute;
width: 400px;
height: 400px;
background: radial-gradient(circle, var(--accent-purple) 0%, transparent 70%);
filter: blur(80px);
opacity: 0.15;
z-index: -1;
pointer-events: none;
}
.glow-blob.secondary {
background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
} .cta-card::after {
content: "";
position: absolute;
inset: 0;
background: var(--glass-surface);
backdrop-filter: var(--glass-blur);
z-index: -1;
}
@media (width <=768px) {
.leapfrog-grid {
grid-template-columns: 1fr;
}
.section-header {
text-align: left;
}
} .powerhouse-card {
border: 1px solid rgb(168 85 247 / 30%) !important;
background: linear-gradient(135deg, rgb(3 0 20 / 80%), rgb(168 85 247 / 5%)) !important;
margin-bottom: 4rem;
}
.ai-footer {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
padding-top: 1rem;
border-top: 1px solid var(--glass-border);
flex-wrap: wrap;
}
.ai-footer .badge {
font-size: 0.7rem;
padding: 0.25rem 0.75rem;
border-radius: 20px;
background: rgb(255 255 255 / 5%);
border: 1px solid var(--glass-border);
color: var(--text-secondary);
text-transform: uppercase;
letter-spacing: 0.05em;
}
.powerhouse-grid {
gap: 2rem !important;
}
.powerhouse-solution {
border-color: rgb(99 102 241 / 40%) !important;
background: linear-gradient(165deg, rgb(99 102 241 / 10%), transparent) !important;
}
.problem-intro,
.solution-intro {
font-size: 0.95rem;
color: var(--text-secondary);
margin: 0.5rem 0 1.5rem;
line-height: 1.6;
}
.problem-list span,
.solution-list span {
margin-right: 0.75rem;
font-size: 1.1rem;
width: 24px;
display: inline-block;
}  .single-post .prose {
font-size: 1.125rem;
line-height: 1.8;
color: rgb(203 213 225 / 100%);
} .awd-blog-content {
font-size: 1.125rem;
line-height: 1.8;
color: rgb(203 213 225 / 100%);
background-color: transparent !important;
padding: 0 !important;
width: 100%;
display: block;
}
.awd-blog-content p {
margin-bottom: 1.5rem;
color: rgb(203 213 225 / 100%);
}
.awd-blog-content h2 {
font-size: 1.75rem;
font-weight: 700;
color: white;
margin-top: 3rem;
margin-bottom: 1.5rem;
padding-bottom: 1rem;
border-bottom: 1px solid rgb(51 65 85 / 100%);
}
.awd-blog-content h3 {
font-size: 1.375rem;
font-weight: 600;
color: white;
margin-top: 2rem;
margin-bottom: 1rem;
}
.awd-blog-content h4 {
font-size: 1.125rem;
font-weight: 600;
color: white;
margin-top: 1.5rem;
margin-bottom: 0.75rem;
}
.awd-blog-content ul,
.awd-blog-content ol {
margin: 1.5rem 0;
padding-left: 1.5rem;
}
.awd-blog-content li {
margin-bottom: 0.75rem;
color: rgb(203 213 225 / 100%);
}
.awd-blog-content a {
color: var(--accent-purple);
text-decoration: none;
transition: opacity 0.2s ease;
}
.awd-blog-content a:hover {
text-decoration: underline;
}
.awd-blog-content strong {
color: white;
font-weight: 600;
}
.awd-blog-content blockquote {
border-left: 4px solid var(--accent-purple);
background: rgb(51 65 85 / 50%);
padding: 1.5rem;
border-radius: 0 0.75rem 0.75rem 0;
margin: 1.5rem 0;
font-style: italic;
}
.awd-blog-content blockquote p {
margin-bottom: 0;
}
.awd-blog-content img {
border-radius: 1rem;
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 25%);
margin: 2rem 0;
}
.awd-blog-content code {
background: rgb(51 65 85 / 100%);
color: rgb(244 114 182 / 100%);
padding: 0.25rem 0.5rem;
border-radius: 0.25rem;
font-size: 0.875em;
}
.awd-blog-content pre {
background: rgb(51 65 85 / 100%);
border: 1px solid rgb(71 85 105 / 100%);
border-radius: 0.75rem;
padding: 1.5rem;
overflow-x: auto;
margin: 1.5rem 0;
}
.awd-blog-content pre code {
background: transparent;
padding: 0;
} .awd-blog-content table {
width: 100%;
border-collapse: collapse;
margin: 2rem 0;
font-size: 1rem;
}
.awd-blog-content th,
.awd-blog-content td {
padding: 1rem;
text-align: left;
border-bottom: 1px solid rgb(51 65 85 / 100%);
}
.awd-blog-content th {
background: rgb(51 65 85 / 50%);
color: white;
font-weight: 600;
}
.awd-blog-content tr:hover {
background: rgb(51 65 85 / 30%);
} .glass-panel {
background: var(--glass-surface);
backdrop-filter: var(--glass-blur);
border: var(--glass-border);
border-radius: var(--radius-card);
} .feature-tooltip {
position: relative;
display: inline-flex;
align-items: center;
gap: 6px;
cursor: help;
}
.feature-tooltip .tooltip-icon {
width: 16px;
height: 16px;
flex-shrink: 0;
color: rgb(168 85 247 / 50%);
transition: color 0.3s ease;
}
.feature-tooltip:hover .tooltip-icon {
color: rgb(168 85 247 / 100%);
}
.feature-tooltip .tooltip-content {
position: absolute;
bottom: 100%;
left: 0;
margin-bottom: 12px;
width: 220px;
padding: 12px;
background: #000;
border: 1px solid rgb(255 255 255 / 10%);
border-radius: 12px;
font-size: 11px;
line-height: 1.5;
color: #94a3b8;
opacity: 0;
visibility: hidden;
transition: opacity 0.3s ease, visibility 0.3s ease;
pointer-events: none;
z-index: 9999;
box-shadow: 0 25px 50px -12px rgb(0 0 0 / 50%);
}
.feature-tooltip:hover .tooltip-content {
opacity: 1;
visibility: visible;
}
.feature-tooltip .tooltip-content::after {
content: '';
position: absolute;
top: 100%;
left: 16px;
border: 8px solid transparent;
border-top-color: #000;
}
.tooltip-content .tooltip-label {
color: #fff;
font-weight: 700;
font-size: 8px;
text-transform: uppercase;
letter-spacing: 0.1em;
margin-bottom: 4px;
}