@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --bg-color: #0b0f19;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --accent-1: #6366f1;
    --accent-2: #a855f7;
    --gradient-primary: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --font-family: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism utility */
.glass {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    border-radius: 16px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-1);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 6rem 0;
}

/* Navbar */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(11, 15, 25, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--card-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
}

.nav-links a.active {
    color: var(--accent-2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 2.2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.6);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--accent-1);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(99, 102, 241, 0.1);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    padding-top: 5rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: var(--accent-1);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: var(--accent-2);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
    border-radius: 50%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Features Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    padding: 2.5rem;
    text-align: left;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* Steps */
.step-card {
    text-align: center;
}
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

/* Testimonials */
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
}
.testimonial-author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--accent-1);
}

/* CTA */
.cta-section {
    text-align: center;
    position: relative;
    padding: 8rem 0;
}
.cta-box {
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 4rem 0 2rem 0;
    background: rgba(0,0,0,0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--card-border);
    color: var(--text-secondary);
}

/* Legal Pages */
.legal-content {
    padding-top: 8rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.legal-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Mobile */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .nav-links { display: none; }
    .hero-buttons { flex-direction: column; }
    .contact-grid { grid-template-columns: 1fr; }
}

 / *   V S L   L a y o u t   S p e c i f i c   S t y l e s   * / 
 : r o o t   { 
         - - h i g h l i g h t :   # f f 6 7 0 0 ; 
         - - h i g h l i g h t - d a r k :   # e 0 5 a 0 0 ; 
 } 
 
 . h i g h l i g h t   { 
         c o l o r :   v a r ( - - h i g h l i g h t ) ; 
         f o n t - w e i g h t :   8 0 0 ; 
         b a c k g r o u n d :   n o n e ; 
         - w e b k i t - t e x t - f i l l - c o l o r :   v a r ( - - h i g h l i g h t ) ; 
 } 
 
 . v s l - p a g e   { 
         p a d d i n g - t o p :   6 r e m ; 
 } 
 
 . v s l - t i t l e   { 
         f o n t - s i z e :   3 r e m ; 
         l i n e - h e i g h t :   1 . 1 ; 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
         b a c k g r o u n d :   n o n e ; 
         - w e b k i t - t e x t - f i l l - c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
 } 
 
 . v s l - s u b t i t l e   { 
         f o n t - s i z e :   1 . 3 r e m ; 
         c o l o r :   v a r ( - - t e x t - p r i m a r y ) ; 
         m a r g i n - b o t t o m :   2 r e m ; 
 } 
 
 . v s l - l i s t   { 
         d i s p l a y :   f l e x ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         g a p :   2 r e m ; 
         l i s t - s t y l e :   n o n e ; 
         m a r g i n - b o t t o m :   3 r e m ; 
         f l e x - w r a p :   w r a p ; 
 } 
 
 . v s l - l i s t   l i   { 
         d i s p l a y :   f l e x ; 
         a l i g n - i t e m s :   c e n t e r ; 
         g a p :   0 . 5 r e m ; 
         f o n t - w e i g h t :   6 0 0 ; 
         f o n t - s i z e :   1 . 1 r e m ; 
 } 
 
 . v i d e o - w r a p p e r   { 
         w i d t h :   1 0 0 % ; 
         m a x - w i d t h :   8 0 0 p x ; 
         m a r g i n :   0   a u t o   3 r e m   a u t o ; 
         a s p e c t - r a t i o :   1 6   /   9 ; 
         b o r d e r - r a d i u s :   1 2 p x ; 
         o v e r f l o w :   h i d d e n ; 
         b o x - s h a d o w :   0   2 0 p x   4 0 p x   r g b a ( 0 , 0 , 0 , 0 . 4 ) ; 
         b o r d e r :   2 p x   s o l i d   v a r ( - - h i g h l i g h t ) ; 
 } 
 
 . v i d e o - p l a c e h o l d e r - b o x   { 
         w i d t h :   1 0 0 % ; 
         h e i g h t :   1 0 0 % ; 
         d i s p l a y :   f l e x ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         a l i g n - i t e m s :   c e n t e r ; 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
         b a c k g r o u n d :   r g b a ( 2 5 5 , 1 0 3 , 0 , 0 . 1 ) ; 
         c u r s o r :   p o i n t e r ; 
         t r a n s i t i o n :   a l l   0 . 3 s ; 
 } 
 
 . v i d e o - p l a c e h o l d e r - b o x : h o v e r   { 
         b a c k g r o u n d :   r g b a ( 2 5 5 , 1 0 3 , 0 , 0 . 2 ) ; 
 } 
 
 . v s l - c t a - b t n   { 
         b a c k g r o u n d :   v a r ( - - h i g h l i g h t ) ; 
         c o l o r :   w h i t e ; 
         f o n t - s i z e :   1 . 5 r e m ; 
         p a d d i n g :   1 . 2 r e m   3 r e m ; 
         b o r d e r - r a d i u s :   8 p x ; 
         t e x t - t r a n s f o r m :   u p p e r c a s e ; 
         f o n t - w e i g h t :   8 0 0 ; 
         b o x - s h a d o w :   0   1 0 p x   2 5 p x   r g b a ( 2 5 5 , 1 0 3 , 0 , 0 . 4 ) ; 
         d i s p l a y :   i n l i n e - b l o c k ; 
         w i d t h :   1 0 0 % ; 
         m a x - w i d t h :   6 0 0 p x ; 
         a n i m a t i o n :   p u l s e   2 s   i n f i n i t e ; 
         b o r d e r :   n o n e ; 
 } 
 
 . v s l - c t a - b t n : h o v e r   { 
         b a c k g r o u n d :   v a r ( - - h i g h l i g h t - d a r k ) ; 
         c o l o r :   w h i t e ; 
         t r a n s f o r m :   s c a l e ( 1 . 0 2 ) ; 
 } 
 
 @ k e y f r a m e s   p u l s e   { 
         0 %   {   b o x - s h a d o w :   0   0   0   0   r g b a ( 2 5 5 ,   1 0 3 ,   0 ,   0 . 7 ) ;   } 
         7 0 %   {   b o x - s h a d o w :   0   0   0   1 5 p x   r g b a ( 2 5 5 ,   1 0 3 ,   0 ,   0 ) ;   } 
         1 0 0 %   {   b o x - s h a d o w :   0   0   0   0   r g b a ( 2 5 5 ,   1 0 3 ,   0 ,   0 ) ;   } 
 } 
 
 / *   M a s o n r y   G r i d   * / 
 . m a s o n r y - g r i d   { 
         c o l u m n - c o u n t :   3 ; 
         c o l u m n - g a p :   1 . 5 r e m ; 
 } 
 
 . m a s o n r y - i t e m   { 
         b r e a k - i n s i d e :   a v o i d ; 
         m a r g i n - b o t t o m :   1 . 5 r e m ; 
         p a d d i n g :   2 r e m ; 
         d i s p l a y :   i n l i n e - b l o c k ; 
         w i d t h :   1 0 0 % ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
         . v s l - t i t l e   {   f o n t - s i z e :   2 r e m ;   } 
         . m a s o n r y - g r i d   {   c o l u m n - c o u n t :   1 ;   } 
         . v s l - l i s t   {   f l e x - d i r e c t i o n :   c o l u m n ;   g a p :   1 r e m ;   a l i g n - i t e m s :   c e n t e r ;   } 
 } 
  
 