body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

.container {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
    height: 60vh;
}

/* Index page should have full height */
body.index-page .container {
    height: 100vh;
}

.image-container {
    margin: 0;
    padding: 0;
    position: relative;
    height: 60vh;
    overflow: hidden;
    width: 100%;
}

/* Index page should have full height */
body.index-page .image-container {
    height: 100vh;
}

.background-image {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 60vh;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0;
    left: 0;
}

/* Index page should have full height and center positioning */
body.index-page .background-image {
    height: 100vh;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 100;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.1;
    white-space: nowrap;
    position: relative;
    display: inline-block;
}

.hero-title::before {
    content: 'आपका डिजिटल परिवार!';
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 48px;
    font-weight: 400;
    color: #ff6b35;
    opacity: 0;
    text-shadow: 
        2px 2px 0px #ffffff,
        4px 4px 0px rgba(255, 107, 53, 0.3),
        6px 6px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Devanagari Sangam MN', 'Noto Sans Devanagari', 'Inter', sans-serif;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Only apply animations on index page */
body.index-page .hero-title::before {
    animation: fadeInFamily 1s ease-in-out 3s forwards, 
               floatText 3s ease-in-out 4s infinite,
               gradientShift 4s ease-in-out 4s infinite;
}

.hero-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 0;
    height: 4px;
    background: #ffffff;
    transform: translateY(-50%) rotate(-2deg);
}

/* Only apply crossOut animation on index page */
body.index-page .hero-title::after {
    animation: crossOut 2s ease-in-out 1s forwards;
}

@keyframes crossOut {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes fadeInFamily {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes floatText {
    0%, 100% {
        transform: translateX(-50%) translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateX(-50%) translateY(-8px) rotate(0.5deg);
    }
    50% {
        transform: translateX(-50%) translateY(-5px) rotate(0deg);
    }
    75% {
        transform: translateX(-50%) translateY(-12px) rotate(-0.5deg);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 40px 0;
    line-height: 1.4;
}

.hero-join-btn {
    display: inline-block;
    background: #000;
    color: white;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
}

.hero-join-btn:hover {
    background: #ffffff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Ensure proper layering and positioning for all breakpoints */
.navbar {
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    padding: 5px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    margin-top: 10px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.mobile-nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav-links a:hover {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.mobile-nav-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.mobile-nav-buttons .login-btn,
.mobile-nav-buttons .demo-btn {
    flex: 1;
    text-align: center;
}

.logo {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav-links a:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.login-btn {
    background: #000;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.login-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.login-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.5s;
}

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

.demo-btn {
    background: #333;
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    background: #555;
}

.footer {
    background-color: #f8f9fa;
    padding: 60px 40px 30px;
    border-top: 1px solid #e9ecef;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 40px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #007bff;
}

.newsletter {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.newsletter h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.newsletter input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.newsletter button {
    background: #007bff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.newsletter button:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.newsletter button:active {
    transform: translateY(0);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

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

.social-icons a:hover {
    background: #555;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #007bff;
}

.moving-images-section {
    padding: 40px 0 60px;
    background: white;
    overflow: hidden;
    position: relative;
}

.moving-images-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    margin-top: 30px;
}

.moving-images-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.moving-images-container {
    display: flex;
    animation: moveImages 30s linear infinite;
    gap: 20px;
    align-items: center;
}

.moving-image-item {
    flex-shrink: 0;
    width: 140px;
    height: 85px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.moving-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes moveImages {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.moving-images-section::before,
.moving-images-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.moving-images-section::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.moving-images-section::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.engagement-section {
    padding: 80px 5% 40px;
    background: white;
    position: relative;
}

.engagement-container {
    max-width: 1400px;
    margin: 0 auto;
    background: url('../assets/bg2.jpeg') center center / cover no-repeat;
    border-radius: 40px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.engagement-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 40px;
}

.engagement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.engagement-left {
    color: white;
}

.engagement-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.2;
    color: #ffffff;
}

.engagement-subtitle {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 40px 0;
    line-height: 1.4;
    color: #ffffff;
}

.engagement-features {
    margin-bottom: 50px;
}

.engagement-feature {
    display: flex;
    align-items: center;
    margin-bottom: 35px;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    color: white;
    font-weight: 600;
}

.book-demo-btn {
    background: rgba(99, 102, 241, 0.95);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.book-demo-btn:hover {
    background: rgba(79, 70, 229, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.engagement-right {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 3;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
}

.profile-info h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.profile-info p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #6b7280;
}

.profile-location {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 10px;
}

.profile-icons {
    display: flex;
    gap: 8px;
}

.profile-icons span {
    font-size: 16px;
}

.leaderboard-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 3;
}

.leaderboard-card h3 {
    margin: 0 0 20px 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.leaderboard-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
}

.leaderboard-item:last-child {
    border-bottom: none;
}

.leaderboard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
}

.leaderboard-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leaderboard-info .name {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.leaderboard-info .role {
    font-size: 12px;
    color: #6b7280;
}

.leaderboard-points {
    display: flex;
    align-items: center;
    gap: 10px;
}

.points {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

.badge {
    font-size: 16px;
}

.page-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

.features-section {
    padding: 80px 10%;
    background-color: white;
    animation: fadeInUp 0.8s ease-out;
}

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

.features-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #333;
    margin-bottom: 70px;
    line-height: 1.3;
}

.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    margin-bottom: 10px;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    transform: translateX(0);
    opacity: 1;
    cursor: pointer;
}

.features-list li:hover {
    border-bottom-color: #00bcd4;
    transform: translateX(6px);
    background: linear-gradient(90deg, rgba(0,188,212,0.05) 0%, transparent 100%);
    border-radius: 6px;
    padding-left: 12px;
}

.features-list li.active {
    border-bottom-color: #007bff;
    background: linear-gradient(90deg, rgba(0,123,255,0.1) 0%, transparent 100%);
    border-radius: 6px;
    padding-left: 12px;
    transform: translateX(6px);
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.feature-description {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.features-list li.active .feature-description {
    max-height: 50px;
    opacity: 1;
    margin-top: 6px;
}

.feature-display {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
    max-width: 600px;
    height: 337px;
    width: 100%;
}

.feature-display:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.feature-image-container:hover .feature-image {
    transform: scale(1.05);
}

.feature-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.feature-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
}

.feature-overlay p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

.preview-content {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.post-reactions {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.reaction {
    background: #f5f5f5;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    color: #666;
}

.post-actions {
    display: flex;
    gap: 20px;
    padding: 10px 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.action-btn {
    color: #3b82f6;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.comment-section {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.user-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    margin-right: 10px;
}

.showcase-section {
    padding: 100px 5% 80px;
    background: white;
    position: relative;
    overflow: hidden;
}

.showcase-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #1f2937;
    margin-bottom: 80px;
    line-height: 1.2;
}

.showcase-slider {
    display: flex;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
    align-items: stretch;
}

.showcase-card {
    flex: 0 0 320px;
    height: 260px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.showcase-card:hover {
    flex: 0 0 450px;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.showcase-card:hover + .showcase-card,
.showcase-card:has(+ .showcase-card:hover) {
    flex: 0 0 240px;
}

.showcase-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.showcase-card:hover .showcase-card-image {
    transform: scale(1.1);
}

.showcase-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 40px 30px 30px;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.showcase-card:hover .showcase-card-overlay {
    transform: translateY(0);
}

.cta-gradient-section {
    padding: 80px 5%;
    background: white;
    position: relative;
}

.cta-gradient-container {
    max-width: 1400px;
    margin: 0 auto;
    background: url('../assets/bg3.jpeg') center center / cover no-repeat;
    border-radius: 40px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-gradient-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-gradient-title {
    font-size: 42px;
    font-weight: 700;
    margin: 0 0 50px 0;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-gradient-btn {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-gradient-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-gradient-btn::after {
    content: '→';
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-gradient-btn:hover::after {
    transform: translateX(5px);
}

.showcase-card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.1s;
}

.showcase-card:hover .showcase-card-title {
    opacity: 1;
    transform: translateY(0);
}

.showcase-card-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.2s;
}

.showcase-card:hover .showcase-card-stats {
    opacity: 1;
    transform: translateY(0);
}

.showcase-card-number {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

.showcase-card-label {
    font-size: 14px;
    color: #e5e7eb;
    line-height: 1.2;
}

.showcase-card-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #d1d5db;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease 0.3s;
}

.showcase-card:hover .showcase-card-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.agent-hub-section {
    padding: 100px 5% 80px;
    background: white;
    position: relative;
    overflow: hidden;
}

.agent-hub-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.agent-hub-left {
    position: relative;
    height: 500px;
}

.image-placeholders-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.placeholder-item {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 600px;
    height: 380px;
    max-width: 90%;
}

.placeholder-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.placeholder-image {
    width: 256px;
    height: 144px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    border: 3px dashed #d1d5db;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.placeholder-item:hover .placeholder-image {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    border-color: #3b82f6;
    color: #3b82f6;
}

.placeholder-item span {
    font-size: 16px;
    font-weight: 600;
    color: #6b7280;
    line-height: 1.3;
}

.placeholder-item:hover span {
    color: #374151;
}

.agent-hub-right h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.agent-hub-right p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.6;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1f2937;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 16px;
}

.learn-more-btn:hover {
    background: #374151;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 41, 55, 0.3);
}

/* Mobile First Responsive Design */

/* Large Desktop - default styles above */

/* Tablet Landscape */
@media (max-width: 1200px) {
    .navbar {
        left: 30px;
        right: 30px;
        padding: 12px 25px;
    }
    
    .nav-links {
        gap: 18px;
    }
    
    .nav-links a {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-title::before {
        font-size: 40px;
        top: -60px;
    }
    
    .features-section {
        padding: 60px 8%;
    }
    
    .features-container {
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .engagement-container {
        padding: 50px 40px;
    }
    
    .cta-gradient-container {
        padding: 70px 50px;
    }
}

/* Tablet Portrait */
@media (max-width: 1024px) {
    .navbar {
        position: absolute;
        left: 25px;
        right: 25px;
        padding: 10px 20px;
        border-radius: 35px;
        top: 20px;
        z-index: 1000;
    }
    
     .logo {
         font-size: 16px;
         font-weight: bold;
         color: #000 !important;
         text-decoration: none !important;
         font-family: 'Inter', Arial, sans-serif !important;
         text-transform: uppercase;
         letter-spacing: 0.5px;
         display: block !important;
         opacity: 1 !important;
         visibility: visible !important;
         white-space: nowrap;
         overflow: hidden;
         text-overflow: ellipsis;
         max-width: 60%;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 20px;
        margin-top: 10px;
        padding: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: none;
        z-index: 1001;
    }
    
    .mobile-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .mobile-nav-links a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        padding: 12px 16px;
        border-radius: 12px;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .mobile-nav-links a:hover {
        background: rgba(0, 123, 255, 0.1);
        color: #007bff;
    }
    
    .mobile-nav-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
    
    .mobile-nav-buttons .login-btn {
        background: #000;
        color: white;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 25px;
        transition: all 0.3s ease;
        text-align: center;
        flex: 1;
        max-width: 150px;
    }
    
    .mobile-nav-buttons .login-btn:hover {
        background: #333;
        transform: translateY(-1px);
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-title::before {
        font-size: 36px;
        top: -55px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        padding: 0 15px;
    }
    
    .features-section {
        padding: 50px 6%;
    }
    
    .features-container {
        gap: 30px;
    }
    
    .features-title {
        font-size: 28px;
        margin-bottom: 50px;
    }
    
    .feature-display {
        height: 280px;
    }

    .engagement-container {
        padding: 40px 30px;
    }
    
    .engagement-content {
        gap: 40px;
    }
    
    .engagement-title {
        font-size: 36px;
    }
    
    .engagement-subtitle {
        font-size: 16px;
    }

    .cta-gradient-container {
        padding: 60px 40px;
    }
    
    .cta-gradient-title {
        font-size: 38px;
    }

    .showcase-slider {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .showcase-card {
        flex: 0 0 280px;
        height: 220px;
    }
    
    .showcase-card:hover {
        flex: 0 0 350px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
}

/* Mobile Landscape */
@media (max-width: 900px) {
    .navbar {
        position: absolute;
        left: 20px;
        right: 20px;
        padding: 12px 18px;
        border-radius: 25px;
        top: 20px;
        z-index: 1000;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 22px;
        cursor: pointer;
        color: #333;
        padding: 6px;
        border-radius: 6px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.1);
    }
    
    .hero-overlay {
        top: 52%;
    }
    
    .hero-title {
        font-size: 38px;
        white-space: normal;
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-title::before {
        font-size: 30px;
        top: -48px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .feature-display {
        max-width: 100%;
        height: 250px;
        margin: 0 auto;
    }
    
    .engagement-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .agent-hub-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Mobile Portrait - Primary Mobile Breakpoint */
@media (max-width: 768px) {
    .navbar {
        position: absolute;
        left: 15px;
        right: 15px;
        padding: 12px 20px;
        border-radius: 25px;
        top: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
    }
    
    .logo {
        font-size: 14px;
        order: 1;
        font-weight: bold;
        color: #000 !important;
        text-decoration: none !important;
        font-family: 'Inter', Arial, sans-serif !important;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 65%;
        flex-shrink: 0;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 2;
        margin-left: auto;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: #333;
        padding: 8px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(0, 0, 0, 0.1);
        transform: scale(1.1);
    }
    
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border-radius: 20px;
        margin-top: 10px;
        padding: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        display: none;
        z-index: 1001;
    }
    
    .mobile-menu.active {
        display: block;
        animation: slideDown 0.3s ease;
    }
    
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .mobile-nav-links a {
        color: #333;
        text-decoration: none;
        font-weight: 500;
        padding: 12px 16px;
        border-radius: 12px;
        transition: all 0.3s ease;
        text-align: center;
        font-size: 16px;
    }
    
    .mobile-nav-links a:hover {
        background: rgba(0, 123, 255, 0.1);
        color: #007bff;
        transform: translateX(5px);
    }
    
    .mobile-nav-buttons {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
    
    .mobile-nav-buttons .login-btn {
        background: #000;
        color: white;
        text-decoration: none;
        padding: 12px 24px;
        border-radius: 25px;
        transition: all 0.3s ease;
        text-align: center;
        flex: 1;
        max-width: 200px;
        font-weight: 600;
    }
    
    .mobile-nav-buttons .login-btn:hover {
        background: #333;
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .hero-overlay {
        top: 50%;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 24px;
        margin-bottom: 12px;
        white-space: normal;
        max-width: 100%;
        line-height: 1.2;
        text-align: center;
    }
    
    .hero-title::before {
        font-size: 18px;
        top: -32px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        white-space: nowrap;
    }
    
    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
        padding: 0 10px;
        text-align: center;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.3;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .hero-join-btn {
        padding: 12px 28px;
        font-size: 15px;
        display: inline-block;
    }
    
    .moving-images-section {
        padding: 25px 0 35px;
    }
    
    .moving-images-header {
        margin-bottom: 35px;
        text-align: center;
    }
    
    .moving-images-subtitle {
        font-size: 12px;
    }
    
    .moving-image-item {
        width: 90px;
        height: 55px;
    }
    
    .moving-images-container {
        gap: 12px;
    }
    
    .features-section {
        padding: 35px 5%;
        text-align: center;
    }
    
    .features-title {
        font-size: 24px;
        margin-bottom: 35px;
        line-height: 1.4;
        text-align: center;
        padding: 0 10px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .features-list {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .features-list li {
        padding: 12px 15px;
        margin-bottom: 12px;
    }
    
    .feature-title {
        font-size: 15px;
    }
    
    .feature-description {
        font-size: 12px;
    }
    
    .feature-display {
        height: 220px;
        max-width: 100%;
        margin: 0 auto;
    }

    .engagement-section {
        padding: 40px 4% 25px;
    }
    
    .engagement-container {
        padding: 25px 15px;
        border-radius: 20px;
        text-align: center;
    }
    
    .engagement-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .engagement-title {
        font-size: 24px;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .engagement-subtitle {
        font-size: 14px;
        text-align: center;
        max-width: 95%;
        margin: 0 auto 25px;
        line-height: 1.4;
    }
    
    .engagement-features {
        margin-bottom: 30px;
    }
    
    .engagement-feature {
        justify-content: flex-start;
        text-align: left;
        max-width: 100%;
        margin: 0 auto 15px;
        font-size: 14px;
        padding: 0 10px;
    }
    
    .feature-check {
        width: 20px;
        height: 20px;
        font-size: 12px;
        margin-right: 12px;
        flex-shrink: 0;
    }
    
    .book-demo-btn {
        padding: 12px 24px;
        font-size: 14px;
        margin: 0 auto;
        display: block;
        width: fit-content;
    }
    
    .engagement-right {
        gap: 15px;
    }
    
    .profile-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 15px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
        width: 90%;
    }
    
    .profile-avatar {
        width: 60px;
        height: 60px;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .profile-info h3 {
        font-size: 16px;
        margin-bottom: 3px;
    }
    
    .profile-info p {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .profile-location {
        font-size: 11px;
        margin-bottom: 8px;
    }
    
    .profile-icons {
        justify-content: center;
        gap: 6px;
    }
    
    .profile-icons span {
        font-size: 14px;
    }
    
    .leaderboard-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 15px;
        width: 90%;
    }
    
    .leaderboard-card h3 {
        font-size: 16px;
        margin-bottom: 15px;
        text-align: center;
    }
    
    .leaderboard-item {
        padding: 8px 0;
    }
    
    .leaderboard-avatar {
        width: 32px;
        height: 32px;
    }

    .showcase-section {
        padding: 50px 4% 40px;
        text-align: center;
    }
    
    .showcase-title {
        font-size: 28px;
        margin-bottom: 40px;
        line-height: 1.3;
        text-align: center;
        padding: 0 10px;
    }
    
    .showcase-slider {
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 0 5px;
    }
    
    .showcase-card {
        flex: none;
        width: 100%;
        max-width: 350px;
        height: 200px;
    }
    
    .showcase-card:hover {
        flex: none;
        width: 100%;
        max-width: 350px;
    }
    
    .showcase-card-overlay {
        padding: 25px 18px 18px;
        text-align: center;
    }
    
    .showcase-card-title {
        font-size: 18px;
    }
    
    .showcase-card-number {
        font-size: 26px;
    }

    .agent-hub-section {
        padding: 50px 4% 40px;
        text-align: center;
    }
    
    .agent-hub-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    
    .agent-hub-left {
        height: 250px;
    }
    
    .placeholder-item {
        padding: 20px;
        width: 100%;
        max-width: 320px;
        height: 220px;
        margin: 0 auto;
        text-align: center;
    }
    
    .placeholder-image {
        width: 140px;
        height: 80px;
    }
    
    .placeholder-item span {
        font-size: 13px;
        text-align: center;
    }
    
    .agent-hub-right h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .agent-hub-right p {
        font-size: 16px;
        text-align: center;
        max-width: 90%;
        margin: 0 auto 30px;
    }
    
    .learn-more-btn {
        margin: 0 auto;
        padding: 12px 25px;
        font-size: 15px;
        display: inline-flex;
    }

    .cta-gradient-section {
        padding: 40px 4%;
    }
    
    .cta-gradient-container {
        padding: 40px 25px;
        border-radius: 20px;
        text-align: center;
    }
    
    .cta-gradient-title {
        font-size: 28px;
        margin-bottom: 25px;
        line-height: 1.3;
        text-align: center;
    }
    
    .cta-gradient-btn {
        padding: 14px 28px;
        font-size: 15px;
        margin: 0 auto;
    }
    
    .footer {
        padding: 35px 20px 20px;
        text-align: center;
    }
    
    .footer-content {
        gap: 20px;
        text-align: center;
    }
    
    .footer-column h3 {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .footer-column ul li a {
        font-size: 13px;
    }
    
    .newsletter {
        padding: 20px;
        text-align: center;
    }
    
    .newsletter h3 {
        font-size: 15px;
    }
    
    .newsletter input {
        padding: 10px;
        font-size: 13px;
    }
    
    .newsletter button {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .social-icons a {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .navbar {
        left: 10px;
        right: 10px;
        padding: 10px 15px;
        top: 10px;
        border-radius: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 12px;
        order: 1;
        font-weight: bold;
        color: #000 !important;
        text-decoration: none !important;
        font-family: 'Inter', Arial, sans-serif !important;
        text-transform: uppercase;
        letter-spacing: 0.2px;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 70%;
        flex-shrink: 0;
    }
    
    .mobile-menu-toggle {
        order: 2;
        margin-left: auto;
        font-size: 18px;
    }
    
    .mobile-menu {
        padding: 15px;
        border-radius: 15px;
    }
    
    .mobile-nav-links {
        gap: 12px;
        margin-bottom: 15px;
    }
    
    .mobile-nav-links a {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .mobile-nav-buttons .login-btn,
    .mobile-nav-buttons .demo-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .hero-title::before {
        font-size: 16px;
        top: -28px;
    }
    
    .hero-subtitle {
        font-size: 11px;
        padding: 0 8px;
        margin-bottom: 18px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 98%;
    }
    
    .hero-join-btn {
        padding: 10px 22px;
        font-size: 13px;
    }
    
    .features-title {
        font-size: 18px;
        padding: 0 15px;
    }
    
    .features-list {
        max-width: 280px;
    }
    
    .features-list li {
        padding: 10px 12px;
    }
    
    .engagement-title {
        font-size: 22px;
    }
    
    .engagement-subtitle {
        font-size: 12px;
    }
    
    .engagement-feature {
        font-size: 13px;
        max-width: 260px;
    }
    
    .engagement-container {
        padding: 20px 12px;
        border-radius: 15px;
    }
    
    .engagement-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .engagement-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .engagement-features {
        margin-bottom: 25px;
    }
    
    .engagement-feature {
        font-size: 13px;
        margin-bottom: 12px;
        padding: 0 5px;
    }
    
    .feature-check {
        width: 18px;
        height: 18px;
        font-size: 11px;
        margin-right: 10px;
    }
    
    .book-demo-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .profile-card {
        padding: 12px;
        max-width: 100%;
        flex-direction: column;
        gap: 12px;
        width: 85%;
        margin: 0 auto;
    }
    
    .profile-avatar {
        width: 50px;
        height: 50px;
    }
    
    .profile-info h3 {
        font-size: 14px;
    }
    
    .profile-info p {
        font-size: 12px;
    }
    
    .profile-location {
        font-size: 10px;
    }
    
    .profile-icons span {
        font-size: 13px;
    }
    
    .leaderboard-card {
        padding: 12px;
        max-width: 100%;
        width: 85%;
        margin: 0 auto;
    }
    
    .leaderboard-card h3 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .leaderboard-item {
        padding: 6px 0;
    }
    
    .leaderboard-avatar {
        width: 28px;
        height: 28px;
        margin-right: 8px;
    }
    
    .leaderboard-info .name {
        font-size: 12px;
    }
    
    .leaderboard-info .role {
        font-size: 10px;
    }
    
    .points {
        font-size: 12px;
    }
    
    .badge {
        font-size: 14px;
    }
    
    .profile-card,
    .leaderboard-card {
        padding: 15px;
        max-width: 280px;
    }
    
    .showcase-title {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .showcase-card {
        max-width: 280px;
        height: 170px;
    }
    
    .agent-hub-right h2 {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .agent-hub-right p {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .placeholder-item {
        padding: 18px;
        height: 190px;
        max-width: 260px;
    }
    
    .placeholder-image {
        width: 110px;
        height: 65px;
    }
    
    .cta-gradient-title {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .cta-gradient-container {
        padding: 25px 18px;
    }
    
    .footer {
        padding: 22px 12px 12px;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .navbar {
        padding: 5px 8px;
    }
    
    .logo {
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 22px;
    }
    
    .hero-title::before {
        font-size: 18px;
        top: -32px;
    }
    
    .hero-subtitle {
        font-size: 12px;
    }
    
    .engagement-container {
        padding: 15px 8px;
        border-radius: 12px;
    }
    
    .engagement-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .engagement-subtitle {
        font-size: 12px;
        margin-bottom: 18px;
    }
    
    .engagement-feature {
        font-size: 12px;
        margin-bottom: 10px;
        padding: 0 3px;
    }
    
    .feature-check {
        width: 16px;
        height: 16px;
        font-size: 10px;
        margin-right: 8px;
    }
    
    .book-demo-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .profile-card {
        padding: 10px;
        gap: 10px;
        width: 90%;
        margin: 0 auto;
    }
    
    .profile-avatar {
        width: 45px;
        height: 45px;
    }
    
    .profile-info h3 {
        font-size: 13px;
    }
    
    .profile-info p {
        font-size: 11px;
    }
    
    .profile-location {
        font-size: 9px;
    }
    
    .profile-icons span {
        font-size: 12px;
    }
    
    .leaderboard-card {
        padding: 10px;
        width: 90%;
        margin: 0 auto;
    }
    
    .leaderboard-card h3 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .leaderboard-item {
        padding: 5px 0;
    }
    
    .leaderboard-avatar {
        width: 25px;
        height: 25px;
        margin-right: 6px;
    }
    
    .leaderboard-info .name {
        font-size: 11px;
    }
    
    .leaderboard-info .role {
        font-size: 9px;
    }
    
    .points {
        font-size: 11px;
    }
    
    .badge {
        font-size: 12px;
    }
    
    .features-title {
        font-size: 16px;
    }
    
    .engagement-title {
        font-size: 18px;
    }
    
    .showcase-title {
        font-size: 18px;
    }
    
    .agent-hub-right h2 {
        font-size: 18px;
    }
    
    .cta-gradient-title {
        font-size: 18px;
    }
    
    .showcase-card {
        max-width: 260px;
        height: 160px;
    }
    
    .placeholder-item {
        height: 180px;
    }
    
    .placeholder-image {
        width: 100px;
        height: 60px;
    }
}


