:root {
    --primary: #9557e5;
    --primary-dark: #7c3aee;
    --primary-light: #B385FF;
    --secondary: #b797e0;
    --accent: #30D158;
    --dark: #000000;
    --dark-gray: #1c1c1e;
    --medium-gray: #2c2c2e;
    --light-gray: #48484a;
    --lighter-gray: #3a3a3c;
    --white: #ffffff;
    --off-white: #f5f5f7;
    --background: #0d0d0d;
    --card-bg: #1c1c1e;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.82);
    --text-tertiary: rgba(255, 255, 255, 0.65);
    --error: #FF453A;
    --warning: #FF9F0A;
    --success: #30D158;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --blur-bg: rgba(28, 28, 30, 0.7);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

h1 {
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--primary-light) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Buttons */
.primary-btn, .secondary-btn, .waitlist-btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition);
    font-size: 1rem;
}

.primary-btn {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(160, 102, 255, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.primary-btn:hover::before {
    left: 100%;
}

.primary-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(160, 102, 255, 0.4);
}

.secondary-btn {
    background-color: rgba(160, 102, 255, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(160, 102, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.secondary-btn:hover {
    background-color: rgba(160, 102, 255, 0.15);
    transform: translateY(-2px);
}

.waitlist-btn {
    background-color: rgba(160, 102, 255, 0.15);
    color: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 102, 255, 0.2);
}

.waitlist-btn:hover {
    background-color: rgba(160, 102, 255, 0.15);
}

/* Header & Navigation */
header {
    background: linear-gradient(180deg, var(--dark) 0%, var(--background) 100%);
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(160, 102, 255, 0.15) 0%, rgba(160, 102, 255, 0) 70%);
    z-index: 0;
    filter: blur(60px);
}

header::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(210, 180, 255, 0.1) 0%, rgba(210, 180, 255, 0) 70%);
    z-index: 0;
    filter: blur(50px);
}

nav {
    padding: 1.5rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo span {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.logo img {
    height: 36px;
    margin-right: 12px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-tertiary);
    font-weight: 500;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-cta {
    margin-left: 1rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0 4rem;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Features Section */
.features {
    padding: 8rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(160, 102, 255, 0.08) 0%, rgba(160, 102, 255, 0) 70%);
    z-index: 0;
    filter: blur(70px);
    transform: translateY(var(--scroll-offset, 0));
    transition: transform 0.1s ease-out;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(0);
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-md);
    border-color: rgba(160, 102, 255, 0.3);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(160, 102, 255, 0.1), rgba(210, 180, 255, 0.05));
    transition: opacity var(--transition);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    background: linear-gradient(135deg, rgba(160, 102, 255, 0.2), rgba(210, 180, 255, 0.1));
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(160, 102, 255, 0.3), rgba(210, 180, 255, 0.1));
    opacity: 0;
    transition: opacity var(--transition);
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-emoji {
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Demo Video Section */
.demo-video {
    padding: 8rem 0;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.demo-video::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(160, 102, 255, 0.1) 0%, rgba(160, 102, 255, 0) 70%);
    z-index: 0;
    filter: blur(80px);
}

.demo-video .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.video-content {
    text-align: center;
    max-width: 700px;
}

.video-container {
    width: 100%;
    max-width: 900px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

/* Custom video player styling */
.video-container {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover::after {
    opacity: 1;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(149, 87, 229, 0.85);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 30px rgba(149, 87, 229, 0.5);
}

.video-container:hover::before {
    background: rgba(149, 87, 229, 0.95);
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 40px rgba(149, 87, 229, 0.6);
}

.video-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid white;
    z-index: 3;
}

.video-container.playing::before,
.video-container.playing::after {
    opacity: 0;
}

.video-container video {
    width: 100%;
    display: block;
    background-color: var(--dark);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

.video-container:hover video {
    transform: scale(1.01);
}

/* Hide native controls but keep them functional */
.video-container video::-webkit-media-controls-enclosure {
    opacity: 0;
}

.video-container.playing video::-webkit-media-controls-enclosure {
    opacity: 1;
}

.video-container video::-webkit-media-controls-panel {
    background-color: rgba(28, 28, 30, 0.7);
}

.video-container video::-webkit-media-controls-play-button {
    background-color: var(--primary);
    border-radius: 50%;
}

/* Fix for Firefox */
.video-container video:focus {
    outline: none;
}



/* How It Works Section */
.how-it-works {
    padding: 8rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.how-it-works::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(210, 180, 255, 0.08) 0%, rgba(210, 180, 255, 0) 70%);
    z-index: 0;
    filter: blur(60px);
}

.steps {
    margin-top: 4rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    gap: 2rem;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(160, 102, 255, 0.3);
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.step-content {
    flex: 1;
}

.step-content img {
    margin-top: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
    transform: translateY(0);
    width: 360px;
    height: auto;
    object-fit: cover;
}

.step:hover .step-content img {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(160, 102, 255, 0.2);
}

/* Make first 3 images bigger */
.step:nth-child(1) .step-content img,
.step:nth-child(2) .step-content img,
.step:nth-child(3) .step-content img {
    width: 480px;
}

/* Pain Points Section */
.pain-points {
    padding: 8rem 0;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.pain-points::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(160, 102, 255, 0.05) 0%, rgba(160, 102, 255, 0) 70%);
    z-index: 0;
    filter: blur(50px);
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.pain-point {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    z-index: 1;
}

.pain-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(160, 102, 255, 0.05) 0%, transparent 100%);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition);
}

.pain-point:hover::before {
    opacity: 1;
}

.pain-point:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(160, 102, 255, 0.3);
}

.pain-point h3 {
    color: var(--primary-light);
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.pain-point h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width var(--transition);
}

.pain-point:hover h3::after {
    width: 100%;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -20%;
    width: 50%;
    height: 50%;
    background: radial-gradient(circle, rgba(210, 180, 255, 0.05) 0%, rgba(210, 180, 255, 0) 70%);
    z-index: 0;
    filter: blur(70px);
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    margin-top: 4rem;
    padding-bottom: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 350px;
    flex: 1;
    transition: all var(--transition);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: scale(0.98);
}

.testimonial:hover {
    transform: scale(1);
    box-shadow: var(--shadow-md);
    border-color: rgba(160, 102, 255, 0.2);
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary);
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.quote::before {
    content: '\201C';
    position: absolute;
    top: -1.5rem;
    left: 0;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: serif;
}

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

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

.author-info .name {
    font-weight: 600;
    font-size: 1rem;
}

.author-info .role {
    font-size: 0.9rem;
    color: var(--light-gray);
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background-color: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -20%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(160, 102, 255, 0.08) 0%, rgba(160, 102, 255, 0) 70%);
    z-index: 0;
    filter: blur(80px);
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.pricing-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-md);
    padding: 3.5rem 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    width: 350px;
    position: relative;
    transition: all var(--transition);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(160, 102, 255, 0.1) 0%, rgba(160, 102, 255, 0) 60%);
    opacity: 0;
    transition: opacity var(--transition);
    z-index: -1;
}

.pricing-card:hover::after {
    opacity: 1;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(160, 102, 255, 0.2);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: translateY(-15px) scale(1.08);
    box-shadow: 0 15px 40px rgba(160, 102, 255, 0.3);
}

.popular-tag {
    position: absolute;
    top: -9px;
    left: 50%;
    padding: 8px 20px;
    z-index: 5;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(160, 102, 255, 0.3);
    letter-spacing: 0.5px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-gray);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li::before {
    content: "✓";
    color: var(--success);
    position: absolute;
    left: 0;
    font-weight: 700;
}

.pricing-card .primary-btn,
.pricing-card .secondary-btn {
    width: 100%;
    text-align: center;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1rem;
    color: var(--text-secondary);
}

.highlight {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(94, 53, 177, 0.9) 0%, rgba(106, 48, 147, 0.9) 50%, rgba(110, 64, 169, 0.85) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at bottom right, rgba(210, 180, 255, 0.3) 0%, rgba(160, 102, 255, 0) 70%);
    z-index: 0;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    z-index: 0;
    opacity: 0.3;
}

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

.cta h2 {
    color: var(--white);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta .primary-btn {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta .primary-btn:hover {
    background-color: var(--off-white);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0.3;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-logo span {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-logo img {
    height: 36px;
    margin-right: 12px;
    filter: brightness(0) invert(1);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.8rem;
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

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

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

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

/* Media Queries */
@media (max-width: 1100px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 4rem;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    nav .container {
        flex-wrap: wrap;
    }
    
    .nav-links {
        order: 3;
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .nav-links li {
        margin: 0 1rem;
    }
    
    .pain-points-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: opacity, transform;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    -webkit-font-smoothing: antialiased;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.hero-image img {
    animation: float 6s ease-in-out infinite;
}

@keyframes shine {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.cta h2, .pricing h2 {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0%, var(--white) 50%, rgba(255, 255, 255, 0.7) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 8s linear infinite;
}