/* Base Styles */
:root {
    --primary-color: #0d6efd;
    --primary-hover: #0b5ed7;
    --text-main: #051645;
    --text-muted: #6c757d;
    --bg-light: #F5F8FF;
    --bg-dark: #071526;
    --white: #ffffff;
    --border-color: #e9ecef;
    --success: #00c853;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: var(--text-main);
}

h3 {
    font-size: 1.25rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

p {
    color: var(--text-muted);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

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

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.badge-text {
    display: block;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, #2563eb 0%, #2563eb 75%, #06b6d4 100%);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #1d4ed8 0%, #1d4ed8 75%, #0891b2 100%);
    border: none;
}

.btn-outline {
    background-color: var(--white);
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.btn-outline:hover {
    background-color: var(--bg-light);
}

.btn-white {
    background-color: var(--white);
    color: var(--text-main);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.btn-white:hover {
    background-color: var(--bg-light);
}

/* Header */
.site-header {
    padding: 1.5rem 0;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo img, .footer-logo img {
    height: 32px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

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

.nav-links a {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s, border-color 0.2s;
    padding-top: 6px;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

.nav-links a.active {
    border-bottom-color: var(--text-main);
}

.nav-links .dropdown a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-link {
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

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

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    border-radius: 2px;
}

.hero {
    padding: 3.5rem 0;
    background: linear-gradient(180deg, #eef4ff 0%, #ffffff 75%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-content br, .interaction-content br, .collaboration-content br, .section-header br {
    display: none;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-wrap: wrap;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-features svg {
    background-color: #f1f5f9;
    border-radius: 50%;
    padding: 3px;
    width: 18px;
    height: 18px;
}

.media-rounded {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.hero-media-wrapper {
    position: relative;
    width: 100%;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    display: block;
    aspect-ratio: 4/3;
}

.hero-overlay-media {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
    border: 5px solid var(--white);
    background-color: var(--white);
    z-index: 10;
}

.hero-overlay-media video, 
.hero-overlay-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Stats Section */
.stats {
    padding: 2rem 0 5rem;
}

.stats-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.stat-item {
    text-align: left;
    flex: 1;
    padding: 0 1rem;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.stat-item h3.infinity-icon {
    font-size: 3.5rem;
    line-height: 0.5;
    padding-top: 0.5rem;
    font-weight: 400; /* Lighter weight so it doesn't look too chunky when scaled up */
}

.stat-item p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: var(--border-color);
}

/* Interaction Section */
.interaction {
    padding: 3.5rem 0;
    background-color: var(--bg-light);
}

.interaction-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.interaction-content .subtitle {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #667085;
    line-height: 1.6;
}

.card-container-collage {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.collage-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.media-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.media-stat-box {
    background-color: #f4f7fb; /* Very light blue/gray matching the image */
    padding: 1rem;
    border-radius: 12px;
}

.media-stat-box h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.media-stat-box p {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-color);
}

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

.icon-box-plain {
    width: 48px;
    height: 48px;
    background-color: #E8F0FE;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0;
}

.icon-box-plain svg {
    width: 20px;
    height: 20px;
}

.feature-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #051645;
    margin-bottom: 0.25rem;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: #667085;
}

/* Collaboration Section */
.collaboration {
    padding: 3.5rem 0;
}

.collaboration-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tag-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tag {
    padding: 0.5rem 1.25rem;
    background-color: #f4f7fb;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
}

.collaboration-media {
    padding: 0;
    background: transparent;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collaboration-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.orbit-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.center-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.2;
    z-index: 10;
}

.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed rgba(255,255,255,0.2);
    border-radius: 50%;
}

.ring-1 { width: 160px; height: 160px; }
.ring-2 { width: 240px; height: 240px; }
.ring-3 { width: 320px; height: 320px; }

.node {
    position: absolute;
    background-color: var(--white);
    color: var(--text-main);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 5;
}

.node-bakery { top: 10%; left: 10%; }
.node-hotel { top: 20%; right: 0%; }
.node-boutique { bottom: 15%; left: 5%; }
.node-restaurant { bottom: 10%; right: 10%; }

.dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: #00c853;
    border-radius: 50%;
}

.dot-1 { top: 25%; left: 40%; }
.dot-2 { top: 35%; right: 25%; }
.dot-3 { bottom: 30%; left: 30%; }
.dot-4 { bottom: 20%; right: 35%; }

/* Features Grid Section */
.features-grid-section {
    padding: 3.5rem 0;
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 3rem;
}

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

.grid-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
}

.grid-card .icon-wrapper {
    width: 52px;
    height: 52px;
    background-color: #E8F0FE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.grid-card .icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.grid-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.grid-card p {
    font-size: 0.85rem;
    color: #667085;
    margin-bottom: 0;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 3.5rem 0;
}

.cta-card {
    background: linear-gradient(90deg, #091e39 0%, #091e39 40%, #0d3163 70%, #007c7f 100%);
    border-radius: 24px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 2.2rem;
    font-weight: 600;
}

.cta-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 0;
    font-size: 1.125rem;
}

.cta-actions {
    display: flex;
    gap: 1.25rem;
    flex-shrink: 0;
}

.cta-actions .btn {
    padding: 0.875rem 1.75rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

/* App Download Section */
.app-download {
    padding: 3rem 0;
    border-bottom: 1px solid var(--border-color);
}

.app-download-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.app-text h3 {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.app-text p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #667085;
}

.app-buttons {
    display: flex;
    gap: 1.25rem;
}

.app-buttons img {
    height: 52px;
}

/* Footer */
.site-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    margin-top: 1.5rem;
    font-size: 0.875rem;
    max-width: 300px;
}

.footer-links h4 {
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--white);
    font-size: 0.875rem;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.footer-bottom p {
    margin: 0;
    color: inherit;
    font-size: inherit;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
        margin-top: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .hero-inner, .interaction-inner, .collaboration-inner {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-content { order: 1; }
    .hero-media-wrapper { order: 2; }
    
    .interaction-content { order: 1; }
    .interaction-media { order: 2; }
    
    .collaboration-content { order: 1; }
    .collaboration-media { order: 2; }
    
    .hero-overlay-media {
        width: 50%;
    }
    
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-card {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 1 1 45%;
        text-align: center;
        padding: 1rem 0;
    }
    
    .stats-card > .stat-item:nth-child(1),
    .stats-card > .stat-item:nth-child(3) {
        border-bottom: 1px solid var(--border-color);
    }
    
    .cta-card {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    

    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .app-download-inner {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        flex: 1 1 100%;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .collaboration-media {
        padding: 1.5rem;
        min-height: 300px;
    }
    
    .orbit-container {
        transform: scale(0.8);
    }
    
    .hero-overlay-media {
        bottom: -15px;
        left: -15px;
        width: 55%;
        border-width: 3px;
    }
}
