/* Base Styles - Mobile First Approach */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for rem calculations */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Touch-friendly improvements */
a, button {
    touch-action: manipulation;
}

button, input, select, textarea {
    font-family: inherit;
}

/* Improve tap targets for mobile */
.btn, .nav-link, .login-btn {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

/* Typography */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 0.77rem;
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    color: #667eea;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.26rem;
}

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

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea;
}

.login-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

.nav-menu.mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: left 0.3s ease;
    z-index: 1000;
}

.nav-menu.mobile.active {
    left: 0;
}

.nav-menu.mobile .nav-link {
    font-size: 1.2rem;
    font-weight: 600;
}

.nav-menu.mobile .login-btn {
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 2.45rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 0.84rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-outline:hover {
    background: #667eea;
    color: white;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 0.77rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label {
    font-size: 0.63rem;
    color: #7f8c8d;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero-app-image {
    max-width: 130%;
    height: auto;
    max-height: 700px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-app-image:hover {
    transform: scale(1.05);
}

.map-view {
    width: 90%;
    height: 70%;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1ecf1 100%);
    margin: 5% auto;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    border: 2px solid #bdc3c7;
}

.mock-map {
    width: 100%;
    height: 100%;
    position: relative;
    background: 
        linear-gradient(135deg, #e8f4f8 0%, #d1ecf1 50%, #c3e9f1 100%);
    background-size: 100% 100%;
}

.map-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(102, 126, 234, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(102, 126, 234, 0.15) 1px, transparent 1px);
    background-size: 15px 15px;
}

.map-marker {
    position: absolute;
    font-size: 12px;
    font-weight: bold;
    color: white;
    background: #667eea;
    padding: 3px 8px;
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
    z-index: 10;
    border: 2px solid white;
    transform: translate(-50%, -50%);
}

.red-marker { 
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%); 
}

.blue-marker { 
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); 
}

.green-marker { 
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%); 
}

.location-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tracking-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #667eea, transparent);
    animation: trackingMove 3s infinite;
}

.line1 {
    top: 25%;
    left: 35%;
    width: 30%;
    animation-delay: 0s;
}

.line2 {
    top: 55%;
    left: 65%;
    width: 25%;
    animation-delay: 1s;
}

.line3 {
    top: 75%;
    left: 45%;
    width: 35%;
    animation-delay: 2s;
}

@keyframes pulse {
    0% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.15);
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    }
    100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    }
}

@keyframes trackingMove {
    0% { opacity: 0; width: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; width: 40%; }
}

.map-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    padding: 8px;
    backdrop-filter: blur(5px);
}

.tracking-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.family-member {
    font-size: 10px;
    color: #2c3e50;
    font-weight: 500;
}

.tracking-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: white;
}

/* Audience Section */
.audience {
    padding: 80px 0;
    background: #ffffff;
}

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

.audience-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f2f6;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.audience-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.audience-card p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.feature-list i {
    color: #27ae60;
    font-size: 0.8rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.26rem;
    color: white;
}

.feature-item h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #ffffff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #f1f2f6;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.05rem;
    color: #7f8c8d;
}

.amount {
    font-size: 2.1rem;
    font-weight: 700;
    color: #667eea;
}

.period {
    font-size: 0.7rem;
    color: #7f8c8d;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.pricing-features i {
    color: #27ae60;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 0.84rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: white;
    color: #667eea;
}

.cta .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo i {
    margin-right: 0.5rem;
    color: #667eea;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #bdc3c7;
}

.contact-info i {
    color: #667eea;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.mobile {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 80px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-image {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        text-align: left;
        margin-left: -15px;
    }
    
    .hero-app-image {
        max-width: 85%;
        max-height: 400px;
        margin: 0;
        display: block;
        position: relative;
        left: -10px;
        transform: none;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        font-size: 0.9rem;
    }
    
    .nav-logo span {
        display: none;
    }
    
    .hero {
        padding: 100px 0 50px;
    }
    
    .hero-container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .hero-stats {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .hero-app-image {
        max-width: 95%;
        max-height: 300px;
        margin: 0;
        display: block;
        position: relative;
        left: -15px;
        transform: none;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .audience,
    .features,
    .pricing,
    .cta {
        padding: 50px 0;
    }
    
    .audience-card,
    .feature-item,
    .pricing-card {
        padding: 1.2rem;
    }
    
    .audience-card h3,
    .feature-item h4 {
        font-size: 0.95rem;
    }
    
    .audience-card p,
    .feature-item p {
        font-size: 0.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1rem;
    }
    
    .card-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }
    
    .card-icon i {
        font-size: 1.2rem;
    }
    
    .pricing-header h3 {
        font-size: 0.95rem;
    }
    
    .amount {
        font-size: 1.8rem;
    }
    
    .currency,
    .period {
        font-size: 0.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .cta-content p {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info p {
        justify-content: center;
        font-size: 0.8rem;
    }
    
    .footer-links {
        font-size: 0.8rem;
    }
}

/* Extra small devices (phones in landscape, 320px and up) */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.8rem 1rem;
        font-size: 0.75rem;
        max-width: 260px;
    }
    
    .hero-buttons {
        gap: 0.6rem;
    }
    
    .nav-logo {
        font-size: 0.8rem;
    }
    
    .container {
        padding: 0 8px;
    }
    
    .audience-card,
    .feature-item,
    .pricing-card {
        padding: 1rem;
    }
    
    .footer {
        padding: 30px 0 10px;
    }
    
    /* Improve WhatsApp button on very small screens */
    .cta .btn-secondary {
        font-size: 0.8rem;
        padding: 0.9rem 1.2rem;
    }
}

/* Landscape orientation improvements */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-stats {
        margin-top: 1.5rem;
        gap: 0.8rem;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.audience-card,
.feature-item,
.pricing-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
    .audience-card:nth-child(1) { animation-delay: 0.1s; }
    .audience-card:nth-child(2) { animation-delay: 0.2s; }
    .audience-card:nth-child(3) { animation-delay: 0.3s; }
    .audience-card:nth-child(4) { animation-delay: 0.4s; }
}