:root {
    /* Colors */
    --c-blue: #255C9D;
    --c-blue-dark: #1A406E;
    --c-blue-light: #4A8BD9;
    --c-orange: #FF7023;
    --c-orange-hover: #E5601A;
    --c-orange-light: rgba(255, 112, 35, 0.1);
    
    --c-bg: #FFFFFF;
    --c-bg-light: #F8FAFC;
    --c-bg-soft-blue: #F0F4F8;
    --c-bg-dark: #0F172A;
    
    --c-text-main: #0F172A;
    --c-text-muted: #475569;
    --c-text-light: #94A3B8;
    
    --c-green: #10B981;
    --c-green-light: rgba(16, 185, 129, 0.1);
    --c-red: #EF4444;
    --c-red-light: rgba(239, 68, 68, 0.1);
    
    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    /* Effects */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow-blue: 0 0 40px rgba(37, 92, 157, 0.3);
    --shadow-glow-orange: 0 0 30px rgba(255, 112, 35, 0.4);
    
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--c-text-main);
    background-color: var(--c-bg);
    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 {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Utility Classes */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.justify-center { justify-content: center; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.hidden { display: none !important; }
.z-10 { z-index: 10; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 0.75rem; }

.text-blue { color: var(--c-blue); }
.text-orange { color: var(--c-orange); }
.text-green { color: var(--c-green); }
.text-red { color: var(--c-red); }
.text-white { color: #fff; }
.text-gray { color: var(--c-text-light); }

.bg-light { background-color: var(--c-bg-light); }
.bg-soft-blue { background-color: var(--c-bg-soft-blue); }
.bg-orange-light { background-color: var(--c-orange-light); }
.bg-green-light { background-color: var(--c-green-light); }
.bg-red-light { background-color: var(--c-red-light); }

.text-gradient {
    background: linear-gradient(135deg, var(--c-blue), var(--c-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

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

.btn-giant {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow-orange);
}

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

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

.btn-secondary {
    background-color: white;
    color: var(--c-text-main);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.05);
}

.btn-secondary:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-white {
    background-color: white;
    color: var(--c-blue-dark);
}

.btn-white:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

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

.play-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background-color: var(--c-blue-light);
    color: white;
    border-radius: 50%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

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

.logo-img {
    height: 36px;
}

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

.nav-links a {
    font-weight: 500;
    color: var(--c-text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--c-blue);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--c-text-main);
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 200;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--c-text-main);
    cursor: pointer;
    margin-bottom: 2rem;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(37, 92, 157, 0.3);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 112, 35, 0.2);
    top: 20%;
    right: -50px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(37, 92, 157, 0.05);
    border: 1px solid rgba(37, 92, 157, 0.1);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-blue);
    margin-bottom: 1.5rem;
}

.badge-dark {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--c-text-main);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--c-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--c-text-muted);
}

.hero-visual {
    position: relative;
}

.mockup-wrapper {
    position: relative;
    z-index: 1;
}

.tech-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--c-blue);
    filter: blur(120px);
    opacity: 0.3;
    z-index: -1;
}

.mockup-img {
    width: 100%;
    filter: drop-shadow(var(--shadow-xl));
    border-radius: 40px; /* Approximating phone border */
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255,255,255,0.5);
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    top: 15%;
    left: -15%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: -3s;
}

.card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-full);
    background: var(--c-bg-soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-size: 0.8rem;
    color: var(--c-text-muted);
    font-weight: 500;
}

.card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--c-text-main);
}

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

.section-dark {
    background-color: var(--c-bg-dark);
    color: white;
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.125rem;
    color: var(--c-text-muted);
    max-width: 42rem;
    margin: 0 auto;
}

/* Problem Section */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    font-size: 3rem;
    color: var(--c-orange);
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.problem-card p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.solution-divider {
    position: relative;
    height: 1px;
    background: #E2E8F0;
    margin: 2rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-divider i {
    background: white;
    padding: 0 0.5rem;
    color: #CBD5E1;
}

.solution-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--c-text-main);
}

/* Technology (AI) Section */
.ai-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.tech-bg-elements {
    position: absolute;
    inset: 0;
}

.tech-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}

.orb-3 {
    width: 600px;
    height: 600px;
    background: rgba(37, 92, 157, 0.4);
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
}

.scanner-mockup-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(37, 92, 157, 0.3);
}

.ai-mockup-img {
    width: 100%;
    display: block;
}

.scanner-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00F0FF;
    box-shadow: 0 0 15px 5px rgba(0, 240, 255, 0.4);
    animation: scan 3s ease-in-out infinite;
    z-index: 10;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.feature-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--c-blue);
    color: white;
    font-size: 0.8rem;
}

/* Video Section */
.phone-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 835 / 1920;
    border: 14px solid #1a1a1a;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    background: #000;
    z-index: 2;
}

.phone-notch {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 35%;
    height: 24px;
    background: #1a1a1a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.phone-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--c-blue);
    filter: blur(100px);
    opacity: 0.25;
    z-index: -1;
}

/* Features section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(37, 92, 157, 0.1);
}

.feature-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background: var(--c-bg-soft-blue);
    color: var(--c-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrapper {
    background: var(--c-blue);
    color: white;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--c-text-muted);
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.b-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-blue);
    font-size: 1.25rem;
    box-shadow: var(--shadow-sm);
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
}

.benefits-visual {
    position: relative;
}

.saas-dashboard-mock {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0,0,0,0.05);
}

.dash-header {
    background: #F8FAFC;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dash-dots {
    display: flex;
    gap: 6px;
}

.dash-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
}

.dash-dots span:nth-child(1) { background: #FF5F56; }
.dash-dots span:nth-child(2) { background: #FFBD2E; }
.dash-dots span:nth-child(3) { background: #27C93F; }

.dash-title {
    font-weight: 600;
    color: var(--c-text-muted);
    font-size: 0.9rem;
}

.dash-body {
    padding: 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: var(--c-bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid #F1F5F9;
}

.stat-card-full {
    grid-column: 1 / -1;
}

.stat-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--c-text-muted);
    font-size: 0.85rem;
    font-weight: 500;
}

.stat-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.stat-chart-mock {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
}

.bar {
    width: 12px;
    background: #E2E8F0;
    border-radius: 2px 2px 0 0;
}

.h-40 { height: 40%; }
.h-50 { height: 50%; }
.h-60 { height: 60%; }
.h-80 { height: 80%; }
.h-100 { height: 100%; }

.orb-4 {
    width: 400px;
    height: 400px;
    background: rgba(255, 112, 35, 0.2);
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    z-index: 1;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: rgba(37, 92, 157, 0.05);
}

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

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--c-text-main);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.testimonial-author img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.1rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--c-text-muted);
}

/* Final CTA */
.cta-section {
    padding: 8rem 0;
    color: white;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-blue-dark), var(--c-blue));
    z-index: -2;
}

.tech-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at center, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    opacity: 0.5;
}

.cta-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 36rem;
    margin: 0 auto 3rem;
}

.cta-footer-text {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
.footer {
    background: white;
    padding: 6rem 0 2rem;
    border-top: 1px solid #E2E8F0;
}

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

.footer-logo {
    height: 32px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

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

.social-links a {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--c-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--c-blue);
    color: white;
}

.footer-links-group h4, .footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.footer-links-group a {
    color: var(--c-text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links-group a:hover {
    color: var(--c-blue);
}

.footer-contact .btn {
    background: var(--c-green);
    color: white;
    border: none;
}

.footer-contact .btn:hover {
    background: #0ea5e9; /* Light adjustment */
}

.footer-mail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-text-muted);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #E2E8F0;
    color: var(--c-text-light);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

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

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulse-anim {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.pulse-anim {
    animation: pulse-anim 2s infinite;
}

@keyframes scan {
    0% { top: 10%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 90%; opacity: 0; }
}

/* Reveal Animations Classes */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.reveal-left.visible, .reveal-right.visible, .reveal-up.visible {
    opacity: 1;
    transform: translate(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .hero-container { gap: 2rem; }
    .problems-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .hero { padding: 8rem 0 4rem; text-align: center; }
    .hero-container { grid-template-columns: 1fr; }
    .hero-actions { justify-content: center; }
    .trust-indicators { justify-content: center; }
    .badge { margin-left: auto; margin-right: auto; }
    
    .floating-card { display: none; } /* Hide on mobile to simplify */
    
    .ai-container { grid-template-columns: 1fr; text-align: center; }
    .ai-visual { order: 2; margin-top: 3rem; }
    .feature-list { text-align: left; }
    .badge-dark { margin-left: auto; margin-right: auto; }
    
    .problems-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .benefits-layout { grid-template-columns: 1fr; text-align: center; }
    .benefits-list { text-align: left; }
    .testimonials-grid { grid-template-columns: 1fr; }
    
    .cta-title { font-size: 2.5rem; }
    
    .footer-top { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}
