/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

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

p {
    margin-bottom: 1rem;
    color: #666;
}

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

.accent {
    color: #667eea;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
}

.btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 250, 250, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e0e0e0;
    z-index: 1000;
    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;
    height: 70px;
}

.nav-logo h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #333;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
}

.hero-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.floating-card i {
    color: #667eea;
    font-size: 18px;
    min-width: 18px;
}

.card-1 {
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.card-2 {
    top: 35%;
    right: 8%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10%;
    left: 12%;
    animation-delay: 4s;
}

.card-4 {
    top: 15%;
    right: 35%;
    animation-delay: 1s;
}

.card-5 {
    bottom: 40%;
    right: 40%;
    animation-delay: 3s;
}

.card-6 {
    top: 75%;
    left: 45%;
    animation-delay: 5s;
}

.card-7 {
    top: 50%;
    left: 5%;
    animation-delay: 2.5s;
}

.card-8 {
    bottom: 20%;
    right: 10%;
    animation-delay: 3.5s;
}

.hero-illustration {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
}

.sketch-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
    color: #e0e0e0;
    opacity: 0.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-20px) rotate(0deg); }
    75% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 16px;
    color: #333;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.products {
    padding: 100px 0;
    background: #fafafa;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    border: 2px solid #667eea;
    transform: scale(1.05);
}

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

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

.product-icon i {
    font-size: 24px;
    color: white;
}

.product-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #333;
}

.product-subtitle {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-description {
    color: #666;
    margin-bottom: 24px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    background: #f0f0f0;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.product-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.product-link:hover {
    gap: 12px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    background: #fafafa;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

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

.service-icon i {
    font-size: 20px;
    color: white;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    color: #666;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #fafafa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 24px;
    color: #333;
}

.about-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-values {
    display: grid;
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.value-item i {
    color: #667eea;
    font-size: 20px;
    margin-top: 4px;
}

.value-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #333;
}

.value-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sketch-container {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.about-svg {
    width: 100%;
    height: auto;
    color: #e0e0e0;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #333;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

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

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 8px;
    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(-2px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.link-group h4 {
    margin-bottom: 16px;
    color: white;
}

.link-group a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Tablet Styles */
    .hero-content {
        gap: 40px;
    }
    
    .hero-title {
        font-size: clamp(32px, 4vw, 42px);
    }
    
    .floating-card {
        padding: 10px 14px;
        font-size: 13px;
        gap: 6px;
    }
    
    .floating-card i {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .product-card.featured {
        transform: scale(1.02);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .about-content {
        gap: 50px;
    }
    
    .contact-content {
        gap: 50px;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    /* Product Pages Tablet */
    .product-hero-content {
        gap: 40px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .pricing-card.featured {
        transform: scale(1.02);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Styles */
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(250, 250, 250, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 40px;
        gap: 30px;
        z-index: 999;
        border-top: 1px solid #e0e0e0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu a {
        font-size: 18px;
        padding: 12px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 90vh;
        padding-top: 90px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        min-height: 250px;
        position: relative;
    }
    
    .hero-title {
        font-size: clamp(28px, 8vw, 36px);
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 12px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 14px;
    }
    
    /* Floating Cards Mobile */
    .floating-card {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
        border-radius: 8px;
    }
    
    .floating-card i {
        font-size: 14px;
    }
    
    /* Hide some floating cards on mobile for better UX */
    .card-4, .card-5, .card-6 {
        display: none;
    }
    
    /* Reposition remaining cards for mobile */
    .card-1 {
        top: 20%;
        left: 5%;
    }
    
    .card-2 {
        top: 60%;
        right: 5%;
    }
    
    .card-3 {
        bottom: 20%;
        left: 50%;
        transform: translateX(-50%);
    }
    
    /* Stats Mobile */
    .stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .stat-item p {
        font-size: 14px;
    }
    
    /* Sections Mobile */
    .products, .services, .about, .contact {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 30px 20px;
    }
    
    .product-card.featured {
        transform: none;
        margin-bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-text {
        order: 2;
    }
    
    .about-visual {
        order: 1;
    }
    
    .about-values {
        margin-top: 30px;
    }
    
    .value-item {
        text-align: left;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Product Pages Mobile */
    .product-hero {
        min-height: 70vh;
        padding-top: 90px;
        padding-bottom: 40px;
    }
    
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .product-hero-visual {
        order: -1;
    }
    
    .product-hero h1 {
        font-size: clamp(32px, 8vw, 42px);
    }
    
    .product-tagline {
        font-size: 18px;
    }
    
    .product-hero-description {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .product-hero-buttons {
        justify-content: center;
    }
    
    .mockup-screen {
        max-width: 300px;
        padding: 15px;
    }
    
    .product-features, .use-cases, .pricing, .platforms {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .use-case-card {
        padding: 25px 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
        margin-bottom: 20px;
    }
    
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .platform-card {
        padding: 20px 15px;
    }
    
    .platform-card i {
        font-size: 32px;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: clamp(24px, 6vw, 32px);
    }
    
    .cta-content p {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    /* Small Mobile Styles */
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
        height: 60px;
    }
    
    .nav-logo h2 {
        font-size: 20px;
    }
    
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding-top: 30px;
        gap: 25px;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .btn {
        padding: 12px 18px;
        font-size: 13px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .floating-card {
        display: flex;
        padding: 6px 10px;
        font-size: 10px;
        border-radius: 6px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        animation: float 6s ease-in-out infinite;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(8px);
        border: 1px solid rgba(102, 126, 234, 0.1);
    }
    
    .floating-card i {
        font-size: 12px;
    }
    
    /* Adjust positions for mobile - well spaced grid */
    .card-1 {
        top: 5%;
        left: 3%;
    }
    
    .card-2 {
        top: 5%;
        right: 3%;
    }
    
    .card-3 {
        top: 28%;
        left: 5%;
    }
    
    .card-4 {
        top: 28%;
        right: 5%;
    }
    
    .card-5 {
        top: 51%;
        left: 3%;
        font-size: 9px;
        padding: 5px 8px;
    }
    
    .card-6 {
        top: 51%;
        right: 3%;
        font-size: 9px;
        padding: 5px 8px;
    }
    
    .card-7 {
        top: 74%;
        left: 5%;
        font-size: 9px;
        padding: 5px 8px;
    }
    
    .card-8 {
        top: 74%;
        right: 5%;
        font-size: 9px;
        padding: 5px 8px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .products, .services, .about, .contact {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .product-card, .service-card {
        padding: 25px 15px;
    }
    
    .product-icon, .service-icon {
        width: 40px;
        height: 40px;
    }
    
    .product-icon i, .service-icon i {
        font-size: 18px;
    }
    
    .feature-tag {
        font-size: 11px;
        padding: 3px 10px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-brand h3 {
        font-size: 20px;
    }
    
    /* Product Pages Small Mobile */
    .product-hero {
        padding-top: 80px;
        padding-bottom: 30px;
    }
    
    .product-hero h1 {
        font-size: 28px;
    }
    
    .product-tagline {
        font-size: 16px;
    }
    
    .product-hero-description {
        font-size: 15px;
    }
    
    .product-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .mockup-screen {
        max-width: 280px;
        padding: 12px;
    }
    
    .mockup-content {
        gap: 12px;
    }
    
    .feature-card, .use-case-card {
        padding: 20px 15px;
    }
    
    .feature-icon, .use-case-icon {
        width: 40px;
        height: 40px;
    }
    
    .feature-icon i, .use-case-icon i {
        font-size: 18px;
    }
    
    .pricing-card {
        padding: 25px 15px;
    }
    
    .price .amount {
        font-size: 36px;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .platform-card {
        padding: 20px;
    }
    
    .platform-card i {
        font-size: 28px;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Product Pages Styles */
.product-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-hero h1 {
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.product-tagline {
    font-size: 20px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 20px;
}

.product-hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 32px;
}

.product-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-screen {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    padding: 20px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #e0e0e0;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #28ca42; }

.mockup-title {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.calendar-day {
    padding: 8px;
    text-align: center;
    border-radius: 8px;
    background: #f5f5f5;
    font-size: 14px;
    font-weight: 500;
}

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

.appointment-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.appointment-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
}

.appointment-item i {
    color: #667eea;
}

.outreach-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-box {
    background: #f9f9f9;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
}

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

.stat-label {
    font-size: 12px;
    color: #666;
}

.campaign-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.campaign-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    background: #f9f9f9;
}

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

.campaign-item i {
    color: inherit;
}

.social-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}

.platform-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.platform-stat i {
    font-size: 20px;
    color: #667eea;
}

.platform-stat span {
    font-size: 14px;
    font-weight: 600;
}

.post-scheduler {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.scheduled-post {
    padding: 12px;
    background: #f9f9f9;
    border-radius: 8px;
}

.post-time {
    display: block;
    font-size: 12px;
    color: #667eea;
    font-weight: 500;
}

.post-content {
    font-size: 14px;
    color: #666;
}

.product-features {
    padding: 80px 0;
    background: #fafafa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-icon i {
    font-size: 20px;
    color: white;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.platforms {
    padding: 80px 0;
    background: white;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.platform-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.platform-card i {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 16px;
}

.platform-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.platform-card p {
    font-size: 14px;
    color: #666;
}

.use-cases {
    padding: 80px 0;
    background: #fafafa;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.use-case-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.use-case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.use-case-icon i {
    font-size: 20px;
    color: white;
}

.use-case-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.use-case-card p {
    color: #666;
    line-height: 1.6;
}

.pricing {
    padding: 80px 0;
    background: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 2px solid #e0e0e0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

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

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

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 30px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    color: #667eea;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0 4px;
}

.period {
    font-size: 16px;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.savings-badge {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-card.comparison {
    border-color: #ff6b6b;
    background: #fafafa;
}

.comparison-features li.negative {
    color: #ff6b6b;
    position: relative;
}

.comparison-features li.negative::before {
    content: '✗';
    position: absolute;
    left: -20px;
    color: #ff6b6b;
    font-weight: bold;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.cta-content h2 {
    font-size: clamp(32px, 4vw, 42px);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-section .btn-primary:hover {
    background: #f0f0f0;
}

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

.cta-section .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-logo a {
    text-decoration: none;
    color: inherit;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > a {
    cursor: pointer;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
}

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

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 400;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-color: #f8f9ff;
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 12px;
    color: #764ba2;
}

.service-link i {
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* Service Hero */
.service-hero {
    padding: 120px 0 80px;
}

.service-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fafafa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.faq-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.faq-item a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.faq-item a:hover {
    color: #764ba2;
}

/* Pricing Note */
.pricing-note {
    margin-top: 50px;
    text-align: center;
    padding: 25px;
    background: #f0f7ff;
    border-radius: 12px;
    border: 2px solid #667eea;
}

.pricing-note p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.pricing-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.pricing-note a:hover {
    color: #764ba2;
}

/* Featured Service Card */
.service-card.featured {
    border: 2px solid #667eea;
    position: relative;
}

.service-card.featured::before {
    content: 'Grant Supported';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Eligibility Checklist */
.eligibility-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.checklist-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.checklist-card h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #667eea;
}

.checklist-card .service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.checklist-card .service-features li i {
    color: #28a745;
    font-size: 18px;
}

/* Pricing Grant Info */
.pricing-grant {
    text-align: center;
    font-size: 14px;
    margin: 8px 0;
    color: #666;
}

.pricing-grant strong {
    color: #28a745;
    font-weight: 700;
}

/* Lazy Loading Images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .nav-dropdown {
        display: block;
    }
    
    .nav-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-dropdown > a::after {
        content: '▼';
        font-size: 10px;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    
    .nav-dropdown.open > a::after {
        transform: rotate(180deg);
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        padding: 10px 0 10px 20px;
        background: rgba(102, 126, 234, 0.05);
        border-radius: 0;
        margin-top: 8px;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        display: none;
    }
    
    .nav-dropdown.open .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 14px;
        color: #333;
        font-weight: 500;
    }
    
    .dropdown-menu a:hover {
        color: #667eea;
    }
    
    .service-hero {
        padding: 120px 0 80px;
        text-align: center;
        min-height: auto;
    }
    
    .service-hero .container {
        max-width: 100%;
        padding: 0 25px;
    }
    
    .service-hero .product-hero-content {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    
    .service-hero .product-hero-text {
        width: 100%;
        max-width: 100%;
    }
    
    .service-hero .product-badge {
        justify-content: center;
        margin: 0 auto 25px;
        max-width: fit-content;
        display: inline-flex;
    }
    
    .service-hero h1 {
        font-size: 28px;
        line-height: 1.4;
        margin-bottom: 20px;
        margin-top: 0;
    }
    
    .service-hero .product-tagline {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 20px;
        color: #667eea;
        font-weight: 600;
    }
    
    .service-hero p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 25px;
    }
    
    .service-hero .product-hero-description {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
    }
    
    .service-hero .product-hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .service-hero .btn {
        width: 100%;
        max-width: 100%;
        padding: 18px 24px;
        font-size: 16px;
        display: block;
        text-align: center;
        margin: 0;
    }
    
    .product-hero-text {
        text-align: center;
    }
    
    .product-badge {
        justify-content: center;
        margin: 0 auto 20px;
    }
    
    .product-hero-description {
        font-size: 16px;
    }
    
    .product-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .product-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .eligibility-checklist {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 30px 20px;
    }
}