/* Base Styles */
:root {
    --bg-dark: #172226; /* Azul petróleo conforme solicitado */
    --bg-darker: #0F1518;
    --primary-blue: #1ECBE1;
    --secondary-blue: #1976D2;
    --accent-yellow: #FFC200;
    --text-light: #FFFFFF;
    --text-muted: #A0A0A0;
    --card-bg: rgba(30, 35, 60, 0.3);
    --gradient-blue: linear-gradient(135deg, #1ECBE1 0%, #1976D2 100%);
    --gradient-accent: linear-gradient(135deg, #FFC200 0%, #FFA500 100%);
    --gradient-card: linear-gradient(180deg, rgba(30, 35, 60, 0.4) 0%, rgba(23, 34, 38, 0.7) 100%);
    --gradient-glow: radial-gradient(circle, rgba(30, 203, 225, 0.15) 0%, rgba(30, 203, 225, 0) 70%);
    --shadow-soft: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(30, 203, 225, 0.2);
    --border-radius: 16px;
    --border-glow: 1px solid rgba(30, 203, 225, 0.2);
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', 'Inter', 'Segoe UI', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(30, 203, 225, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(255, 194, 0, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-light);
    transition: var(--transition-fast);
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: -0.03em;
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: -0.02em;
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    font-family: 'Inter', sans-serif;
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient-blue);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.02em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--transition-fast);
}

.btn:hover::before {
    transform: translateX(0);
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(30, 203, 225, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 203, 225, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-left: 15px;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-fast);
    background: rgba(23, 34, 38, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 40px;
}

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

.nav-links a {
    margin-left: 30px;
    font-weight: 500;
    position: relative;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.nav-links a:not(.btn-nav):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-blue);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn-nav):hover:after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-blue);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: var(--transition-fast);
}

.btn-nav:hover::before {
    transform: translateX(0);
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 203, 225, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    z-index: 2;
}

.hero-buttons {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 2;
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition-medium);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong), var(--shadow-glow);
    border: var(--border-glow);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 203, 225, 0.1) 0%, rgba(25, 118, 210, 0.1) 100%);
    z-index: 1;
    opacity: 0.5;
    transition: var(--transition-medium);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
}

.hero-image:hover::before {
    opacity: 0.7;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg-element-1 {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 203, 225, 0.15) 0%, rgba(30, 203, 225, 0) 70%);
    filter: blur(50px);
    animation: float 15s infinite alternate ease-in-out;
}

.bg-element-2 {
    position: absolute;
    bottom: -300px;
    left: -200px;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 194, 0, 0.1) 0%, rgba(255, 194, 0, 0) 70%);
    filter: blur(60px);
    animation: float 20s infinite alternate-reverse ease-in-out;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

/* Benefícios Section */
.beneficios {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-darker);
    overflow: hidden;
}

.beneficios::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(30, 203, 225, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 194, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.card {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-soft);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 203, 225, 0.05) 0%, rgba(25, 118, 210, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: -1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong), var(--shadow-glow);
    border-color: rgba(30, 203, 225, 0.2);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    position: relative;
    box-shadow: 0 5px 15px rgba(30, 203, 225, 0.3);
}

.card-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(30, 203, 225, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.card p {
    color: var(--text-muted);
    margin-bottom: 0;
    flex-grow: 1;
}

/* Dashboard Section */
.dashboard {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 70% 20%, rgba(30, 203, 225, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(255, 194, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.dashboard-container {
    position: relative;
    z-index: 1;
    margin-top: 50px;
}

.dashboard-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong), var(--shadow-glow);
    border: var(--border-glow);
    position: relative;
    transition: var(--transition-medium);
}

.dashboard-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(23, 34, 38, 0.2), 
        rgba(23, 34, 38, 0.4)
    );
    z-index: 1;
    pointer-events: none;
}

.dashboard-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.dashboard-image:hover img {
    transform: scale(1.02);
}

.dashboard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(15, 21, 24, 0.9), transparent);
    z-index: 2;
}

.dashboard-text h3 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.dashboard-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Features Section */
.features {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-darker);
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(30, 203, 225, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 194, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.features-container {
    padding: 100px 0;
    position: relative;
    z-index: 1;
    height: 100vh;
}

.features-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}

.features-content {
    padding-right: 40px;
}

.features-content .section-title {
    text-align: left;
}

.features-content .section-title::after {
    left: 0;
    transform: none;
}

.features-content .section-subtitle {
    text-align: left;
    margin-left: 0;
}

.features-carousel {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.feature-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
    transform: translateY(30px);
    transform-origin: bottom center;
    backface-visibility: hidden;
}

.feature-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotateX(0);
    z-index: 2;
}

.feature-card.previous {
    transform: translateY(-100%) rotateX(90deg);
    opacity: 0;
    z-index: 1;
}

.feature-card.next {
    transform: translateY(100%) rotateX(-90deg);
    opacity: 0;
    z-index: 1;
}

.feature-card-inner {
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong), var(--shadow-glow);
    border: var(--border-glow);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(30, 203, 225, 0.3);
}

.feature-image {
    flex-grow: 1;
    position: relative;
    overflow: hidden;
}

.feature-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(23, 34, 38, 0.2), 
        rgba(23, 34, 38, 0.4)
    );
    z-index: 1;
    pointer-events: none;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 20px;
    background: linear-gradient(to top, rgba(15, 21, 24, 0.9), rgba(15, 21, 24, 0.7));
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.feature-content h3 {
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 1.5rem;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Spacer for scroll effect */
.features-spacer {
    height: 300vh; /* Adjust based on number of feature cards */
}

/* Depoimentos Section */
.depoimentos {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-top: 100px; /* Extra margin to ensure proper spacing after features section */
}

.depoimentos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(30, 203, 225, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(255, 194, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.testimonial-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.testimonial-content {
    position: relative;
    padding: 40px;
    background: var(--gradient-card);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.testimonial-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 203, 225, 0.05) 0%, rgba(25, 118, 210, 0.05) 100%);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: -1;
    border-radius: var(--border-radius);
}

.testimonial-content:hover::before {
    opacity: 1;
}

.testimonial-content:hover {
    box-shadow: var(--shadow-strong), var(--shadow-glow);
    border-color: rgba(30, 203, 225, 0.2);
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    opacity: 0.7;
    position: relative;
}

.quote-icon::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--gradient-blue);
    bottom: -10px;
    left: 0;
    border-radius: 2px;
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    color: var(--text-muted);
    font-style: italic;
}

.testimonial-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong), var(--shadow-glow);
    transform: perspective(1000px) rotateY(5deg);
    transition: var(--transition-medium);
    border: var(--border-glow);
    position: relative;
}

.testimonial-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 203, 225, 0.1) 0%, rgba(25, 118, 210, 0.1) 100%);
    z-index: 1;
    opacity: 0.5;
    transition: var(--transition-medium);
}

.testimonial-image:hover {
    transform: perspective(1000px) rotateY(0) translateY(-10px);
}

.testimonial-image:hover::before {
    opacity: 0.7;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    position: relative;
    background-color: var(--bg-darker);
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(30, 203, 225, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 194, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.cta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.cta-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong), var(--shadow-glow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition-medium);
    border: var(--border-glow);
    position: relative;
}

.cta-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 203, 225, 0.1) 0%, rgba(25, 118, 210, 0.1) 100%);
    z-index: 1;
    opacity: 0.5;
    transition: var(--transition-medium);
}

.cta-image:hover {
    transform: perspective(1000px) rotateY(0) translateY(-10px);
}

.cta-image:hover::before {
    opacity: 0.7;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-stores {
    display: flex;
    margin-top: 30px;
    gap: 20px;
}

.app-store {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.app-store::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 203, 225, 0.1) 0%, rgba(25, 118, 210, 0.1) 100%);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
}

.app-store:hover::before {
    opacity: 1;
}

.app-store:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(30, 203, 225, 0.2);
    box-shadow: var(--shadow-glow);
}

.app-store i {
    font-size: 1.5rem;
    margin-right: 10px;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 10%, rgba(30, 203, 225, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 194, 0, 0.03) 0%, transparent 30%);
    z-index: 0;
}

.footer-logo {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
    padding-left: 15px;
}

.footer-column a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-blue);
    opacity: 0.5;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--text-light);
    transform: translateX(5px);
}

.footer-column a:hover::before {
    opacity: 1;
    background: var(--gradient-blue);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    padding-left: 0;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-blue);
    opacity: 0;
    transition: var(--transition-fast);
    border-radius: 50%;
    transform: none;
}

.social-links a:hover::before {
    opacity: 1;
}

.social-links a i {
    position: relative;
    z-index: 1;
}

.social-links a:hover {
    transform: translateY(-3px);
    border-color: rgba(30, 203, 225, 0.3);
    box-shadow: var(--shadow-glow);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* Side Navigation */
.side-navigation {
    position: fixed;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.side-nav-item {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.5rem;
    transition: var(--transition-medium);
    border: var(--border-glow);
    box-shadow: var(--shadow-soft);
    position: relative;
    cursor: pointer;
}

.side-nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--gradient-blue);
    opacity: 0;
    transition: var(--transition-medium);
    z-index: -1;
}

.side-nav-item:hover::before,
.side-nav-item.active::before {
    opacity: 1;
}

.side-nav-item i {
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.side-nav-item:hover,
.side-nav-item.active {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.side-nav-tooltip {
    position: absolute;
    right: 75px;
    background: var(--gradient-card);
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    border: var(--border-glow);
    box-shadow: var(--shadow-soft);
}

.side-nav-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -5px;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--bg-darker);
    border-right: var(--border-glow);
    border-top: var(--border-glow);
}

.side-nav-item:hover .side-nav-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* Animation Classes */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-text.delay-1 {
    transition-delay: 0.2s;
}

.reveal-text.delay-2 {
    transition-delay: 0.4s;
}

.reveal-image {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-image.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reveal-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-card.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-card.delay-1 {
    transition-delay: 0.2s;
}

.reveal-card.delay-2 {
    transition-delay: 0.4s;
}

/* Scroll-based animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-animate.active {
    opacity: 1;
    transform: translateY(0);
}

.scroll-fade-in {
    opacity: 0;
    transition: opacity 1s ease;
}

.scroll-fade-in.active {
    opacity: 1;
}

.scroll-scale {
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.scroll-scale.active {
    transform: scale(1);
    opacity: 1;
}

/* Sticky Features Section */
.features-container.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* Card Flip Animation */
@keyframes cardFlipIn {
    0% {
        transform: translateY(100%) rotateX(-90deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotateX(0);
        opacity: 1;
    }
}

@keyframes cardFlipOut {
    0% {
        transform: translateY(0) rotateX(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-100%) rotateX(90deg);
        opacity: 0;
    }
}

.feature-card.active {
    animation: cardFlipIn 0.6s ease forwards;
}

.feature-card.previous {
    animation: cardFlipOut 0.6s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container,
    .testimonial-container,
    .cta-container,
    .features-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content,
    .cta-content {
        order: 1;
    }
    
    .hero-image,
    .cta-image {
        order: 0;
        margin-bottom: 40px;
    }
    
    .hero-buttons,
    .cta-content {
        justify-content: center;
        align-items: center;
    }
    
    .testimonial-image {
        margin-bottom: 30px;
    }
    
    .app-stores {
        justify-content: center;
    }
    
    .quote-icon::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonial-content {
        text-align: center;
    }
    
    .card h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .card {
        text-align: center;
    }
    
    .card-icon {
        margin: 0 auto 20px;
    }
    
    .features-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .features-content .section-title,
    .features-content .section-subtitle {
        text-align: center;
    }
    
    .features-content .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .features-carousel {
        height: 400px;
    }
    
    .features-spacer {
        height: 200vh;
    }
    
    .side-navigation {
        display: none;
    }
}

@media (max-width: 768px) {
    
    .dashboard-image {
    height: 330px !important;
}

.dashboard-image img {
    height: 300px;
}

    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-darker);
        flex-direction: column;
        padding: 20px 0;
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: var(--transition-medium);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
    }
    
    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .nav-links a {
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .app-stores {
        flex-direction: column;
    }
    
    .feature-content h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .feature-content {
        text-align: center;
    }
    
    .features-carousel {
        height: 350px;
    }
}
