/* High-Voltage Minimalism - Light Mode Theme */
:root {
    /* Colors */
    --bg-white: #FFFFFF;
    --bg-mist: #F3F4F6;
    --bg-light-gray: #F9FAFB;
    --accent-indigo: #4F46E5;
    --accent-cyan: #06B6D4;
    --text-primary: #111827;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    --border-light: #E5E7EB;
    --border-medium: #D1D5DB;

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* Typography */
    --font-family: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-black: 900;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-spring: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Background Grid Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(229, 231, 235, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(229, 231, 235, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

/* FOMO Notification Bar */
.notification-bar {
    background: var(--accent-indigo);
    color: white;
    padding: var(--spacing-sm) 0;
    position: relative;
    overflow: hidden;
}

.notification-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.warning-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.notification-text {
    flex: 1;
    font-weight: var(--font-weight-medium);
}

.spots-count {
    font-weight: var(--font-weight-bold);
    color: #FBBF24;
}

.capacity-meter {
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

.capacity-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #F59E0B, #EF4444);
    width: 75%;
    background-size: 200% 100%;
    border-radius: 4px;
    transition: width 0.5s ease-in-out;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);

    animation: capacityPulse 3s linear infinite;
}

.capacity-meter::after {

    content: "75% full";
    position: absolute;
    top: -22px;
    right: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@keyframes capacityFlow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes capacityPulse {

    0%,
    100% {
        width: 75%;
    }

    50% {
        width: 85%;
    }
}

/* Glass Navigation */

.navbar {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
}

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform var(--transition-medium);
}

.nav-links {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    height: 100%;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: color var(--transition-fast), background var(--transition-fast);
    box-sizing: border-box;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-indigo);
    border-color: transparent;
    background: transparent;
}



.login-btn {
    background: transparent;
    border: 1px solid var(--border-medium);
    padding: var(--spacing-sm) var(--spacing-md);
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.login-btn:hover {
    background: var(--accent-indigo);
    color: white;
    border-color: var(--accent-indigo);
}

/* Hero Section */
.hero {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-mist) 100%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-black);
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.kinetic-text {
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: flex-start; /* Align to the left */
    margin-top: var(--spacing-xl);
}

.cta-primary {
    padding: 20px 40px; /* Further reduced padding */
    background: linear-gradient(135deg,#ffd700,#ffa500);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-black);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
}

.cta-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgb(228, 162, 20), 0 0 20px rgba(6, 182, 212, 0.5);
}

.cta-secondary {
    padding: var(--spacing-md) var(--spacing-xl);
    background: transparent;
    color: var(--accent-indigo);
    border: 2px solid var(--accent-indigo);
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.cta-secondary:hover {
    background: var(--accent-indigo);
    color: white;
}


/* 3D Dashboard */
.dashboard-3d {
    perspective: 1000px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotateX(5deg) rotateY(-5deg);
    }

    50% {
        transform: translateY(-20px) rotateX(5deg) rotateY(-5deg);
    }
}

.dashboard-base {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--glass-shadow);
    transform-style: preserve-3d;
}

.dashboard-screen {
    background: var(--bg-light-gray);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-light);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.dashboard-title {
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
}

.status-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #10B981;
    position: relative;
}

.status-indicator.active::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    border: 2px solid #10B981;
    animation: ping 2s infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.stat-box {
    text-align: center;
    padding: var(--spacing-md);
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--accent-indigo);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-xs);
}

.notification-bubble {
    position: absolute;
    background: var(--accent-cyan);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    opacity: 0;
    transform: translateY(10px);
    animation: bubblePop 3s ease-in-out infinite;
}

#notification-1 {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

#notification-2 {
    top: 60%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes bubblePop {

    0%,
    100% {
        opacity: 0;
        transform: translateY(10px);
    }

    20%,
    80% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hiring Partners Marquee */
.hiring-partners {
    background: var(--bg-white);
    padding: var(--spacing-xl) 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}

.marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 5px 0;
}

.marquee-content {
    display: flex;
    justify-content: center;
    /* centers logos horizontally */
    align-items: center;
    /* aligns them vertically */
    flex-wrap: nowrap;
    /* keeps them in one line */
    gap: 10px;
    /* space between logos */

    animation: marquee 30s linear infinite;
}

.marquee-content img {
    max-height: 40px;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.partner-logo img {

    width: 120px;
    /* smaller width */
    height: auto;
    /* keeps proportions */
    max-height: 100px;
    /* limits tall logos */
    margin: 0 25px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.partner-logo img:hover {
    background: var(--bg-light-gray);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.1);
}



.partner-logo:hover .company-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}







/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .marquee-content {
        animation: none;
    }


    .partner-logo:hover {
        transform: none;
        background: transparent;
    }
}

/* Data Bento Grid */
.data-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-mist);
}

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-lg);
    height: 400px;
}

.bento-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
}

.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.15);
}

.card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.card-stats {
    display: flex;
    align-items: baseline;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.card-stats .stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    color: var(--accent-indigo);
}

.card-stats .stat-suffix {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--accent-cyan);
}

.card-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.card-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Pipeline Section */
.pipeline-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-white);
}

.pipeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
}

.pipeline-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.pipeline-path {
    stroke: var(--accent-cyan);
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    stroke-linecap: round;
    animation: drawline 2s ease-in-out forwards, pulseLine 2s ease-in-out infinite 3s;
    filter: drop-shadow(0 4px 20px rgba(6, 182, 212, 0.6));
}


@keyframes drawline {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes pulseLine {

    0%,
    100% {
        stroke-opacity: 1;
    }

    50% {
        stroke-opacity: 0.5;
    }


}

.pipeline-steps {
    position: relative;
    z-index: 2;
    height: 100%;
}

.pipeline-step {
    position: absolute;
    display: flex;
    align-items: center;
    gap: va r(--spacing-lg);
    opacity: 0;
    transform: translateX(-30px);
}

.pipeline-step[data-step="1"] {
    top: 60px;
    left: 60px;
}

.pipeline-step[data-step="2"] {
    top: 130px;
    left: 270px;
}

.pipeline-step[data-step="3"] {
    top: 230px;
    left: 480px;
}

.pipeline-step[data-step="4"] {
    top: 330px;
    left: 700px;
}

@keyframes fadeInSteps {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }


}
.pipeline-step {
    animation: fadeInSteps 0.8s ease forwards;
}

.pipeline-step[data-step="1"] { animation-delay: 1s;}
.pipeline-step[data-step="2"] { animation-delay: 1.5s;}
.pipeline-step[data-step="3"] { animation-delay: 2s;}
.pipeline-step[data-step="4"] { animation-delay: 2.5s;}
.step-node {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(6, 189, 212, 0.2);
}

.step-icon {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    max-width: 200px;
}


/* Testimonials Section */
.testimonials-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-mist) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(79, 70, 229, 0.03) 1px, transparent 1px), 
                    linear-gradient(90deg, rgba(79, 70, 229, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.section-subtitle {
  text-align: center;
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Masonry Grid Layout */
.testimonials-masonry {
  column-count: 6;
  column-gap: 0.7rem;
  column-width: 170px;
  margin: 0 auto;
  max-width: 1400px;
}

/* Screenshot Cards */
.screenshot-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  break-inside: avoid;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  transition: all var(--transition-medium);
  position: relative;
  width: 150px;
}

.screenshot-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(79, 70, 229, 0.15);
  border-color: var(--accent-indigo);
}

.screenshot-wrapper {
  width: 100%;
  overflow: hidden;
  background: var(--bg-light-gray);
  position: relative;
}

.whatsapp-screenshot {
  width: 100%;
  height: auto;
  display: block;
  transition: scale(0.9);
}

.screenshot-card:hover .whatsapp-screenshot {
  transform: scale(1.02);
}

.screenshot-footer {
  padding: 0.5rem 0.75rem;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
}

.student-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.student-name {
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  font-size: 0.6rem;
}

.student-role {
  font-size: 0.5rem;
  color: var(--text-secondary);
  padding: 0.2rem 0.4rem;
}

.success-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: linear-gradient(135deg, #10B981, #059669);
  color: white;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.success-badge i {
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .testimonials-masonry {
    column-count: 3;
    column-gap: 1.25rem;
  }
}

@media (max-width: 900px) {
  .testimonials-masonry {
    column-count: 2;
    column-gap: 1rem;
  }
  
  .screenshot-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .testimonials-masonry {
    column-count: 1;
  }
  
  .screenshot-card {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
```

## Folder Structure:

Create this folder structure in your project:
```
your-project/
├── index.html
├── styles-light.css
├── script-light.js
└── assets/
    └── screenshots/
        ├── whatsapp-1.png
        ├── whatsapp-2.png
        ├── whatsapp-3.png
        ├── whatsapp-4.png
        ├── whatsapp-5.png
        ├── whatsapp-6.png
        ├── whatsapp-7.png
        └── whatsapp-8.png

/* Pricing Section */
.pricing-section {
    padding: var(--spacing-2xl) 2rem;
    background: var(--bg-white);
    background: var(--bg-white);
    box-sizing: border-box;
}
.pricing-section h2 {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.toggle-label {
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
}

.toggle-switch {
    width: 60px;
    height: 30px;
    background: var(--border-medium);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background var(--transition-medium);
}

.toggle-switch.active {
    background: var(--accent-indigo);
}

.toggle-slider {
    width: 26px;
    height: 26px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform var(--transition-spring);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
}

.pricing-section .pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: nowrap;
    margin-top: 2rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.pricing-card {
    flex: 1 1 0;
    min-width: 0;
    max-width: 300px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

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

.pricing-card.featured {
    border-color: var(--accent-indigo);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.2);
    transform: scale(1.05);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-indigo);
    color: white;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-sm);
    font-weight: var(--font-weight-bold);
    font-size: 0.7rem;
}

.pricing-card .card-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: var(--font-weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
}

.currency {
    font-size: 1.3rem;
    color: var(--accent-indigo);
}

.amount {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
    line-height: 1;
}

.pricing-card:hover .amount {
    transform: scale(1.25);
}

.period {
    color: var(--text-secondary);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    font-size: 0.9rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.4;
}

.feature-item i {
    color: var(--accent-cyan);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.85rem;
}
.feature-item span {
    flex: 1;
}
.toggle-label {
    font-weight: var(--font-weight-medium);
    color: var(--text-secondary);
    transition: color 0.3s ease, font-weight 0.3s ease;  /* ← ADDED */
    cursor: pointer;  /* ← ADDED */
}



/* Responsive Design for Pricing */
@media (max-width: 1200px) {
    .pricing-section .pricing-grid {
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .pricing-section .pricing-grid {
        flex-wrap: wrap;
        max-width: 800px;
    }
    
    .pricing-card {
        flex: 1 1 calc(50% - 1rem);
        max-width: none;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .pricing-section .pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .pricing-card {
        flex: 1 1 100%;
        max-width: 400px;
        width: 100%;
    }
}
/* FAQ Section */
.faq-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-mist);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-light-gray);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-primary);
}

.faq-question i {
    color: var(--accent-indigo);
    transition: transform var(--transition-spring);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-spring);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: var(--font-weight-black);
    background: linear-gradient(135deg, var(--accent-indigo), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.link-group h4 {
    color: white;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.link-group a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: var(--spacing-xs);
    transition: color var(--transition-fast);
}

.link-group a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-medium);
    color: var(--text-muted);
}

/* Floating Elements */
.floating-chat {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--accent-indigo);
    color: white;
    padding: var(--spacing-md);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.3);
    transition: all var(--transition-medium);
    z-index: 1000;
}

.floating-chat:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(79, 70, 229, 0.5);
}

.floating-chat i {
    font-size: 1.5rem;
}

.floating-chat span {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    white-space: nowrap;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.floating-chat:hover span {
    opacity: 1;
}

.toast-notification {
    position: fixed;
    bottom: var(--spacing-lg);
    left: var(--spacing-lg);
    background: var(--text-primary);
    color: white;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition-spring);
    z-index: 1000;
}

.toast-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.toast-content i {
    color: var(--accent-cyan);
}

/* Responsive Design */
/* Large screens - ensure proper alignment */
@media (min-width: 1200px) {
    .pricing-card {
        flex: 0 1 280px;
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        justify-content: center;
        gap: 1.5rem;
    }
    .pricing-card {
        max-width: 45%;
        flex: 1 1 280px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
        grid-row: span 1;
    }

    .pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .pricing-grid {
        gap: 1rem;
        padding: 0 var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}

/* Animation Classes */
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-flip {
    animation: flipIn 0.6s ease-out;
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: rotateY(90deg);
    }

    to {
        opacity: 1;
        transform: rotateY(0);
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-indigo);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}
.journey-map-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* Align items to the top */
    width: 100%;
    height: auto;
    padding: var(--spacing-xl) 0;
    position: relative;
    gap: var(--spacing-lg); /* Add gap between steps */
}

.journey-map-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px; /* Limit width of each step */
}

.journey-map-node {
    position: relative;
    width: 60px; /* Smaller node size */
    height: 60px; /* Smaller node size */
    border-radius: 50%;
    background-color: var(--accent-cyan); /* Solid color */
    color: white;
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem; /* Size of the number */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px; /* Space between node and text below */
    box-shadow: none; /* Remove glowing effect */
    transition: transform 0.2s ease-in-out;
}

.journey-map-node:hover {
    transform: translateY(-5px); /* Subtle lift on hover */
}

.node-content {
    /* Styles for the text below the node */
}

.node-content h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.node-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-secondary);
}

.node-number {
    /* No specific styling needed here as font-size is on .journey-map-node */
}

.node-icon {
    display: none; /* Hide icons as we are using numbers */
}



/* Conversion Section */
.conversion-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-mist);
}

.conversion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.conversion-left {
    padding-right: var(--spacing-xl);
}

.conversion-headline {
    font-size: 2.5rem;
    font-weight: var(--font-weight-black);
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
}

.conversion-subtext {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.bullet-points {
    list-style: none;
    padding: 0;
    margin-bottom: var(--spacing-xl);
}

.bullet-points li {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    font-size: 1rem;
    color: var(--text-primary);
}

.bullet-points i {
    color: #007BFF;
}

.cta-button {
    padding: 20px 40px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: rgb(0, 0, 0);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 20px rgba(0, 71, 171, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 71, 171, 0.5);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.avatars {
    display: flex;
}

.avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -10px;
}

.avatars img:first-child {
    margin-left: 0;
}

.social-proof p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.conversion-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.stat-card {
    background: #000000;
    color: white;
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
}

.stat-card h3 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-sm);
}

.stat-card p {

    font-size: 2rem;

    font-weight: var(--font-weight-black);

}



/* Why Choose Us Section */

.why-choose-us {

    padding: var(--spacing-2xl) 0;

    background: var(--bg-white);

}



.why-choose-us .section-subtitle {

    text-align: center;

    font-size: 1.25rem;

    color: var(--text-secondary);

    margin-bottom: var(--spacing-xl);

    max-width: 600px;

    margin-left: auto;

    margin-right: auto;

}



.features-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: var(--spacing-lg);

}



.feature-card {

    background: var(--bg-white);

    padding: var(--spacing-lg);

    border-radius: var(--radius-lg);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

    transition: all 0.3s ease;

    border: 1px solid var(--border-light);

}



.feature-card:hover {

    transform: translateY(-5px);

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);

}



.feature-card h4 {

    font-size: 1.2rem;

    font-weight: var(--font-weight-bold);

    margin-bottom: var(--spacing-md);

    color: var(--text-primary);

}



.feature-card p {

    color: var(--text-secondary);

    font-size: 1rem;

    line-height: 1.6;

}







/* Modal Styles */

.modal {

    display: none;

    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 25px;
    border-radius: 16px;
    width: 85%;
    max-width: 450px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: fadeIn 0.3s;
    height: 62.5vh;
}

.close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-button:hover,
.close-button:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    
}

.modal p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.modal-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    line-height: normal;
}

.modal-bullets li {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

.modal-bullets i {
    color: #FF5A00;
}

.highlight-text {
    color: #FF5A00;
    font-weight: 600;
    text-align: center;
    
    margin-top: 25px;
    
}

.modal-cta-primary {
    width: 100%;
    padding: 8px 14px;
    background-color: #FF5A00;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modal-cta-primary span {
    font-size: 0.8rem;
    color: #eee;
}

.whatsapp-cta {
    position: relative;
    width: 100%;
}

.fastest-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #25D366;
    color: white;
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
}

.modal-cta-secondary {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    color: #25D366;
    border: 2px solid #25D366;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
}

@media (max-width: 600px) {
    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
}



/* Calendly Modal Styles */
.modal-content-calendly {
    display: flex;
    background-color: #fefefe;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 16px;
    width: 95%;
    max-width: 900px; /* Reduced max-width for compactness */
    height: 80vh; /* Set height for desktop */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s ease-out;
    overflow: hidden;
    z-index: 1002;
    align-items: stretch;
}

.calendly-left-panel {
    background: linear-gradient(265deg, #0052D4, #00BFFF); /* Specified blue gradient */
    color: rgb(0, 0, 0); /* Ensure text is white for contrast */
    padding: 20px; /* Further reduced padding */
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px 0 0 16px;
}

.calendly-left-panel h2 {
    font-size: 1.6rem; /* Adjusted font size */
    font-weight: 700;
    margin-bottom: 5px; /* Reduced margin */
    line-height: 1.2; /* Reduced line height */
}

.calendly-left-panel .subtext {
    font-size: 0.85rem; /* Adjusted font size */
    margin-bottom: 10px; /* Reduced margin */
    opacity: 1; /* Ensure full opacity */
    font-weight: 500;
}

.calendly-left-panel p {
    font-size: 0.9rem; /* Adjusted font size */
    margin-bottom: 10px; /* Reduced margin */
    opacity: 1; /* Ensure full opacity */
    line-height: 1.4; /* Reduced line height */
    color: #ffffff;
}

.calendly-left-panel h3 {
    font-size: 1.4rem; /* Adjusted font size */
    font-weight: 600;
    margin-bottom: 8px; /* Reduced margin */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgb(0, 0, 0); /* Ensure text is white */
}

.calendly-left-panel ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px; /* Reduced margin */
}

.calendly-left-panel li {
    display: flex;
    align-items: flex-start;
    gap: 6px; /* Reduced gap */
    margin-bottom: 6px; /* Reduced margin */
    font-size: 0.9rem; /* Adjusted font size */
    line-height: 1.3; /* Reduced line height */
    font-weight: 400;
    color: #eee;
}

.calendly-left-panel li i {
    color: rgb(0, 0, 0); /* Ensure checkmark is white */
    margin-top: 2px;
    font-size: 0.8rem; /* Adjusted icon size */
}

.stats-row {
    display: flex;
    justify-content: space-between;
    margin-top: 15px; /* Reduced margin */
    padding-top: 10px; /* Reduced padding */
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    flex-wrap: wrap;
}

.stats-row div {
    text-align: center;
    flex: 1;
    min-width: 50px; /* Adjusted min-width */
    margin: 3px 0;
}

.stats-row p {
    font-size: 1.6rem; /* Adjusted font size */
    font-weight: 700;
    margin-bottom: 2px; /* Reduced margin */
    opacity: 1;
    color: rgb(0, 0, 0); /* Ensure text is white */
}

.stats-row span {
    font-size: 0.85rem; /* Adjusted font size */
    opacity: 0.8;
    color: white; /* Ensure text is white */
}

.calendly-right-panel {
    width: 60%;
    height: 100%; /* Take full height of parent */
    overflow: hidden; /* Ensure iframe stays within bounds */
    padding: 15px; /* Slightly reduced internal padding */
}

.calendly-right-panel iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-button-calendly {
    color: var(--text-primary); /* Changed to black */
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px; /* Adjusted size */
    font-weight: bold;
    z-index: 10;
    transition: color 0.2s ease;
}

.close-button-calendly:hover,
.close-button-calendly:focus {
    color: #000; /* Pure black on hover */
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .modal-content-calendly {
        flex-direction: column;
        margin: 5% auto;
        max-width: 95%;
        transform: translate(-50%, -50%);
        height: 80vh; /* Set height for mobile */
    }

    .calendly-left-panel {
        width: 100%;
        border-radius: 16px 16px 0 0;
        padding: 15px; /* Further reduced padding for mobile */
    }

    .calendly-right-panel {
        width: 100%;
        height: 100%; /* Take full height of parent */
        padding: 10px; /* Further reduced internal padding for mobile */
    }

    .stats-row {
        justify-content: center;
        gap: 8px; /* Reduced gap for mobile */
    }

    .stats-row div {
        min-width: unset;
        flex: unset;
    }
}

