:root {
    /* Colors */
    --bg-dark: #050510;
    --bg-card: #0f0f1f;
    --bg-glass: rgba(255, 255, 255, 0.05);

    --primary: #4f46e5;
    /* Indigo */
    --primary-glow: #6366f1;
    --secondary: #06b6d4;
    /* Cyan */
    --accent: #ec4899;
    /* Pink */

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --border-glass: 1px solid rgba(255, 255, 255, 0.1);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: var(--border-glass);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--secondary);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text-main);
    text-shadow: 0 0 10px var(--primary);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.bar {
    width: 25px;
    height: 2px;
    background: var(--text-main);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/hero-bg.png') no-repeat center center/cover;
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5, 5, 16, 0.8), rgba(5, 5, 16, 0.4), var(--bg-dark));
    z-index: -1;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, var(--text-main), var(--secondary));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4);
}

.btn-primary:hover {
    background: var(--primary-glow);
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(79, 70, 229, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.cloud-orb {
    width: 400px;
    height: 400px;
    background: conic-gradient(from 180deg at 50% 50%, #06b6d4 0deg, #4f46e5 180deg, #ec4899 360deg);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: pulse 5s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* Services */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.grid {
    display: grid;
    gap: 2rem;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
    background: var(--bg-card);
    border: var(--border-glass);
    padding: 2.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* About */
.split-layout {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-content {
    flex: 1;
}

.about-visual {
    flex: 1;
    height: 400px;
    background: var(--bg-card);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: 'âœ“';
    color: var(--secondary);
    font-weight: bold;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: var(--border-glass);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Contact */
.contact-box {
    background: linear-gradient(145deg, var(--bg-card), rgba(15, 15, 31, 0.5));
    padding: 4rem;
    border-radius: 30px;
    border: var(--border-glass);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

input,
textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    color: var(--text-main);
    font-family: var(--font-body);
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.4);
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: var(--border-glass);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .split-layout {
        flex-direction: column;
    }

    .nav-list {
        display: none;
        /* Add toggle logic in JS */
    }

    .mobile-toggle {
        display: flex;
    }
}/ *   S p e c s   G r i d   * /  
 . s p e c s - c o n t a i n e r   {  
         m a r g i n - t o p :   5 r e m ;  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . s p e c s - t i t l e   {  
         f o n t - s i z e :   1 . 8 r e m ;  
         m a r g i n - b o t t o m :   2 r e m ;  
         c o l o r :   v a r ( - - t e x t - m a i n ) ;  
 }  
  
 . s p e c s - g r i d   {  
         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 ;  
         f l e x - w r a p :   w r a p ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
 }  
  
 . s p e c - i t e m   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 3 ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
         p a d d i n g :   1 . 5 r e m   2 . 5 r e m ;  
         b o r d e r - r a d i u s :   1 5 p x ;  
         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 ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         m i n - w i d t h :   1 4 0 p x ;  
 }  
  
 . s p e c - i t e m : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 7 9 ,   7 0 ,   2 2 9 ,   0 . 1 ) ;  
         b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ;  
         t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;  
         b o x - s h a d o w :   0   5 p x   1 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ;  
 }  
  
 . s p e c - v a l u e   {  
         f o n t - s i z e :   2 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         c o l o r :   v a r ( - - s e c o n d a r y ) ;  
         f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ;  
 }  
  
 . s p e c - l a b e l   {  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         t e x t - t r a n s f o r m :   u p p e r c a s e ;  
         l e t t e r - s p a c i n g :   1 p x ;  
         m a r g i n - t o p :   0 . 5 r e m ;  
 }  
  
 . s p e c s - n o t e   {  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         f o n t - s t y l e :   i t a l i c ;  
         o p a c i t y :   0 . 8 ;  
 }  
  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . s p e c s - g r i d   {  
                 g a p :   1 r e m ;  
         }  
  
         . s p e c - i t e m   {  
                 m i n - w i d t h :   1 2 0 p x ;  
                 p a d d i n g :   1 r e m   1 . 5 r e m ;  
         }  
  
         . s p e c - v a l u e   {  
                 f o n t - s i z e :   1 . 5 r e m ;  
         }  
 }  
 / *   P r o v i d e r   T a g s   * /  
 . p r o v i d e r - t a g s   {  
         d i s p l a y :   f l e x ;  
         g a p :   0 . 5 r e m ;  
         m a r g i n - t o p :   1 . 5 r e m ;  
         f l e x - w r a p :   w r a p ;  
 }  
  
 . t a g   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ;  
         p a d d i n g :   0 . 3 r e m   0 . 8 r e m ;  
         b o r d e r - r a d i u s :   2 0 p x ;  
         f o n t - s i z e :   0 . 8 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
         c o l o r :   v a r ( - - s e c o n d a r y ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
 }  
  
 . c a r d : h o v e r   . t a g   {  
         b a c k g r o u n d :   r g b a ( 6 ,   1 8 2 ,   2 1 2 ,   0 . 2 ) ;  
         b o r d e r - c o l o r :   v a r ( - - s e c o n d a r y ) ;  
 }  
 / *   P r o v i d e r   L i s t   ( L i n e   b y   L i n e )   * /  
 . p r o v i d e r - l i s t   {  
         m a r g i n - t o p :   1 . 5 r e m ;  
         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 ;  
         g a p :   0 . 8 r e m ;  
 }  
  
 . p r o v i d e r - i t e m   {  
         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 ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         f o n t - w e i g h t :   5 0 0 ;  
         t r a n s i t i o n :   c o l o r   0 . 3 s   e a s e ;  
 }  
  
 . p r o v i d e r - i t e m : : b e f o r e   {  
         c o n t e n t :   ' â    ' ;  
         c o l o r :   v a r ( - - s e c o n d a r y ) ;  
         m a r g i n - r i g h t :   1 0 p x ;  
         f o n t - w e i g h t :   b o l d ;  
 }  
  
 . c a r d : h o v e r   . p r o v i d e r - i t e m   {  
         c o l o r :   v a r ( - - t e x t - m a i n ) ;  
 }  
 / *   F r e e   T r i a l   B a d g e   * /  
 . b a d g e - f r e e - t r i a l   {  
         d i s p l a y :   i n l i n e - b l o c k ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   v a r ( - - s e c o n d a r y ) ,   v a r ( - - p r i m a r y ) ) ;  
         c o l o r :   w h i t e ;  
         p a d d i n g :   0 . 5 r e m   1 . 2 r e m ;  
         b o r d e r - r a d i u s :   5 0 p x ;  
         f o n t - s i z e :   0 . 9 r e m ;  
         f o n t - w e i g h t :   7 0 0 ;  
         m a r g i n - b o t t o m :   1 . 5 r e m ;  
         b o x - s h a d o w :   0   0   1 5 p x   r g b a ( 6 ,   1 8 2 ,   2 1 2 ,   0 . 4 ) ;  
         a n i m a t i o n :   f l o a t   3 s   e a s e - i n - o u t   i n f i n i t e ;  
 }  
  
 @ k e y f r a m e s   f l o a t   {  
         0 %   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 p x ) ;  
         }  
  
         5 0 %   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ;  
         }  
  
         1 0 0 %   {  
                 t r a n s f o r m :   t r a n s l a t e Y ( 0 p x ) ;  
         }  
 }  
 / *   P a r t n e r   L o g o s   * /  
 . p a r t n e r - l o g o s   {  
         d i s p l a y :   f l e x ;  
         g a p :   1 . 5 r e m ;  
         m a r g i n - t o p :   1 . 5 r e m ;  
         a l i g n - i t e m s :   c e n t e r ;  
 }  
  
 . p a r t n e r - l o g o   {  
         w i d t h :   4 0 p x ;  
         h e i g h t :   4 0 p x ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         o p a c i t y :   0 . 7 ;  
 }  
  
 . c a r d : h o v e r   . p a r t n e r - l o g o   {  
         c o l o r :   v a r ( - - t e x t - m a i n ) ;  
         o p a c i t y :   1 ;  
         t r a n s f o r m :   s c a l e ( 1 . 1 ) ;  
 }  
  
 / *   F o o t e r   D i s c l a i m e r   * /  
 . f o o t e r - d i s c l a i m e r   {  
         f o n t - s i z e :   0 . 7 5 r e m ;  
         c o l o r :   v a r ( - - t e x t - m u t e d ) ;  
         o p a c i t y :   0 . 6 ;  
         m a r g i n - t o p :   0 . 5 r e m ;  
         m a x - w i d t h :   6 0 0 p x ;  
         m a r g i n - l e f t :   a u t o ;  
         m a r g i n - r i g h t :   a u t o ;  
 }  
 / *   U p d a t e d   P a r t n e r   L o g o s   * /  
 . p a r t n e r - l o g o   {  
         w i d t h :   3 5 p x ;  
         / *   S l i g h t l y   s m a l l e r   a s   r e q u e s t e d   " s m a l l "   * /  
         h e i g h t :   3 5 p x ;  
         / *   R e m o v e d   o p a c i t y / c o l o r   o v e r r i d e   t o   l e t   i n l i n e   s t y l e s   w o r k   * /  
         t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e ;  
         f i l t e r :   d r o p - s h a d o w ( 0   2 p x   4 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ) ;  
         / *   M a k e   t h e m   p o p   * /  
         o p a c i t y :   0 . 9 ;  
 }  
  
 . c a r d : h o v e r   . p a r t n e r - l o g o   {  
         t r a n s f o r m :   s c a l e ( 1 . 2 ) ;  
         o p a c i t y :   1 ;  
 }  
 / *   P r o v i d e r   L i s t   w i t h   I c o n s   * /  
 . p r o v i d e r - l i s t - w i t h - i c o n s   {  
         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 ;  
         g a p :   1 r e m ;  
         m a r g i n - t o p :   1 . 5 r e m ;  
 }  
  
 . p r o v i d e r - i t e m - i c o n   {  
         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 :   1 0 p x ;  
         p a d d i n g :   0 . 5 r e m ;  
         b o r d e r - r a d i u s :   8 p x ;  
         t r a n s i t i o n :   b a c k g r o u n d   0 . 3 s   e a s e ;  
 }  
  
 . p r o v i d e r - i t e m - i c o n : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ;  
 }  
  
 . s m a l l - l o g o   {  
         w i d t h :   2 4 p x ;  
         h e i g h t :   2 4 p x ;  
         f l e x - s h r i n k :   0 ;  
 }  
  
 . p r o v i d e r - i t e m - i c o n   s p a n   {  
         f o n t - w e i g h t :   5 0 0 ;  
         c o l o r :   v a r ( - - t e x t - m a i n ) ;  
         f o n t - s i z e :   0 . 9 5 r e m ;  
 }  
 / *   A c c e s s   L a b s   N a v   B u t t o n   * /  
 . n a v - c t a   {  
         b a c k g r o u n d :   v a r ( - - p r i m a r y ) ;  
         c o l o r :   # 0 0 0   ! i m p o r t a n t ;  
         p a d d i n g :   0 . 5 r e m   1 r e m ;  
         b o r d e r - r a d i u s :   4 p x ;  
         f o n t - w e i g h t :   6 0 0 ;  
         m a r g i n - l e f t :   0 . 5 r e m ;  
         t r a n s i t i o n :   t r a n s f o r m   0 . 2 s   e a s e ,   b o x - s h a d o w   0 . 2 s   e a s e ;  
 }  
  
 . n a v - c t a : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ;  
         b o x - s h a d o w :   0   4 p x   1 2 p x   r g b a ( 6 ,   1 8 2 ,   2 1 2 ,   0 . 4 ) ;  
         c o l o r :   # 0 0 0   ! i m p o r t a n t ;  
 }  
  
 / *   M o b i l e   a d j u s t   * /  
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   {  
         . n a v - c t a   {  
                 m a r g i n - l e f t :   0 ;  
                 m a r g i n - t o p :   0 . 5 r e m ;  
                 t e x t - a l i g n :   c e n t e r ;  
                 b a c k g r o u n d :   r g b a ( 6 ,   1 8 2 ,   2 1 2 ,   0 . 2 ) ;  
                 c o l o r :   v a r ( - - p r i m a r y )   ! i m p o r t a n t ;  
         }  
 }  
 