:root {
--primary: #0a192f;
--secondary: #112240;
--accent: #64ffda;
--text: #e6f1ff;
--text-secondary: #fff;
--glass-surface: rgba(17, 34, 64, 0.38);
--glass-surface-strong: rgba(17, 34, 64, 0.56);
--glass-border: rgba(230, 241, 255, 0.18);
--glass-highlight: rgba(100, 255, 218, 0.12);
--glass-shadow: 0 24px 50px rgba(2, 12, 27, 0.28);
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
background-color: var(--primary);
background-image:
linear-gradient(180deg, rgba(10, 25, 47, 0.95), rgba(2, 12, 27, 0.98)),
url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='520' height='320' viewBox='0 0 520 320'%3E%3Cg fill='none' stroke='%2300e2f7' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='.36'%3E%3Cpath d='M0 42h78l20 20h72l28 28h74l32-32h70l16-16h130'/%3E%3Cpath d='M0 102h52l24 24h98l30-30h62l40 40h92l26-26h96'/%3E%3Cpath d='M0 178h92l18-18h70l34 34h84l22-22h86l24 24h90'/%3E%3Cpath d='M0 258h118l20-20h54l34-34h86l32 32h76l20-20h80'/%3E%3Cpath d='M260 0v56l-22 22v70l28 28v60l-26 26v58'/%3E%3Cpath d='M322 0v72l-30 30v58l38 38v44l-22 22v56'/%3E%3Cpath d='M198 0v50l26 26v60l-44 44v54l-28 28v58'/%3E%3Cpath d='M442 0v30l-34 34v50l-28 28v52l34 34v92'/%3E%3Cpath d='M78 0v28l32 32v46l-34 34v56l24 24v100'/%3E%3C/g%3E%3Cg fill='%2364ffda' opacity='.48'%3E%3Ccircle cx='98' cy='62' r='2'/%3E%3Ccircle cx='198' cy='90' r='2'/%3E%3Ccircle cx='304' cy='58' r='2'/%3E%3Ccircle cx='390' cy='42' r='2'/%3E%3Ccircle cx='76' cy='126' r='2'/%3E%3Ccircle cx='204' cy='96' r='2'/%3E%3Ccircle cx='306' cy='136' r='2'/%3E%3Ccircle cx='424' cy='110' r='2'/%3E%3Ccircle cx='110' cy='160' r='2'/%3E%3Ccircle cx='214' cy='194' r='2'/%3E%3Ccircle cx='320' cy='172' r='2'/%3E%3Ccircle cx='430' cy='196' r='2'/%3E%3Ccircle cx='138' cy='238' r='2'/%3E%3Ccircle cx='226' cy='204' r='2'/%3E%3Ccircle cx='344' cy='236' r='2'/%3E%3Ccircle cx='440' cy='216' r='2'/%3E%3C/g%3E%3Cg fill='%2300e2f7' opacity='.32'%3E%3Crect x='470' y='70' width='4' height='4'/%3E%3Crect x='478' y='70' width='4' height='4'/%3E%3Crect x='486' y='70' width='4' height='4'/%3E%3Crect x='470' y='78' width='4' height='4'/%3E%3Crect x='478' y='78' width='4' height='4'/%3E%3Crect x='486' y='78' width='4' height='4'/%3E%3Crect x='34' y='214' width='4' height='4'/%3E%3Crect x='42' y='214' width='4' height='4'/%3E%3Crect x='50' y='214' width='4' height='4'/%3E%3Crect x='34' y='222' width='4' height='4'/%3E%3Crect x='42' y='222' width='4' height='4'/%3E%3Crect x='50' y='222' width='4' height='4'/%3E%3Crect x='352' y='270' width='4' height='4'/%3E%3Crect x='360' y='270' width='4' height='4'/%3E%3Crect x='368' y='270' width='4' height='4'/%3E%3Crect x='352' y='278' width='4' height='4'/%3E%3Crect x='360' y='278' width='4' height='4'/%3E%3Crect x='368' y='278' width='4' height='4'/%3E%3C/g%3E%3C/svg%3E");
background-size: auto, 520px 320px;
background-position: 0 0, center top;
background-attachment: fixed;
color: var(--text);
overflow-x: hidden;
position: relative;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 2rem;
}

/* Navigation */
nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 2rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 100;
transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
background: rgba(7, 17, 31, 0.18);
backdrop-filter: blur(16px);
-webkit-backdrop-filter: blur(16px);
border-bottom: 1px solid rgba(230, 241, 255, 0.08);
}
nav .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
nav.scrolled {
background-color: rgba(7, 17, 31, 0.46);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
box-shadow: 0 10px 30px -10px rgba(2, 12, 27, 0.55);
border-bottom-color: rgba(100, 255, 218, 0.12);
}

.logo {
font-size: 1.5rem;
font-weight: 700;
color: var(--accent);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 0;
line-height: 1;
text-decoration: none;
}

.logo img {
display: block;
width: auto;
height: 52px;
object-fit: contain;
}

.logo-icon {
width: 40px;
height: 40px;
margin-right: 10px;
position: relative;
}

.nav-container {
display: flex;
align-items: center;
margin-left: auto;
}

.nav-links {
display: flex;
align-items: center;
justify-content: center;
gap: 2rem;
list-style: none;
padding-bottom: 0;
}

.nav-links a {
color: var(--text);
text-decoration: none;
font-size: 1rem;
transition: color 0.3s ease;
position: relative;
}

.nav-links a:hover {
color: var(--accent);
}

.nav-links a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: var(--accent);
transition: width 0.3s ease;
}

.nav-links a:hover::after {
width: 100%;
}

.cta-button {
background-color: transparent;
color: var(--accent);
border: 1px solid var(--accent);
padding: 0.75rem 1.5rem;
border-radius: 999px;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
background-color: rgba(100, 255, 218, 0.1);
transform: translateY(-3px);
}

/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
position: relative;
overflow: hidden;
padding: 2rem 0;
background: linear-gradient(135deg, rgba(2, 12, 27, 0.82), rgba(2, 12, 27, 0.58));
background-image:
linear-gradient(135deg, rgba(2, 12, 27, 0.82), rgba(2, 12, 27, 0.58)),
url('../images/HERO.png');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.hero::before {
content: '';
position: absolute;
inset: 10% auto auto 8%;
width: 420px;
height: 420px;
background: radial-gradient(circle, rgba(100, 255, 218, 0.18), transparent 70%);
filter: blur(8px);
pointer-events: none;
z-index: 0;
}

.hero::after {
content: '';
position: absolute;
right: 6%;
bottom: 12%;
width: 320px;
height: 320px;
background: radial-gradient(circle, rgba(0, 226, 247, 0.18), transparent 72%);
filter: blur(14px);
pointer-events: none;
z-index: 0;
}

.hero-content {
position: relative;
z-index: 2;
width: 100%;
max-width: 860px;
padding: clamp(1.75rem, 4vw, 3rem);
border: 1px solid var(--glass-border);
border-radius: 28px;
background:
linear-gradient(145deg, rgba(0, 226, 247, 0.12), rgba(5, 230, 251, 0.03)),
var(--glass-surface);
box-shadow: var(--glass-shadow);
backdrop-filter: blur(22px);
-webkit-backdrop-filter: blur(22px);
overflow: hidden;
}

.hero-content::before {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent 32%, transparent 68%, rgba(100, 255, 218, 0.08));
pointer-events: none;
}

.hero-content::after {
content: '';
position: absolute;
top: 18px;
left: 18px;
width: 120px;
height: 120px;
border-top: 1px solid rgba(255, 255, 255, 0.22);
border-left: 1px solid rgba(255, 255, 255, 0.22);
border-radius: 24px 0 0 0;
opacity: 0.6;
pointer-events: none;
}

.hero-subtitle {
color: var(--accent);
font-size: clamp(1rem, 2vw, 1.2rem);
margin-bottom: 1rem;
opacity: 0;
}

.hero-title {
font-size: clamp(2rem, 6vw, 3rem);
font-weight: 800;
margin-bottom: 1.5rem;
opacity: 0;
line-height: 1.2;
word-wrap: break-word;
}

.hero-title span {
color: var(--accent);
}

.hero-description {
color: var(--text-secondary);
font-size: clamp(1rem, 2vw, 1.2rem);
max-width: 600px;
margin-bottom: 2rem;
line-height: 1.6;
opacity: 0;
}

.hero-cta {
opacity: 0;
}

.background-grid {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(17, 34, 64, 0.1) 1px, transparent 1px),
linear-gradient(90deg, rgba(17, 34, 64, 0.1) 1px, transparent 1px);
background-size: 40px 40px;
z-index: 1;
}

.particles {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1;
}

.particle {
position: absolute;
background-color: var(--accent);
opacity: 0.2;
border-radius: 50%;
}

/* Services Section */
.services {
padding: 4rem 0;
position: relative;
}

.section-heading {
text-align: center;
margin-bottom: 3rem;
position: relative;
}

.section-title {
font-size: clamp(1.8rem, 4vw, 2.5rem);
margin-bottom: 1rem;
position: relative;
display: inline-block;
}

.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: var(--accent);
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
}

.service-card {
padding: 2rem;
border-radius: 22px;
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative;
overflow: hidden;
cursor: pointer;
opacity: 0;
transform: translateY(30px);
background:
linear-gradient(160deg, rgba(2, 229, 250, 0.1), rgba(3, 235, 247, 0.386)),
var(--glass-surface);
border: 1px solid var(--glass-border);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
box-shadow: var(--glass-shadow);
}

.service-card:hover {
transform: translateY(-10px);
box-shadow: 0 24px 38px -18px rgba(2, 12, 27, 0.72);
}

.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(2, 217, 241, 0.12), transparent 40%, rgba(4, 242, 250, 0.1));
opacity: 0.45;
transition: opacity 0.3s ease;
pointer-events: none;
}

.service-card:hover::before {
opacity: 0.85;
}

.service-icon {
color: var(--accent);
font-size: 2rem;
margin-bottom: 1.5rem;
position: relative;
}

.service-icon svg {
width: 40px;
height: 40px;
fill: none;
stroke: var(--accent);
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
}

.service-title {
font-size: clamp(1.2rem, 3vw, 1.5rem);
margin-bottom: 1rem;
word-wrap: break-word;
}

.service-description {
color: var(--text-secondary);
line-height: 1.6;
font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Process Section */
.process-section {
padding: 4rem 0;
background-color: transparent;
}

.section-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 3rem;
opacity: 0;
padding: 0 1rem;
}

.section-intro h2 {
font-size: clamp(1.8rem, 4vw, 2.5rem);
margin-bottom: 1rem;
color: var(--accent);
}

.section-intro p {
font-size: clamp(1rem, 2vw, 1.1rem);
color: var(--text-secondary);
line-height: 1.8;
}

/* Step Cards */
.steps-container {
display: grid;
gap: 2rem;
}

.step-card {
display: flex;
flex-direction: column;
gap: 1.5rem;
padding: 2rem;
border-radius: 24px;
position: relative;
overflow: hidden;
opacity: 0;
transform: translateY(12px);
transition: transform 0.3s ease, box-shadow 0.3s ease;
background:
linear-gradient(145deg, rgba(3, 210, 247, 0.1), rgba(4, 234, 255, 0.03)),
var(--glass-surface);
border: 1px solid var(--glass-border);
box-shadow: var(--glass-shadow);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
}

.step-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 40px -15px rgba(100, 255, 218, 0.2);
}

.step-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 5px;
height: 100%;
background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
}

.step-number-wrapper {
display: flex;
align-items: center;
gap: 1.5rem;
}

.step-number {
font-size: clamp(3rem, 8vw, 5rem);
font-weight: 800;
color: rgba(100, 255, 218, 0.15);
line-height: 1;
position: relative;
flex-shrink: 0;
}

.step-number::after {
content: attr(data-number);
position: absolute;
top: 0;
left: 0;
font-size: clamp(2rem, 5vw, 3rem);
color: var(--accent);
}

.step-icon {
width: 60px;
height: 60px;
background-color: rgba(100, 255, 218, 0.1);
border-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.step-icon svg {
width: 30px;
height: 30px;
stroke: var(--accent);
}

.step-content {
flex: 1;
}

.step-title {
font-size: clamp(1.4rem, 3vw, 2rem);
margin-bottom: 1rem;
color: var(--text);
word-wrap: break-word;
}

.step-description {
font-size: clamp(1rem, 2vw, 1.1rem);
color: var(--text-secondary);
line-height: 1.8;
}

/* FAQ Section */
.faq-section {
padding: 4rem 0;
background-color: transparent;
}

.faq-intro {
text-align: center;
max-width: 700px;
margin: 0 auto 3rem;
padding: 0 1rem;
}

.faq-intro h2 {
font-size: clamp(1.8rem, 4vw, 2.5rem);
margin-bottom: 1rem;
color: var(--accent);
}

.faq-intro p {
font-size: clamp(1rem, 2vw, 1.1rem);
color: var(--text-secondary);
line-height: 1.8;
}

.faq-container {
max-width: 800px;
margin: 0 auto;
}

.faq-item {
margin-bottom: 1.5rem;
border-radius: 20px;
overflow: hidden;
border: 1px solid var(--glass-border);
transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
background:
linear-gradient(145deg, rgba(2, 249, 253, 0.062), rgba(5, 222, 251, 0.03)),
var(--glass-surface);
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
box-shadow: 0 18px 35px rgba(2, 12, 27, 0.18);
}

.faq-item:hover {
transform: translateX(5px);
border-color: rgba(100, 255, 218, 0.28);
box-shadow: 0 22px 40px rgba(2, 12, 27, 0.24);
}

.faq-question {
padding: 1.25rem 1.5rem;
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
user-select: none;
}

.faq-question h3 {
font-size: clamp(1rem, 2.5vw, 1.2rem);
color: var(--text);
margin: 0;
flex: 1;
word-wrap: break-word;
padding-right: 1rem;
}

.faq-icon {
font-size: 1.5rem;
color: var(--accent);
font-weight: 300;
transition: transform 0.3s ease;
margin-left: 0.5rem;
flex-shrink: 0;
}

.faq-item.active .faq-icon {
transform: rotate(45deg);
}

.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
max-height: 500px;
padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
color: var(--text-secondary);
line-height: 1.8;
margin: 0;
font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Request a Demo Section */
.demo-section {
padding: 4rem 0;
background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
position: relative;
overflow: hidden;
}

.demo-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 20% 50%, rgba(100, 255, 218, 0.05) 0%, transparent 50%);
pointer-events: none;
}

.demo-content-wrapper {
display: grid;
grid-template-columns: 1fr;
gap: 3rem;
align-items: center;
position: relative;
z-index: 1;
}

.demo-text h2 {
font-size: clamp(1.8rem, 4vw, 2.5rem);
color: var(--accent);
margin-bottom: 0.5rem;
}

.demo-text h3 {
font-size: clamp(1.4rem, 3vw, 2rem);
color: var(--text);
margin-bottom: 1.5rem;
word-wrap: break-word;
}

.demo-description {
font-size: clamp(1rem, 2vw, 1.1rem);
color: var(--text-secondary);
line-height: 1.8;
margin-bottom: 2rem;
}

.demo-benefits h4 {
font-size: clamp(1.1rem, 2.5vw, 1.3rem);
color: var(--text);
margin-bottom: 1.5rem;
}

.benefits-list {
list-style: none;
margin-bottom: 2rem;
}

.benefits-list li {
display: flex;
align-items: flex-start;
gap: 1rem;
margin-bottom: 1rem;
font-size: clamp(0.95rem, 2vw, 1.1rem);
color: var(--text-secondary);
}

.check-icon {
width: 24px;
height: 24px;
stroke: var(--accent);
flex-shrink: 0;
margin-top: 0.2rem;
}

.btn-demo {
display: inline-block;
background-color: var(--accent);
color: var(--primary);
padding: 1rem 2rem;
border-radius: 4px;
text-decoration: none;
font-weight: 600;
font-size: clamp(1rem, 2vw, 1.1rem);
transition: all 0.3s ease;
border: 2px solid var(--accent);
text-align: center;
}

.btn-demo:hover {
background-color: transparent;
color: var(--accent);
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
}

/* Demo Visual */
.demo-visual {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}

.demo-card {
background-color: rgba(17, 34, 64, 0.8);
border-radius: 15px;
padding: 1.5rem;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(100, 255, 218, 0.2);
position: relative;
overflow: hidden;
backdrop-filter: blur(10px);
width: 100%;
max-width: 500px;
}

.demo-card-header {
display: flex;
justify-content: flex-start;
margin-bottom: 1.5rem;
}

.demo-dots {
display: flex;
gap: 0.5rem;
}

.demo-dots span {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: var(--accent);
opacity: 0.6;
}

.demo-dots span:nth-child(1) {
background-color: #ff5f56;
}

.demo-dots span:nth-child(2) {
background-color: #ffbd2e;
}

.demo-dots span:nth-child(3) {
background-color: #27c93f;
}

.demo-card-content {
display: flex;
flex-direction: column;
gap: 1rem;
}

.demo-metric {
background-color: rgba(100, 255, 218, 0.05);
padding: 1rem;
border-radius: 10px;
border-left: 3px solid var(--accent);
transition: transform 0.3s ease, background-color 0.3s ease;
}

.demo-metric:hover {
transform: translateX(10px);
background-color: rgba(100, 255, 218, 0.1);
}

.metric-label {
font-size: clamp(0.75rem, 1.5vw, 0.9rem);
color: var(--text-secondary);
margin-bottom: 0.5rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.metric-value {
font-size: clamp(1.8rem, 4vw, 2.5rem);
font-weight: 800;
color: var(--accent);
}

.demo-pulse {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
height: 100%;
border-radius: 15px;
background: radial-gradient(circle, rgba(100, 255, 218, 0.1) 0%, transparent 70%);
animation: pulse 3s ease-in-out infinite;
pointer-events: none;
}

@keyframes pulse {
0%, 100% {
opacity: 0.3;
transform: translate(-50%, -50%) scale(1);
}
50% {
opacity: 0.6;
transform: translate(-50%, -50%) scale(1.05);
}
}

/* Footer */
footer {
background:
linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
rgba(17, 34, 64, 0.7);
padding: 3rem 0;
text-align: center;
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
border-top: 1px solid rgba(230, 241, 255, 0.08);
}

.footer-content {
display: flex;
flex-direction: column;
align-items: center;
}

.footer-logo {
margin-bottom: 2rem;
}

.footer-logo img {
height: 64px;
}

.footer-links {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
margin-bottom: 2rem;
list-style: none;
justify-content: center;
}

.footer-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.3s ease;
font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-links a:hover {
color: var(--accent);
}

.social-icons {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
list-style: none;
}

.social-icons a {
color: var(--text-secondary);
font-size: 1.5rem;
transition: color 0.3s ease, transform 0.3s ease;
display: inline-block;
}

.social-icons a:hover {
color: var(--accent);
transform: translateY(-3px);
}

.copyright {
color: var(--text-secondary);
font-size: clamp(0.85rem, 1.5vw, 1rem);
}

/* Cursor */
.cursor {
position: fixed;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: transparent;
border: 2px solid var(--accent);
pointer-events: none;
transform: translate(-50%, -50%);
z-index: 9999;
transition: width 0.3s, height 0.3s, background-color 0.3s;
opacity: 0;
}

.cursor-dot {
position: fixed;
width: 6px;
height: 6px;
border-radius: 50%;
background-color: var(--accent);
pointer-events: none;
transform: translate(-50%, -50%);
z-index: 9999;
opacity: 0;
}

button a {
text-decoration: none;
color: var(--accent);
}

.empty {
height: 10vh;
}

body.menu-open {
overflow: hidden;
}

/* Mobile Menu */
.mobile-menu-toggle {
display: none;
flex-direction: column;
margin-top: 0;
justify-content: space-between;
width: 30px;
height: 21px;
cursor: pointer;
z-index: 1001;
}

.mobile-menu-toggle span {
display: block;
width: 100%;
height: 3px;
background-color: var(--accent);
transition: all 0.3s ease;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
.container {
padding: 0 1.5rem;
}

.services-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}

.demo-content-wrapper {
grid-template-columns: 1fr;
}

.step-card {
padding: 1.5rem;
}
}

/* Mobile Responsive */
@media (max-width: 768px) {
.container {
padding: 0 1rem;
}

nav {
padding: 1.5rem 0;
}

.mobile-menu-toggle {
display: flex;
}

.nav-container {
position: fixed;
top: 0;
right: -100%;
width: 75%;
max-width: 320px;
height: 100vh;
background:
linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
rgba(7, 17, 31, 0.72);
flex-direction: column;
justify-content: center;
align-items: center;
transition: right 0.3s ease;
box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
padding: 2rem;
z-index: 1000;
backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
border-left: 1px solid rgba(230, 241, 255, 0.08);
}

.nav-container.active {
right: 0;
}

.nav-links {
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 0;
gap: 1.25rem;
}

.nav-links li {
margin: 0.5rem 0;
}

.nav-links a {
font-size: 1.2rem;
}

.mobile-menu-toggle.active span:nth-child(1) {
transform: translateY(9px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
transform: translateY(-9px) rotate(-45deg);
}

    nav {
        padding: 1rem 0;
    }
    
    nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
.logo{
    font-size: 1.2rem;
}

.logo img {
height: 42px;
}
.hero {
min-height: 90vh;
padding: 6rem 0 2rem;
}

.hero-content {
padding: 1.5rem;
border-radius: 22px;
}

.services {
padding: 3rem 0;
}

.services-grid {
grid-template-columns: 1fr;
gap: 1.5rem;
}

.service-card {
padding: 1.5rem;
}

.step-card {
gap: 1rem;
padding: 1.5rem;
}

.section-heading {
margin-bottom: 2rem;
}

.section-intro {
margin-bottom: 2rem;
}

.steps-container {
gap: 1.5rem;
}

.demo-section {
padding: 3rem 0;
}

.demo-content-wrapper {
gap: 2rem;
}

.demo-visual {
order: -1;
}

.demo-card {
padding: 1.25rem;
}

.footer-links {
gap: 1rem;
}

.cta-button {
padding: 0.6rem 1.2rem;
font-size: 0.95rem;
}
}

/* Small Mobile Responsive */
@media (max-width: 480px) {
.container {
padding: 0 1rem;
}

.hero {
padding: 5rem 0 2rem;
}

.services {
padding: 2rem 0;
}

.process-section,
.faq-section,
.demo-section {
padding: 2.5rem 0;
}

.service-card,
.step-card {
padding: 1.25rem;
}

.faq-item {
border-radius: 16px;
}

.demo-card {
padding: 1rem;
}

.demo-metric {
padding: 0.75rem;
}

.btn-demo {
padding: 0.85rem 1.5rem;
width: 100%;
}

.footer-links {
flex-direction: column;
gap: 0.75rem;
}

.social-icons {
gap: 1rem;
}

.social-icons a {
font-size: 1.3rem;
}

.nav-container {
width: 85%;
}
}

/* Extra Small Devices */
@media (max-width: 360px) {
.demo-card-content {
gap: 0.75rem;
}

.benefits-list li {
gap: 0.75rem;
}

.check-icon {
width: 20px;
height: 20px;
}
}
