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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333333;
    background: #FFFFFF;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 5%;
    background: linear-gradient(to right, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-bottom: 1px solid rgba(92, 191, 125, 0.1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 0% 0%, rgba(92, 191, 125, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(136, 212, 152, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.logo-img {
    height: 75px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo span {
    display: none;
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #5cbf7d, transparent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #5cbf7d;
    text-shadow: 0 0 20px rgba(92, 191, 125, 0.3);
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        gap: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Hero section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    padding: 0 5%;
    display: flex;
    align-items: center;
}

/* Dynamic background animation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(92, 191, 125, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(136, 212, 152, 0.15) 0%, transparent 50%);
    animation: heroGradient 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes heroGradient {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2) rotate(5deg);
        opacity: 0.7;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.5;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #5cbf7d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    animation: slideInLeft 1s ease-out;
}

.hero-text p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Phone mockup styles */
.phone-mockup {
    position: relative;
    transform-style: preserve-3d;
    animation: float 6s ease-in-out infinite;
    width: 420px;
    margin: 0 auto;
    z-index: 2;
}

.phone-frame {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 48px;
    padding: 12px;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(92, 191, 125, 0.2);
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

/* Remove the button lines */
.phone-frame::after {
    display: none;
}

.phone-screen {
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.phone-mockup:hover .screen-content {
    transform: scale(1.05);
}

/* Dynamic Island */
.phone-frame::after {
    content: '';
    position: absolute;
    left: -3px;
    top: 100px;
    width: 3px;
    height: 35px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px 0 0 3px;
    z-index: 6;
    box-shadow: 
        0 45px 0 rgba(255, 255, 255, 0.2),
        0 90px 0 rgba(255, 255, 255, 0.2),
        286px 70px 0 #3c805d; /* Action button in theme color */
}

/* Camera bump */
.camera-system {
    display: none;
}

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

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.store-button {
    background: #3c805d;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #3c805d, #5cbf7d);
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #45946d, #6ac98b);
}

.store-button.video-button {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.store-button.video-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.store-button i {
    font-size: 1.4rem;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.button-text span:first-child {
    font-size: 0.8rem;
    opacity: 0.9;
}

.button-text span:last-child {
    font-weight: 600;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotateY(-5deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

/* Features section */
.features {
    padding: 5rem 10%;
    background-color: #F5F5F5;
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #333333;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #3c805d;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666666;
}

/* About section */
.about {
    padding: 5rem 10%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-content p {
    color: rgba(255, 255, 255, 0.8);
}

.about.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Contact section renamed to Early Access */
.contact {
    padding: 5rem 10%;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #5cbf7d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.early-access-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.form-container {
    max-width: 500px;
    margin: 2rem auto;
    position: relative;
}

.contact-form {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.contact-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(92, 191, 125, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.contact-form input:focus {
    outline: none;
    border-color: #5cbf7d;
    background: rgba(255, 255, 255, 0.15);
}

.contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.submit-button {
    background: linear-gradient(135deg, #3c805d, #5cbf7d);
    color: #FFFFFF;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.submit-button:disabled {
    background: linear-gradient(135deg, #2a5c42, #3c805d);
    cursor: not-allowed;
    opacity: 0.8;
    transform: none;
    box-shadow: none;
}

.submit-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #45946d, #6ac98b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 191, 125, 0.3);
}

.submit-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.submit-button:hover:not(:disabled)::after {
    transform: scale(1);
}

.success-message {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(92, 191, 125, 0.1);
    border: 1px solid rgba(92, 191, 125, 0.2);
    backdrop-filter: blur(10px);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transform: translateY(0);
}

.success-message.visible {
    opacity: 1;
    visibility: visible;
}

.success-message i {
    font-size: 3rem;
    color: #5cbf7d;
    margin-bottom: 1rem;
}

.success-message h3 {
    font-size: 1.5rem;
    color: #5cbf7d;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.5;
}

.submit-button i {
    margin-right: 0.5rem;
}

.limited-spots {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.contact.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .contact {
        padding: 4rem 5%;
    }

    .contact h2 {
        font-size: 2.2rem;
    }

    .early-access-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .contact-form {
        flex-direction: column;
        padding: 0 1rem;
    }

    .submit-button {
        width: 100%;
    }

    .success-message {
        margin: 0 1rem;
    }
}

/* Footer styles */
footer {
    background-color: #333333;
    color: #FFFFFF;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-section p {
    color: #666666;
}

.social-links a {
    color: #FFFFFF;
    margin-right: 1rem;
    font-size: 1.5rem;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.social-links a:hover {
    color: #3c805d;
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(60, 128, 93, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-links a:hover::before {
    transform: scale(1.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #F5F5F5;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
    }

    .download-buttons {
        justify-content: center;
    }

    .phone-mockup {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-button {
        width: 100%;
        max-width: 300px;
    }

    .phone-mockup {
        width: 260px;
    }
}

/* Add reflection and titanium finish */
.phone-frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.05) 100%
    );
    border-radius: 48px;
    pointer-events: none;
}

/* Video Demo section */
.video-demo {
    padding: 5rem 10%;
    background-color: #F5F5F5;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(92, 191, 125, 0.1) 0%, transparent 70%),
        linear-gradient(-45deg, rgba(136, 212, 152, 0.1) 0%, transparent 70%);
}

.video-demo h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #5cbf7d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

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

/* Responsive video */
@media (max-width: 768px) {
    .video-container {
        margin: 0 -5%;
        border-radius: 0;
    }
    
    .video-demo {
        padding: 3rem 5%;
    }

    .video-demo h2 {
        font-size: 2.2rem;
    }
} 

/* Add animated background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(92, 191, 125, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(136, 212, 152, 0.4) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite alternate;
}

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

/* Floating elements animation */
.hero-text::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    filter: blur(60px);
    animation: float-blob 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes float-blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* Enhanced text animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced button effects */
.store-button {
    position: relative;
    overflow: hidden;
}

.store-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.store-button:hover::after {
    transform: scale(1);
}

/* Video section enhancements */
.video-demo {
    position: relative;
    overflow: hidden;
}

.video-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(92, 191, 125, 0.1) 0%, transparent 70%),
        linear-gradient(-45deg, rgba(136, 212, 152, 0.1) 0%, transparent 70%);
}

.video-container {
    position: relative;
    transition: transform 0.3s ease;
}

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

/* Scroll reveal animations */
.about, .contact {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.about.visible, .contact.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Enhanced footer */
.footer-content {
    position: relative;
}

.social-links a {
    position: relative;
    display: inline-block;
}

.social-links a::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(60, 128, 93, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.social-links a:hover::before {
    transform: scale(1.5);
}

/* Features Showcase */
.features-showcase {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
    overflow: hidden;
    position: relative;
}

/* Animated gradient background */
.features-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(92, 191, 125, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(136, 212, 152, 0.15) 0%, transparent 50%);
    animation: gradientMove 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes gradientMove {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.1) rotate(5deg);
    }
}

.feature-item {
    max-width: 1200px;
    margin: -2rem auto;  /* Negative margin for overlap */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.feature-item:first-child {
    margin-top: 0;  /* First item doesn't need top negative margin */
}

.feature-item:last-child {
    margin-bottom: 0;  /* Last item doesn't need bottom negative margin */
}

/* Remove the divider */
.feature-item::after {
    display: none;
}

.feature-item::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(92, 191, 125, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.5;
    transition: all 0.5s ease;
}

.feature-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: ltr;
}

.feature-item.reverse .feature-text {
    order: 2;
    padding-left: 2rem;
}

.feature-item.reverse .feature-phone {
    order: 1;
    padding-right: 2rem;
}

.feature-item:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.feature-item:nth-child(odd)::before {
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.feature-item:nth-child(even)::before {
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.feature-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

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

.feature-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    background: linear-gradient(90deg, #fff, #5cbf7d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.feature-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #5cbf7d, transparent);
    transition: width 0.3s ease;
}

.feature-item:hover .feature-text h2::after {
    width: 100%;
}

.feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-phone {
    position: relative;
    z-index: 2;
}

.feature-phone .phone-mockup {
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.5s ease;
    position: relative;
}

.feature-phone .phone-mockup::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    border-radius: 48px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-phone:hover .phone-mockup::after {
    opacity: 1;
}

.feature-item.reverse .feature-phone .phone-mockup {
    transform: perspective(1000px) rotateY(15deg);
}

.feature-phone .phone-mockup:hover {
    transform: perspective(1000px) rotateY(0) translateY(-10px);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
}

.feature-item.reverse .feature-phone .phone-mockup:hover {
    transform: perspective(1000px) rotateY(0) translateY(-10px);
}

@media (max-width: 968px) {
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 1rem;
        direction: ltr;
    }

    .feature-text h2 {
        font-size: 2.2rem;
        text-align: center;
    }

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

    .feature-phone {
        order: -1;
    }

    .feature-phone .phone-mockup,
    .feature-item.reverse .feature-phone .phone-mockup {
        transform: perspective(1000px) rotateY(0);
    }

    .feature-item::before {
        width: 300px;
        height: 300px;
    }
} 

/* Feedback Section Styles */
.feedback-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(92, 191, 125, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(136, 212, 152, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feedback-section h2 {
    margin-bottom: 40px;
    color: #333;
    font-size: 2.5em;
    position: relative;
}

.feedback-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #5cbf7d, #88d498);
    border-radius: 2px;
}

/* JotForm Custom Styles */
.feedback-section iframe {
    border: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    border-radius: 20px !important;
    background: white !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    display: block !important;
}

/* Custom form field styles that will be inherited by JotForm */
:root {
    --primary-color: #3c805d;
    --hover-color: #5cbf7d;
    --background-color: #ffffff;
    --text-color: #333333;
}

/* Style form inputs */
.form-input, 
.form-textarea, 
.form-dropdown,
input[type="text"],
input[type="email"],
textarea,
select {
    border: 2px solid rgba(60, 128, 93, 0.2) !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    transition: all 0.3s ease !important;
    background: white !important;
}

/* Style form buttons */
.form-submit-button,
button[type="submit"] {
    background: linear-gradient(135deg, #3c805d, #5cbf7d) !important;
    color: white !important;
    border: none !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    font-size: 16px !important;
    box-shadow: 0 4px 15px rgba(60, 128, 93, 0.2) !important;
}

.form-submit-button:hover,
button[type="submit"]:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(60, 128, 93, 0.3) !important;
    background: linear-gradient(135deg, #45946d, #6ac98b) !important;
}

/* Style radio buttons and checkboxes */
.form-radio-item,
.form-checkbox-item {
    margin: 10px 0 !important;
}

/* Style labels */
.form-label {
    color: #333333 !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
}

/* Style error messages */
.form-error-message {
    color: #ff4444 !important;
    font-size: 14px !important;
    margin-top: 4px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feedback-section {
        padding: 40px 15px;
    }
    
    .feedback-section h2 {
        font-size: 2em;
    }
} 

/* Common gradient background for all main sections */
.video-demo, .about, .contact {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #fff;
}

.video-demo::before, .about::before, .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(92, 191, 125, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(136, 212, 152, 0.15) 0%, transparent 50%);
    animation: gradientMove 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes gradientMove {
    0% {
        transform: scale(1) rotate(0deg);
    }
    100% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Ensure content stays above the gradient */
.video-demo > *, .about > *, .contact > * {
    position: relative;
    z-index: 2;
}

.video-demo, .about {
    text-align: center;
}

.video-demo h2, .about-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: linear-gradient(90deg, #fff, #5cbf7d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.video-demo h2::after, .about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #5cbf7d, transparent);
    opacity: 0.5;
}

@media (max-width: 768px) {
    .video-demo h2, .about-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
} 

.hero-badge {
    background: rgba(92, 191, 125, 0.1);
    color: #5cbf7d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(92, 191, 125, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeIn 1s ease-out;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    animation: fadeIn 1s ease-out 1.5s both;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #5cbf7d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s ease-out 2s both;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: #5cbf7d;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-out infinite;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-5px) rotate(45deg);
    }
    60% {
        transform: translateY(-3px) rotate(45deg);
    }
}

/* Enhanced active nav link */
.nav-links a.active {
    color: #5cbf7d;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #5cbf7d, transparent);
}

/* Responsive adjustments for new elements */
@media (max-width: 1024px) {
    .hero-stats {
        justify-content: center;
        margin-top: 2rem;
    }

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

    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .scroll-indicator {
        display: none;
    }
} 

/* Remove floating elements styles */
.floating-elements,
.floating-icon,
.floating-icon:nth-child(1),
.floating-icon:nth-child(2),
.floating-icon:nth-child(3),
.floating-icon:nth-child(4),
.floating-icon:nth-child(1)::before,
.floating-icon:nth-child(2)::before,
.floating-icon:nth-child(3)::before,
.floating-icon:nth-child(4)::before {
    display: none;
}

/* Additional Responsive Improvements */
@media (max-width: 768px) {
    /* General text sizing */
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    p {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }

    /* Container padding */
    .hero,
    .features-showcase,
    .video-demo,
    .about,
    .contact {
        padding: 3rem 1.5rem;
    }

    /* Image optimization */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Button improvements */
    .store-button,
    .submit-button {
        width: 100%;
        justify-content: center;
        padding: 1rem;
    }

    /* Form improvements */
    .contact-form {
        width: 100%;
        padding: 0 1rem;
    }

    input[type="email"] {
        width: 100%;
        margin-bottom: 1rem;
    }

    /* Stats responsiveness */
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

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

    /* Feature items */
    .feature-item {
        padding: 2rem 1rem;
        gap: 2rem;
    }

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

    /* Phone mockup */
    .phone-mockup {
        width: 280px;
        margin: 0 auto;
    }
}

/* Tablet improvements */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .phone-mockup {
        width: 340px;
        margin: 2rem auto 0;
    }

    .feature-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Improve touch targets on mobile */
button,
.nav-links a,
.store-button {
    min-height: 44px;
    min-width: 44px;
    padding: 0.8rem 1.5rem;
}
