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

/* ================================
   CSS VARIABLES
   ================================ */
:root {
    /* Colors - Brand */
    --color-bg: #0c1211;
    --color-bg-light: #2a2f3f;
    --color-bg-lighter: #343a4d;
    --color-accent: #05E57B;
    --color-accent-hover: #04c96b;
    --color-accent-glow: rgba(5, 229, 123, 0.4);

    /* Colors - Text */
    --color-text: #ffffff;
    --color-text-muted: #a0a5b5;
    --color-text-dim: #6b7085;
    --color-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3.5rem;
    --font-size-6xl: 4.5rem;

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

    /* Layout */
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
    --section-padding: 6rem;
    --header-height: 80px;

    /* Effects */
    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 0.75rem;
    --border-radius-xl: 1rem;
    --border-radius-2xl: 1.5rem;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px var(--color-accent-glow);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================
   RESET & BASE STYLES
   ================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

h1 {
    font-size: var(--font-size-5xl);
}

h2 {
    font-size: var(--font-size-4xl);
}

h3 {
    font-size: var(--font-size-2xl);
}

h4 {
    font-size: var(--font-size-xl);
}

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

.text-accent {
    color: var(--color-accent);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-accent), #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   LAYOUT UTILITIES
   ================================ */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: 0.875rem 1.5rem;
    font-size: var(--font-size-base);
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-accent);
    color: #0d1117;
}

.btn-primary:hover {
    background: var(--color-accent-hover);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(5, 229, 123, 0.05);
}

.btn-lg {
    padding: 1.125rem 2.5rem;
    font-size: var(--font-size-lg);
    border-radius: var(--border-radius-xl);
}

/* ================================
   HEADER
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(12, 18, 17, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text);
}

.logo span:last-child {
    background: linear-gradient(135deg, #fff 30%, #a5a5a5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    height: 26px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-2xl);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
}

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

.nav-cta {
    display: flex;
    align-items: center;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--spacing-sm);
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    padding: 6rem var(--spacing-xl) var(--spacing-xl);
    z-index: 999;
}

.mobile-nav.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
    text-align: center;
}

.mobile-nav-link {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text);
}

.mobile-nav-cta {
    display: flex;
    width: 100%;
    justify-content: center;
}

.mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
}

/* ================================
   HERO SECTION
   ================================ */
/* ================================
   HERO SECTION
   ================================ */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-top: calc(var(--header-height) + 20px);
    overflow: hidden;
    --hero-image-overlap: clamp(40px, 11.25vw, 140px);
}

/* Global Grid Background */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: -1;
}

/* Green ambient glow at top */
.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: var(--color-accent);
    filter: blur(180px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    /* Ensure buttons are clickable above the glow */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--color-text-muted);
}
.hero-subtitle span{
    color: var(--color-accent);
    font-weight: 600;
}
.hero-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--color-accent);
    color: #0d1117;
    text-decoration: none;
    padding: 14px 31px;
    font-size: 1.025rem;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 8px 30px rgba(5, 229, 123, 0.25);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--color-accent-hover);
    box-shadow: 0 15px 40px rgba(5, 229, 123, 0.35);
}

.cta-button svg {
    width: 24px;
    height: 24px;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    /* Match gallery width */
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    margin-bottom: calc(var(--hero-image-overlap) * -1);
    /* Overlap with next section */
}

/* Glow behind the product image - Aurix Style (Tight Border) */
/* Glow behind the product image - Aurix Style (Tight Border) */
.hero-glow {
    position: absolute;
    top: -11px;
    bottom: -6px;
    left: 9px;
    right: 9px;
    width: auto;
    height: auto;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.6) 0%,
            /* Blue (Left) */
            rgba(5, 229, 123, 0.6) 50%,
            /* Green (Top) */
            rgba(147, 51, 234, 0.6) 100%);
    /* Purple (Right) */
    filter: blur(15px);
    opacity: 0.6;
    z-index: -1;
    border-radius: 20px;
}

/* Remove extra spill layer */
.hero-glow::after {
    content: none;
}

.hero-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #05E57B, transparent);
    box-shadow: 0 0 15px #05E57B, 0 0 30px rgba(5, 229, 123, 0.4);
    z-index: 10;
    opacity: 0.8;
}

.showcase-gallery {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 40px 80px -20px rgba(0, 0, 0, 0.6);
    background: #1a1d26;
    aspect-ratio: 16/9;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    animation: fadeIn 0.8s ease;
}

.showcase-img.active {
    display: block;
}

/* Adjust secondary button */
.secondary-link {
    padding: 14px 31px;
    font-size: 1.025rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    color: #fff;
    font-weight: 600;

    transition: all 0.2s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.secondary-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* ================================
   FEATURES SECTION
   ================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(5, 229, 123, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(5, 229, 123, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ================================
   HOW IT WORKS
   ================================ */
.steps-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 4rem auto 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-bg);
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    box-shadow: 0 0 20px rgba(5, 229, 123, 0.2);
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(5, 229, 123, 0.3) 20%,
            rgba(5, 229, 123, 0.3) 80%,
            transparent 100%);
    z-index: 0;
}

/* ================================
   TESTIMONIALS
   ================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
}

.quote-mark {
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.2;
    line-height: 0;
    margin-bottom: 2rem;
    font-family: serif;
}

.testimonial-text {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.testimonial-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: black;
    font-weight: 700;
}

/* ================================
   PRICING SECTION
   ================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 4rem auto 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(5, 229, 123, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.popular {
    background: linear-gradient(145deg, rgba(5, 229, 123, 0.05), rgba(5, 229, 123, 0.01));
    border-color: rgba(5, 229, 123, 0.2);
    box-shadow: 0 0 30px rgba(5, 229, 123, 0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: #0d1117;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(5, 229, 123, 0.4);
}

.plan-name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.plan-price .currency {
    font-size: 1.5rem;
    margin-top: 8px;
    margin-right: 4px;
    color: var(--color-text-muted);
}

.plan-price .period {
    font-size: 1rem;
    align-self: flex-end;
    margin-bottom: 8px;
    margin-left: 4px;
    color: var(--color-text-dim);
    font-weight: 500;
}

.plan-subtitle {
    min-height: 2.8rem;
    margin: 0 auto 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.45;
    max-width: 260px;
}


.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 240px;
    margin-left: auto;
    margin-right: auto;
}

.plan-features.one-line {
    max-width: 260px;
}

.plan-features.one-line li {
    white-space: nowrap;
}

.plan-footer {
    margin-top: auto;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--color-text-dim);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: bold;
}

.highlight-feature {
    color: var(--color-text) !important;
    font-weight: 600;
}

.install-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-style: italic;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-lg);
    display: inline-block;
}

.pricing-note {
    max-width: 760px;
    margin: 2rem auto 0;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .plan-features.one-line {
        max-width: 100%;
    }

    .plan-features.one-line li {
        white-space: normal;
    }
}

/* ================================
   USE CASES + FAQ
   ================================ */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
}

.use-case-title {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.use-case-description {
    font-size: 0.96rem;
    line-height: 1.7;
}

.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem 1.25rem;
}

.faq-item summary {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    padding-right: 1.5rem;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-accent);
    font-size: 1.25rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ================================
   FINAL CTA
   ================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    background: rgba(5, 229, 123, 0.05);
    border: 1px solid rgba(5, 229, 123, 0.2);
    border-radius: 2rem;
    padding: 4rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}

.cta-headline {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    border-top: 1px solid var(--color-border);
    position: relative;
    padding: 4rem 0 2rem;
}

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

.footer-brand p {
    margin-top: 1rem;
    max-width: 300px;
}

/* Company Details */
.company-details {
    margin-top: 1.5rem;
}

.company-details p {
    font-size: 0.85rem;
    color: var(--color-text-dim);
    margin: 0.25rem 0;
    line-height: 1.4;
}

.company-details strong {
    color: var(--color-text-muted);
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--color-text-dim);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem 1.25rem;
}

.footer-legal a {
    color: var(--color-text-muted);
}

.footer-legal a:hover {
    color: var(--color-accent);
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    :root {
        --font-size-5xl: 3rem;
        --section-padding: 4rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header .container {
        padding: 0 1.5rem;
    }

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

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button,
    .secondary-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .steps-timeline {
        flex-direction: column;
        gap: 3rem;
        margin-top: 3rem;
    }

    .steps-timeline::before {
        width: 2px;
        height: 100%;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        background: linear-gradient(180deg, transparent, rgba(5, 229, 123, 0.3) 50%, transparent);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-legal {
        justify-content: flex-start;
    }

    .mockup-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .features-grid,
    .testimonials-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .mockup-grid {
        grid-template-columns: 1fr;
    }

    .browser-controls {
        display: none;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ================================
   LEGAL PAGES
   ================================ */
.legal-main {
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: var(--section-padding);
}

.legal-title-section {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-content .content-card {
    background: rgba(41, 46, 61, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.legal-content h2 {
    color: var(--color-accent);
    font-size: var(--font-size-xl);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(5, 229, 123, 0.2);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: var(--color-text);
    font-size: var(--font-size-lg);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

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

.highlight-box {
    background: rgba(5, 229, 123, 0.08);
    border: 1px solid rgba(5, 229, 123, 0.2);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    margin: 2rem 0;
}

.highlight-box p {
    color: var(--color-text);
    margin-bottom: 0;
}

.contact-box {
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.contact-email {
    display: inline-block;
    color: var(--color-accent);
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-top: 0.5rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
    gap: 2rem;
    align-items: start;
}

.contact-panel,
.contact-details {
    background: rgba(41, 46, 61, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
}

.contact-panel h2,
.contact-details h2 {
    color: var(--color-accent);
    font-size: var(--font-size-xl);
    margin-bottom: 1rem;
}

.contact-panel p,
.contact-details p {
    color: var(--color-text-muted);
}

.contact-details a {
    color: var(--color-accent);
}

.contact-form {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.contact-field {
    display: grid;
    gap: 0.5rem;
}

.contact-field label {
    color: var(--color-text);
    font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    color: var(--color-text);
    font: inherit;
    padding: 0.9rem 1rem;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(5, 229, 123, 0.12);
    outline: none;
}

.contact-field textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-honeypot {
    height: 0;
    left: -9999px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
}

.contact-status {
    min-height: 1.4rem;
    margin: 0;
}

.contact-status.is-success {
    color: var(--color-accent);
}

.contact-status.is-error {
    color: #ff8c8c;
}

.contact-submit {
    justify-self: start;
}

/* Permission Table */
.permission-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.permission-table th,
.permission-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

.permission-table th {
    background: rgba(5, 229, 123, 0.1);
    color: var(--color-accent);
    font-weight: 600;
}

.permission-table td code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .legal-content .content-card {
        padding: 1.5rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-panel,
    .contact-details {
        padding: 1.5rem;
    }

    .contact-submit {
        justify-self: stretch;
    }
}
