:root {
    --aurora-1: #4f46e5;
    --aurora-2: #7c3aed;
    --aurora-3: #2563eb;
    --aurora-4: #0891b2;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.6);
    --bg-primary: #030712;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
.logo-text,
.step-number {
    font-family: 'Outfit', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

/* Background Effects */
.aurora-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background: radial-gradient(circle at 10% 10%, rgba(79, 70, 229, 0.15), transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(124, 58, 237, 0.15), transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(8, 145, 178, 0.15), transparent 40%),
        radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.15), transparent 40%);
    filter: blur(80px);
    animation: aurora-shift 20s infinite alternate ease-in-out;
}

@keyframes aurora-shift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(2%, 2%);
    }

    100% {
        transform: scale(1) translate(0, 0);
    }
}

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

.glass-section {
    background: var(--glass-bg);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    background: rgba(3, 7, 18, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.2);
}

.logo-icon i {
    color: white;
    font-size: 1.25rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-link {
    display: none;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .login-link {
        display: block;
    }
}

.login-link:hover {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-white {
    background: white;
    color: var(--bg-primary);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: var(--aurora-1);
    color: white;
}

.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);
}

.btn-glass {
    background: var(--glass-bg);
    color: white;
    border: 1px solid var(--glass-border);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-container {
    max-width: 1024px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(79, 70, 229, 0.3);
    background: rgba(79, 70, 229, 0.1);
    color: var(--aurora-1);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--aurora-1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(79, 70, 229, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
    }
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--aurora-1), var(--aurora-2), var(--aurora-4));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 42rem;
    margin: 0 auto 3rem;
}

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

/* Dashboard Mockup */
.dashboard-preview {
    padding: 0 1.5rem 8rem;
}

.mockup-window {
    max-width: 1152px;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.1);
}

.mockup-header {
    height: 2rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
    background: rgba(3, 7, 18, 0.5);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red {
    background: rgba(244, 63, 94, 0.8);
}

.dot.yellow {
    background: rgba(245, 158, 11, 0.8);
}

.dot.green {
    background: rgba(16, 185, 129, 0.8);
}

.mockup-body {
    aspect-ratio: 16/9;
    background: var(--bg-primary);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://paimage.picode.in/trackify/case-1.png');
    background-size: cover;
    background-position: center;
}

.mockup-body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-primary);
    opacity: 0.1;
}

.bg-icon {
    font-size: 120px;
    color: rgba(79, 70, 229, 0.2);
    position: absolute;
    z-index: 1;
}

.mockup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.6);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mockup-badge {
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Sections General */
.section-padding {
    padding: 6rem 0;
}

.section-header {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.highlight {
    color: var(--aurora-1);
}

.highlight-2 {
    color: var(--aurora-2);
}

.highlight-3 {
    color: var(--aurora-4);
}

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

.feature-card {
    padding: 2rem;
    border-radius: 1.5rem;
    transition: transform 0.3s ease;
}

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

.icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 1.75rem;
    color: var(--aurora-1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Workflow */
.workflow-container {
    max-width: 1024px;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.workflow-card {
    padding: 2rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .workflow-card {
        flex-direction: row;
        align-items: center;
        padding: 2rem 3rem;
        gap: 2rem;
    }
}

.step-bg-number {
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 900;
    color: var(--glass-border);
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    flex-shrink: 0;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.3);
    color: var(--aurora-1);
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Integrations */
.integrations {
    padding: 5rem 0;
    background: rgba(79, 70, 229, 0.05);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.integrations-title {
    color: rgba(79, 70, 229, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 2rem;
}

.integrations-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.integrations-logos:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.integrations-logos i {
    font-size: 2.5rem;
}

.integration-stripe {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    letter-spacing: -0.05em;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    padding: 2rem;
    border-radius: 1.5rem;
}

.stars {
    color: #fbbf24;
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.quote {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aurora-1), var(--aurora-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info h4 {
    font-weight: 700;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.pricing-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px dashed var(--glass-border);
    padding-bottom: 1.5rem;
}

.pricing-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.badge-selected {
    background: #65a30d;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    color: var(--text-primary);
}

.pricing-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 0.25rem;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.pricing-body p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-body strong {
    color: var(--text-primary);
    font-weight: 700;
}

.pricing-footer {
    margin-top: auto;
    padding-top: 1.5rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

/* CTA Section */
.cta-card {
    padding: 3rem 1.5rem;
    border-radius: 3rem;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.1);
    background: linear-gradient(to bottom, var(--glass-bg), rgba(79, 70, 229, 0.1));
}

@media (min-width: 768px) {
    .cta-card {
        padding: 5rem;
    }
}

.cta-card h2 {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-card p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 36rem;
    margin: 0 auto 2.5rem;
}

/* Footer */
.footer {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--text-primary);
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--aurora-1);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.language {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}