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

:root {
    --primary-green: #34C759;
    --dark-green: #248A3D;
    --light-green: #E8F5E9;
    --white: #FFFFFF;
    --black: #1D1D1F;
    --gray-100: #F5F5F7;
    --gray-200: #E5E5E7;
    --gray-300: #D2D2D7;
    --gray-600: #86868B;
    --gray-900: #1D1D1F;
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 16px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #34C759 0%, #248A3D 100%);
    --gradient-text: linear-gradient(135deg, #34C759 0%, #248A3D 50%, #1B5E20 100%);
    --gradient-hero: linear-gradient(135deg, #E8F5E9 0%, #F0F8F0 50%, #FFFFFF 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Enhanced Navigation */
nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(52, 199, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(52, 199, 89, 0.2);
    padding: 16px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: var(--black);
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 32px;
    height: 32px;
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: rotate(5deg);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-top: 1px solid rgba(52, 199, 89, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 999;
    padding: 40px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-menu li {
    margin-bottom: 24px;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 20px;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 12px;
    display: inline-block;
}

.mobile-menu a:hover {
    color: var(--primary-green);
    background: rgba(52, 199, 89, 0.1);
    transform: translateY(-2px);
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 400;
    font-size: 17px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    text-align: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(52, 199, 89, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(36, 138, 61, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero h1 {
    font-size: clamp(56px, 10vw, 96px);
    font-weight: 700;
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 24px;
    color: var(--gray-600);
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.5;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(52, 199, 89, 0.4);
}

.cta-button .arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

/* Features Section */
.features {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.features h2 {
    text-align: center;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.features-subtitle {
    text-align: center;
    font-size: 24px;
    color: var(--gray-600);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-green) 100%);
}

.feature-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(52, 199, 89, 0.2));
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
    filter: drop-shadow(0 8px 16px rgba(52, 199, 89, 0.3));
}

.feature-card h3 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 16px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

/* Screenshots Carousel */
.screenshots {
    padding: 120px 0;
    background: var(--gray-100);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.screenshots h2 {
    text-align: center;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.screenshots-subtitle {
    text-align: center;
    font-size: 24px;
    color: var(--gray-600);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 80px;
    overflow: hidden;
    height: 550px;
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
    height: 100%;
}

.carousel-slide {
    flex: 0 0 180px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.5;
    transform: scale(0.85);
    filter: blur(1px);
}

.carousel-slide.active {
    flex: 0 0 240px;
    height: 500px;
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.carousel-slide img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    transition: all 0.6s ease;
}

.carousel-slide.active img {
    box-shadow: var(--shadow-heavy);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.carousel-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.3);
}

.carousel-dot::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.carousel-dot.active::before {
    opacity: 0.2;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--black);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-heavy);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

/* Main Content */
.main-content {
    padding: 140px 0 100px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(52, 199, 89, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(36, 138, 61, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: clamp(56px, 10vw, 80px);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.page-header p {
    font-size: 24px;
    color: var(--gray-600);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.privacy-content {
    background: var(--white);
    padding: 64px;
    border-radius: 28px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--gray-200);
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.privacy-content:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.privacy-content h2 {
    color: var(--black);
    margin: 64px 0 28px 0;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-bottom: 3px solid var(--gray-200);
    padding-bottom: 16px;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.privacy-content h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.6s ease;
}

.privacy-content h2:hover::before {
    width: 100%;
}

.privacy-content h3 {
    color: var(--black);
    margin: 40px 0 20px 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.privacy-content p {
    margin-bottom: 20px;
    color: var(--gray-600);
    line-height: 1.8;
    font-size: 16px;
}

.privacy-content ul {
    margin: 20px 0 20px 32px;
    color: var(--gray-600);
}

.privacy-content li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.highlight-box {
    background: var(--light-green);
    padding: 40px;
    border-radius: 18px;
    border-left: 6px solid var(--primary-green);
    margin: 40px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.highlight-box:hover::before {
    transform: scaleX(1);
}

.highlight-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.highlight-box p {
    margin: 0;
    font-weight: 600;
    color: var(--dark-green);
    font-size: 16px;
    line-height: 1.7;
}

.contact-content {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
}

.contact-info {
    background: var(--white);
    padding: 48px;
    border-radius: 28px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.contact-info:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.contact-info h2 {
    color: var(--black);
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 32px;
    padding: 28px;
    background: var(--gray-100);
    border-radius: 18px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-item:hover::before {
    transform: scaleX(1);
}

.contact-item:hover {
    background: var(--light-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.contact-item .icon {
    font-size: 28px;
    margin-right: 20px;
    color: var(--primary-green);
    margin-top: 6px;
    transition: transform 0.3s ease;
}

.contact-item:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-item .content h3 {
    color: var(--black);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.contact-item .content p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 48px;
    border-radius: 28px;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--gray-200);
    transition: all 0.4s ease;
}

.contact-form:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.contact-form h2 {
    color: var(--black);
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.01em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(52, 199, 89, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(52, 199, 89, 0.3);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-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.6s ease;
}

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

.faq-section {
    background: var(--white);
    padding: 120px 0;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}

.faq-section h2 {
    text-align: center;
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.faq-subtitle {
    text-align: center;
    font-size: 24px;
    color: var(--gray-600);
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

.faq-item {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-100) 100%);
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item:hover::after {
    opacity: 1;
}

.faq-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, var(--white) 0%, var(--light-green) 100%);
}

.faq-item h3 {
    color: var(--black);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 2;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 16px;
    position: relative;
    z-index: 2;
    font-weight: 400;
}

.app-store-badge {
    display: inline-block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-store-badge:hover {
    transform: translateY(-2px) scale(1.05);
}

/* Enhanced Link Styles */
a {
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

a:hover {
    color: var(--dark-green);
    transform: translateY(-1px);
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

/* Special styling for email links */
a[href^="mailto:"] {
    color: var(--primary-green);
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 6px;
    background: rgba(52, 199, 89, 0.1);
    transition: all 0.3s ease;
}

a[href^="mailto:"]:hover {
    background: rgba(52, 199, 89, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
}

a[href^="mailto:"]::after {
    display: none;
}

/* Special styling for external links */
a[target="_blank"] {
    color: var(--primary-green);
    font-weight: 500;
}

a[target="_blank"]:hover {
    color: var(--dark-green);
}

a[target="_blank"]::after {
    content: '↗';
    margin-left: 4px;
    font-size: 0.8em;
    opacity: 0.7;
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(52, 199, 89, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(36, 138, 61, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 32px;
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-section p {
    color: var(--gray-300);
    line-height: 1.7;
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-section a {
    color: var(--gray-300);
    text-decoration: none;
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.footer-section a:hover {
    color: var(--primary-green);
    transform: translateX(8px);
    padding-left: 12px;
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 60px;
    text-align: center;
    color: var(--gray-300);
    font-size: 18px;
    position: relative;
    z-index: 2;
}

/* Enhanced UI Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(52, 199, 89, 0.08);
    animation: float 8s ease-in-out infinite;
    border: 2px solid rgba(52, 199, 89, 0.1);
}

.floating-circle:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.floating-circle:nth-child(2) {
    width: 140px;
    height: 140px;
    top: 55%;
    right: 12%;
    animation-delay: 2.5s;
}

.floating-circle:nth-child(3) {
    width: 80px;
    height: 80px;
    bottom: 25%;
    left: 15%;
    animation-delay: 5s;
}

.floating-circle:nth-child(4) {
    width: 60px;
    height: 60px;
    top: 35%;
    right: 25%;
    animation-delay: 1s;
}

.floating-circle:nth-child(5) {
    width: 90px;
    height: 90px;
    bottom: 45%;
    right: 8%;
    animation-delay: 3.5s;
}

/* Decorative shapes */
.decorative-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid var(--primary-green);
    animation: rotate 12s linear infinite;
}

.shape-square {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    transform: rotate(45deg);
    animation: pulse 4s ease-in-out infinite;
}

.shape-circle-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--primary-green);
    animation: bounce 3s ease-in-out infinite;
}

/* Section decorative elements */
.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-decoration::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(52, 199, 89, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: drift 15s ease-in-out infinite;
}

.section-decoration::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(36, 138, 61, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: drift 20s ease-in-out infinite reverse;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: rotate(45deg) scale(1);
        opacity: 0.1;
    }
    50% {
        transform: rotate(45deg) scale(1.2);
        opacity: 0.2;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes drift {
    0%, 100% {
        transform: translateX(0px) translateY(0px);
    }
    25% {
        transform: translateX(50px) translateY(-30px);
    }
    50% {
        transform: translateX(100px) translateY(0px);
    }
    75% {
        transform: translateX(50px) translateY(30px);
    }
}

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

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

.privacy-content {
    animation: fadeInUp 0.8s ease-out;
}

.contact-info,
.contact-form {
    animation: fadeInUp 0.8s ease-out;
}

.contact-info {
    animation-delay: 0.1s;
}

.contact-form {
    animation-delay: 0.2s;
}

.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .cta-section {
        flex-direction: column;
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .carousel-container {
        padding: 0 60px;
        height: 500px;
    }

    .carousel-slide {
        flex: 0 0 120px;
        height: 200px;
    }

    .carousel-slide.active {
        flex: 0 0 160px;
        height: 400px;
    }

    .carousel-arrow {
        display: flex;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .carousel-arrow.prev {
        left: 10px;
    }

    .carousel-arrow.next {
        right: 10px;
    }

    .privacy-content {
        padding: 32px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info,
    .contact-form {
        padding: 32px;
    }

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

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .main-content {
        padding: 120px 0 80px;
    }

    .features,
    .screenshots {
        padding: 80px 0;
    }

    .faq-section {
        padding: 80px 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
