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

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    background: #fafafa;
    min-height: 100vh;
    padding: 0px 0px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background: white;
}

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 1.5rem 4rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.logo svg {
    width: 20px;
    height: 20px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #718096;
    font-size: 0.95rem;
    font-weight: 400;
}

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

.btn-consultation {
    background: #000;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 4rem;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

/* Left Side *
.left-side {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
}

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

.stats-box {
    background: white;
    border-radius: 25px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stats-number {
    font-size: 4rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.stats-label {
    margin-top: 1rem;
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.4;
}

.avatars-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.avatar-row {
    display: flex;
    gap: 1rem;
}

.avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.add-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px dashed #cbd5e0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #cbd5e0;
    cursor: pointer;
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
}

.grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.card {
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.green-card {
    background: linear-gradient(135deg, #a3d9a5 0%, #7bc67e 100%);
}

.green-card .big-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.green-card .subtitle {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    line-height: 1.3;
}

.pink-card {
    background: linear-gradient(135deg, #ffb6c1 0%, #ffa0ab 100%);
}

.icon-group {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.small-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.pink-card .card-text {
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
}

.video-card {
    background: linear-gradient(135deg, #b8d4c8 0%, #9ac4b3 100%);
    border-radius: 25px;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}

.selfie-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 15px solid #1a202c;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.coral-card {
    background: linear-gradient(135deg, #ffb8a3 0%, #ffa58f 100%);
    grid-column: span 2;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    color: white;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Right Side *
.right-side {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 2rem;
}

.main-heading {
    font-size: 5.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.content-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 2rem 2.5rem;
}

.info-subtitle {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.info-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.3;
}

.phone-mockup {
    background: white;
    border-radius: 35px;
    padding: 1.2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 280px;
}

.phone-screen {
    background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    min-height: 400px;
    position: relative;
}

.phone-header {
    color: #5c6bc0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.phone-content {
    background: white;
    border-radius: 20px;
    height: 250px;
    position: relative;
}

.location-pin {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: #ff6b9d;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .main-heading {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links {
        display: none;
    }

    .left-side {
        grid-template-columns: 1fr;
    }

    .main-heading {
        font-size: 3rem;
    }
} */

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

body {
    font-family:
        -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
        Arial, sans-serif;
    background: #fafafa;
    min-height: 100vh;
    padding: 0px 0px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 4rem;
}

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

/* Left Side */
.left-side {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
}

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

.stats-box {
    background: white;
    border-radius: 25px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stats-number {
    font-size: 4rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.stats-label {
    margin-top: 1rem;
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.4;
}

.avatars-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 1rem;
}

.avatar-row {
    display: flex;
    gap: 1rem;
}

.avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.add-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px dashed #cbd5e0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #cbd5e0;
    cursor: pointer;
}

.cards-grid {
    display: grid;
    gap: 1.5rem;
}

.grid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.card {
    border-radius: 25px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.green-card {
    background: linear-gradient(135deg, #a3d9a5 0%, #7bc67e 100%);
}

.green-card .big-number {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.green-card .subtitle {
    margin-top: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.85rem;
    line-height: 1.3;
}

.pink-card {
    background: linear-gradient(135deg, #ffb6c1 0%, #ffa0ab 100%);
}

.icon-group {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.small-icon {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.pink-card .card-text {
    color: white;
    font-size: 0.95rem;
    line-height: 1.4;
}

.video-card {
    background: linear-gradient(135deg, #b8d4c8 0%, #9ac4b3 100%);
    border-radius: 25px;
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
}

.selfie-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    color: white;
    font-size: 0.9rem;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-icon {
    width: 0;
    height: 0;
    border-left: 15px solid #1a202c;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 4px;
}

.coral-card {
    background: linear-gradient(135deg, #ffb8a3 0%, #ffa58f 100%);
    grid-column: span 2;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 15px;
    color: white;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Right Side */
.right-side {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding-left: 2rem;
}

.main-heading {
    font-size: 5.5rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1;
}

.content-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    padding: 2rem 2.5rem;
}

.info-subtitle {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.info-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a202c;
    line-height: 1.3;
}

.phone-mockup {
    background: white;
    border-radius: 35px;
    padding: 1.2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 280px;
}

.phone-screen {
    background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);
    border-radius: 25px;
    padding: 2rem 1.5rem;
    min-height: 400px;
    position: relative;
}

.phone-header {
    color: #5c6bc0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.phone-content {
    background: white;
    border-radius: 20px;
    height: 250px;
    position: relative;
}

.location-pin {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    background: #ff6b9d;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(255, 107, 157, 0.4);
}

@media (max-width: 1200px) {
    .main-grid {
        grid-template-columns: 1fr;
    }

    .main-heading {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .left-side {
        grid-template-columns: 1fr;
    }

    .main-heading {
        font-size: 3rem;
    }
}
