/* =============================================
   MIXLAND - CSS STYLESHEET
   ============================================= */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    color: #1a1a2e;
    overflow-x: hidden;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 50px;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #1a1a2e;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.login-btn {
    text-decoration: none;
    color: #1a1a2e;
    font-size: 15px;
    font-weight: 500;
}

.get-started-btn {
    background: #2563eb;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s;
}

.get-started-btn:hover {
    background: #1d4ed8;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px 120px;
    gap: 60px;
}

.hero-left {
    flex: 1;
    max-width: 550px;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    color: #1a1a2e;
    margin-bottom: 24px;
}

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

.signup-form {
    display: flex;
    gap: 0;
    width: 80%;
    margin-bottom: 20px;
}

.signup-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 6px 0 0 6px;
    font-size: 15px;
    outline: none;
    background: white;
}

.signup-form input::placeholder {
    color: #9ca3af;
}

.signup-form button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 16px 64px;
    border-radius: 0 6px 6px 0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.signup-form button:hover {
    background: #1d4ed8;
}

.hero-features {
    display: flex;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.check-icon {
    width: 18px;
    height: 18px;
    background: #2563eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
}

.hero-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 550px;
}

.yellow-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: #fbbf24;
    border-radius: 50%;
    z-index: 0;
}

.shape-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape-1,
.shape-2,
.shape-3 {
    position: absolute;
    border: white solid 4px;
    z-index: 2;
    border-radius: 50%;
}

.shape-1 {
    width: 85%;
    height: 85%;
    top: 50%;
    left: 50%;
    transform: translate(-55%, -50%);
    opacity: 0.3;
}

.shape-2 {
    width: 75%;
    height: 75%;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -50%);
    opacity: 0.3;
}

.shape-3 {
    width: 60%;
    height: 60%;
    top: 50%;
    left: 50%;
    transform: translate(-65%, -50%);
    opacity: 0.3;
}

.dashboard-container {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 24px;
    max-width: 600px;
    max-height: 600px;
    padding: 0 8px 13px 0;

    margin-right: 0px;
    margin-left: auto;
    z-index: 3;
    transform: rotate(-8deg);
}

.card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.chart-card {
    grid-column: 2 / 8;
    grid-row: 2 / 8;
    padding: 24px;
    overflow: hidden;
    position: relative;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-title {
    font-size: 13px;
    font-weight: 600;
    color: #9ca3af;
}

.chart-svg {
    width: 100%;
    height: 200px;
}

.chart-tooltip {
    position: absolute;
    background: #1a1a2e;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(10px);
    z-index: 10;
    white-space: nowrap;
}

.chart-tooltip::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1a1a2e;
}

.chart-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

.time-card {
    grid-column: 8 / 11;
    grid-row: 3 / 6;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.time-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: bold;
    color: #4b5563;
    font-family: Rubik, sans-serif;
}

.time-icon {
    width: 32px;
    height: 32px;
    background: #3D4ABA;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.time-value {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
}

.time-value span {
    font-size: 18px;
    font-weight: 500;
    color: #9ca3af;
}

.tasks-card-hidden {
    grid-column: 1 / 13;
    grid-row: 1 / 13;
    border-radius: 100%;
    gap: 24px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    overflow: hidden;
}

.tasks-card {
    margin-left: 20px;
    grid-column: 8 / 13;
    grid-row: 6 / 11;
}

.tasks-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 16px;
}

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

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

.task-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.task-checkbox.checked {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
    font-size: 12px;
}

.task-info {
    flex: 1;
}

.task-name {
    font-size: 13px;
    font-weight: 500;
    color: #1a1a2e;
}

.task-time {
    font-size: 11px;
    color: #9ca3af;
}

.task-progress {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    border: 4px solid #8b5cf6;
}

.task-progress img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.progress-orange {
    border: 4px solid #f97316;
}

.progress-green {
    border: 4px solid #22c55e;
}

.todo-card {
    grid-column: 1 / 5;
    grid-row: 8 / 11;
}

.todo-card h4 {
    font-size: 13px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0px;
}

.todo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.todo-icon {
    width: 22px;
    height: 22px;
    background: #fef3c7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f59e0b;
    font-size: 12px;
}

.todo-icon img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.todo-info {
    flex: 1;
}

.todo-name {
    font-size: 11px;
    font-weight: 500;
    color: #1a1a2e;
}

.todo-date {
    font-size: 9px;
    color: #9ca3af;
}

.todo-time {
    font-size: 10px;
    color: #6b7280;
    background-color: #FFF8E8;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
}

.completed-card {
    grid-column: 5 / 8;
    grid-row: 8 / 11;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.completed-card .task-completed {
    display: flex;
    align-items: center;
    gap: 8px;
}

.completed-badge {
    background: #07E092;
    border-radius: 8px;
    display: flex;
    min-width: 30px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.completed-badge img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.completed-label {
    font-size: 14px;
    color: #4b5563;
    font-weight: 500;
}

.completed-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
}

.chart-body {
    display: flex;
    gap: 6px;
    height: 190px;
    margin-top: 4px;
}

.chart-y-labels {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 40px;
    opacity: 0;
    animation: chartFadeUp 0.5s ease forwards 0.3s;
}

.chart-y-labels span {
    font-size: 9px;
    color: #9ca3af;
    text-align: right;
    white-space: nowrap;
}

.chart-plot {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chart-grid {
    position: absolute;
    inset: 0 0 22px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
    opacity: 0;
    animation: chartFadeUp 0.4s ease forwards 0.1s;
}

.cg-line {
    width: 100%;
    height: 1px;
    background: #f3f4f6;
}

.chart-columns {
    display: flex;
    align-items: flex-end;
    flex: 1;
    gap: 3px;
    padding-bottom: 22px;
}

.chart-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    height: 100%;
}

.chart-bar-wrap {
    flex: 1;
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.chart-bar {
    width: 100%;
    height: var(--h);
    background: #dbeafe;
    border-radius: 4px 4px 0 0;
    transform: scaleY(0);
    transform-origin: bottom;
    animation: growBar 0.75s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
    position: relative;
}

@keyframes growBar {
    to {
        transform: scaleY(1);
    }
}

.active-bar {
    background: #e0e5ec;
}

.bar-glow {
    position: absolute;
    top: -13px;
    left: 50%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #fbbf24;
    opacity: 0;
    transform: translateX(-50%);
    animation: glowPulse 2s ease-in-out 2.3s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.15;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.30;
        transform: translateX(-50%) scale(1.35);
    }
}

.bar-dot {
    position: absolute;
    top: -6px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #fbbf24;
    border: 2.5px solid white;
    transform: translateX(-50%) scale(0);
    opacity: 0;
    animation: popDot 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2.2s;
    cursor: pointer;
    z-index: 2;
    transition: transform 0.2s;
}

.bar-dot.hovered {
    transform: translateX(-50%) scale(1.35);
}

@keyframes popDot {
    to {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

.bar-hover {
    position: absolute;
    top: -18px;
    left: 50%;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    z-index: 3;
}

.col-label {
    font-size: 9px;
    color: #9ca3af;
    margin-top: 5px;
    height: 16px;
    opacity: 0;
    white-space: nowrap;
    animation: chartFadeUp 0.5s ease forwards;
}

.active-label {
    color: #1a1a2e;
    font-weight: 700;
}

@keyframes chartFadeUp {
    from {
        opacity: 0;
        transform: translateY(4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============================================
   FEATURE SECTION - Cards
   ============================================= */
.feature-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px 80px;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.top-clients-card .card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2B59FF;
    margin-bottom: 20px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #CFD1D6;
    flex-shrink: 0;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.client-location {
    font-size: 12px;
    color: #94a3b8;
}

.client-status {
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.status-active {
    background: #eff6ff;
    color: #3b82f6;
}

.status-pending {
    background: #fffbeb;
    color: #FFB648;
}

.feedback-card .feedback-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.feedback-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.feedback-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    flex-shrink: 0;
}

.feedback-user {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.feedback-time {
    font-size: 11px;
    color: #94a3b8;
}

.feedback-text {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 8px;
}

.feedback-reply {
    font-size: 12px;
    color: #2563eb;
    font-weight: 500;
    cursor: pointer;
}

.progress-card .card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 24px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-label {
    font-size: 14px;
    color: #475569;
}

.progress-value {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
}

.progress-purple {
    background: #D459E8;
}

.progress-green {
    background: #46BD84;
}

.progress-blue {
    background: #08A0F7;
}

.bottom-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    text-align: center;
}

.bottom-feature h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.bottom-feature p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* =============================================
   CONTENT SECTION 1
   ============================================= */
.content-1-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 120px;
}

.content-1-left {
    flex: 1;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px;
    width: 550px;
}

.yellow-circle-bg {
    position: absolute;
    width: 550px;
    height: 550px;
    background: #fbbf24;
    border-radius: 50%;
    z-index: 0;
}

.tasks-grid-3 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    width: 400px;
    position: relative;
}

.card-3 {
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.main-card-3 {
    grid-column: 1 / 12;
    grid-row: 1 / 13;
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.main-header {
    display: flex;
}

.main-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.see-all {
    font-size: 13px;
    color: #9ca3af;
    cursor: pointer;
}

.task-item-3 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    background-color: #F8F8F8;
    border-radius: 16px;
    border-bottom: 1px solid #f3f4f6;
}

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

.task-icon-3 {
    width: 44px;
    height: 44px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.task-icon-3 img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.icon-purple {
    background: #9B51E0;
}

.icon-orange {
    background: #FFA656;
}

.icon-pink {
    background: #FD5B71;
}

.icon-green {
    background: #07E092;
}

.task-details-3 {
    flex: 1;
}

.task-name-3 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.task-tags-3 {
    display: flex;
    gap: 8px;
}

.task-tag-3 {
    font-size: 11px;
    padding: 8px;
    border-radius: 4px;
    font-weight: 500;
}

.tag-work {
    background: #FFEFF1;
    color: #FD5B71;
}

.tag-project {
    background: #F5EEFC;
    color: #9B51E0;
}

.tag-personal {
    background: #f1f5f9;
    color: #828282;
}

.tag-workout {
    background: #FEF5ED;
    color: #FFA656;
}

.tag-coding {
    background: #FFEFF1;
    color: #FD5B71;
}

.tag-reading {
    background: #E6FCF4;
    color: #07E092;
}

.task-time-3 {
    font-size: 12px;
    color: #6b7280;
    display: flex;
    padding: 4px 8px;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.play-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 10px;
    cursor: pointer;
}

.play-btn img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.floating-card-1 {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    right: -30px;
    top: 100px;
    width: 210px;
    z-index: 2;
}

.floating-card-2 {
    display: flex;
    align-items: center;
    gap: 12px;
    position: absolute;
    right: -80px;
    top: 200px;
    width: 210px;
    z-index: 2;
}

.floating-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.floating-icon img {
    width: 65%;
    height: 65%;
    object-fit: contain;
}

.floating-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.content-1-right {
    flex: 1;
    max-width: 480px;
}

.content-1-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.content-1-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* =============================================
   CONTENT SECTION 2
   ============================================= */
.content-2-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 80px;
}

.content-2-left {
    flex: 1;
    max-width: 480px;
}

.content-2-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 28px;
}

.content-2-text {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-2-right {
    display: grid;
    max-width: 500px;
    max-height: 390px;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 20px;
    width: 700px;
    height: 500px;
}

.tasks-card-2 {
    grid-column: 1 / 8;
    grid-row: 3 / 13;
}

.tasks-card-2 h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 20px;
}

.task-item-2 {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f3f4f6;
}

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

.task-item-2 .task-progress img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.weekly-card {
    grid-column: 8 / 15;
    grid-row: 1 / 7;
    display: flex;
    flex-direction: column;
}

.weekly-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.weekly-title {
    font-size: 11px;
    font-weight: 600;
    color: #1a1a2e;
}

.weekly-dots {
    color: #d1d5db;
    font-size: 16px;
    letter-spacing: 2px;
}

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

.circle-progress {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.circle-chart {
    width: 100px;
    height: 100px;
    position: relative;
}

.circle-chart svg {
    transform: rotate(100deg);
}

.circle-bg {
    fill: none;
    stroke: #f3f4f6;
    stroke-width: 6;
}

.circle-fill {
    fill: none;
    stroke: #22c55e;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 62.8;
}

.circle-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.circle-percent {
    font-size: 22px;
    font-weight: 700;
    color: #22c55e;
}

.circle-label {
    font-size: 9px;
    color: #9ca3af;
}

.statistic-card {
    grid-column: 8 / 15;
    grid-row: 7 / 13;
    display: flex;
    flex-direction: column;
}

.statistic-title {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.statistic-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 12px;
    position: relative;
    padding-left: 24px;
}

.chart-y-axis {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 9px;
    color: #9ca3af;
}

.bar-group {
    display: flex;
    gap: 8px;
    position: relative;
    align-items: flex-end;
    z-index: 1;
}

.bar {
    width: 5px;
    border-radius: 3px 3px;
}

.bar-blue {
    background: #6366f1;
}

.bar-black {
    background: #1a1a2e;
}

.statistic-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    padding-left: 24px;
}

.stat-label {
    font-size: 9px;
    color: #9ca3af;
}

.stat-label.active {
    background: #1a1a2e;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
}

/* =============================================
   TESTIMONIAL SECTION
   ============================================= */
.testimonial-section {
    background: #2563eb;
    padding: 80px 40px 60px;
    position: relative;
    overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: white;
    border-radius: 0 0 50% 50%;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-title-white {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
}

.testimonial-card {
    padding: 40px 32px;
    position: relative;
}

.testimonial-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #e5e7eb;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #cbd5e1;
    margin-bottom: 24px;
}

.testimonial-quote {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 13px;
    color: #6b7280;
}

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

.trusted-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    opacity: 0.9;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 5px;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-align: end;
}

.logo-paperz .logo-icon {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #2563eb;
}

.logo-dorfus .logo-name {
    font-family: Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
}

.logo-martino .logo-icon {
    display: flex;
    gap: 2px;
}

.logo-martino .bar {
    width: 5px;
    height: 22px;
    background: white;
    transform: skewY(20deg);
}

.logo-square .logo-icon {
    width: 24px;
    height: 24px;
    border: 6px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-gobona {
    display: flex;
    gap: 20px;
}

.logo-gobona .logo-icon {
    display: flex;
    gap: 1px;
    transform: rotate(45deg);
}

.logo-gobona .bar {
    width: 4px;
    height: 20px;
    background: white;
}

.logo-gobona .bar:nth-child(even) {
    transform: translateY(-8px);
}

/* =============================================
   BLOG SECTION
   ============================================= */
.blog-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 40px 80px;
}

.blog-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.blog-subtitle {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 450px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.blog-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-image {
    width: 100%;
    height: 320px;
    background: #c4c8ce;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.blog-date {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    color: #1a1a2e;
    max-width: 380px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: #fbbf24;
    padding: 100px 40px 80px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -10%;
    right: -10%;
    height: 160px;
    background: white;
    border-radius: 0 0 50% 50%;
}

.wave-decoration {
    position: absolute;
    left: -100px;
    top: 20%;
    width: 500px;
    height: 400px;
    opacity: 0.15;
    pointer-events: none;
}

.wave-line {
    position: absolute;
    border: 4px solid white;
    border-radius: 50%;
}

.wave-1 {
    width: 400px;
    height: 400px;
    top: -60%;
    left: -6%;
}

.wave-2 {
    width: 480px;
    height: 480px;
    top: -70%;
    left: -12%;
}

.wave-3 {
    width: 560px;
    height: 560px;
    top: -80%;
    left: -18%;
}

.wave-4 {
    width: 640px;
    height: 640px;
    top: -90%;
    left: -24%;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.cta-form {
    display: flex;
    background: white;
    border-radius: 12px;
    padding: 6px;
    max-width: 480px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    color: #1a1a2e;
}

.cta-form input::placeholder {
    color: #9ca3af;
}

.cta-form button {
    background: #111827;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    white-space: nowrap;
}

.cta-form button:hover {
    background: #1f2937;
}

.cta-disclaimer {
    font-size: 14px;
    color: #374151;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-section {
    background: #ffffff;
    padding: 80px 40px 30px;
}

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

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

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.live-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s;
}

.live-chat-btn:hover {
    background: #1d4ed8;
}

.chat-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
}

.chat-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: #4b5563;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2563eb;
}

.footer-links a.highlight {
    color: #2563eb;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid #e5e7eb;
}

.copyright {
    font-size: 13px;
    color: #6b7280;
}

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

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s;
}

.social-icon img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.social-twitter {
    background: #f3f4f6;
    color: #1a1a2e;
}

.social-facebook {
    background: #2563eb;
    color: white;
}

.social-instagram {
    background: #f3f4f6;
    color: #1a1a2e;
}

.social-github {
    background: #f3f4f6;
    color: #1a1a2e;
}

/* =============================================
   RESPONSIVE - LARGE DESKTOP (1200px - 1400px)
   ============================================= */
@media (max-width: 1400px) {
    .navbar {
        padding: 20px 40px;
    }

    .hero {
        padding: 60px 40px 100px;
    }

    .yellow-circle {
        width: 500px;
        height: 500px;
    }

    .dashboard-grid {
        max-width: 520px;
        max-height: 520px;
    }
}

/* =============================================
   RESPONSIVE - MEDIUM DESKTOP (992px - 1200px)
   ============================================= */
@media (max-width: 1200px) {
    .navbar {
        padding: 18px 30px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero {
        padding: 50px 30px 80px;
        gap: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .yellow-circle {
        width: 420px;
        height: 420px;
    }

    .dashboard-grid {
        max-width: 440px;
        max-height: 440px;
        gap: 16px;
    }

    .cards-container {
        gap: 16px;
    }

    .content-1-section {
        gap: 60px;
        padding: 80px 30px;
    }

    .content-1-left {
        width: 460px;
        height: 460px;
    }

    .yellow-circle-bg {
        width: 460px;
        height: 460px;
    }

    .content-2-section {
        gap: 40px;
        padding: 80px 30px;
    }

    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 30px;
    }

    .footer-main .footer-column:last-child {
        display: none;
    }
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */

/* --- Base states (invisible before entering viewport) --- */
[data-reveal] {
    opacity: 0;
    transition-property: opacity, transform;
    transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
    transition-duration: 0.75s;
    will-change: opacity, transform;
}

[data-reveal="up"] {
    transform: translateY(48px);
}

[data-reveal="down"] {
    transform: translateY(-32px);
}

[data-reveal="left"] {
    transform: translateX(-60px);
}

[data-reveal="right"] {
    transform: translateX(60px);
}

[data-reveal="scale"] {
    transform: scale(0.88);
}

[data-reveal="fade"] {
    transform: none;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-stagger]>* {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

[data-stagger].is-visible>*:nth-child(1) {
    transition-delay: 0.05s;
}

[data-stagger].is-visible>*:nth-child(2) {
    transition-delay: 0.15s;
}

[data-stagger].is-visible>*:nth-child(3) {
    transition-delay: 0.25s;
}

[data-stagger].is-visible>*:nth-child(4) {
    transition-delay: 0.35s;
}

[data-stagger].is-visible>*:nth-child(5) {
    transition-delay: 0.45s;
}

[data-stagger].is-visible>*:nth-child(6) {
    transition-delay: 0.55s;
}

[data-stagger].is-visible>* {
    opacity: 1;
    transform: translateY(0);
}

.count-up {
    display: inline-block;
}

.progress-fill {
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.progress-fill.is-visible {
    transform: scaleX(1);
}

.circle-fill {
    stroke-dasharray: 251.2;
    stroke-dashoffset: 251.2;
    transition: stroke-dashoffset 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.circle-fill.is-visible {
    stroke-dashoffset: 62.8;
    /* 75% filled: 251.2 * 0.25 */
}

/* =============================================
   RESPONSIVE - TABLET  (768px - 992px)
   ============================================= */
@media (max-width: 992px) {
    .navbar {
        padding: 16px 24px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero {
        flex-direction: column;
        padding: 40px 24px 60px;
        gap: 50px;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-title {
        font-size: 42px;
    }

    .signup-form {
        width: 100%;
        max-width: 480px;
        margin: 0 auto 20px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        min-height: 420px;
    }

    .yellow-circle {
        width: 380px;
        height: 380px;
    }

    .dashboard-grid {
        max-width: 380px;
        max-height: 380px;
        gap: 12px;
    }

    .cards-container {
        grid-template-columns: 1fr 1fr;
    }

    .cards-container .feature-card:last-child {
        grid-column: 1 / -1;
    }

    .bottom-features {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .content-1-section {
        flex-direction: column;
        gap: 50px;
        padding: 60px 24px;
        align-items: center;
    }

    .content-1-left {
        width: 380px;
        height: 380px;
    }

    .yellow-circle-bg {
        width: 380px;
        height: 380px;
    }

    .tasks-grid-3 {
        width: 320px;
    }

    .floating-card-1 {
        right: -20px;
        top: 60px;
        width: 180px;
    }

    .floating-card-2 {
        right: -50px;
        top: 150px;
        width: 180px;
    }

    .content-1-right {
        max-width: 100%;
        text-align: center;
    }

    .content-2-section {
        flex-direction: column;
        gap: 50px;
        padding: 60px 24px;
    }

    .content-2-left {
        max-width: 100%;
        text-align: center;
    }

    .content-2-right {
        width: 100%;
        max-width: 500px;
        height: 450px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 10%;
        right: 10%;
        width: auto;
        height: 1px;
    }

    .logos-row {
        gap: 32px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-card-title {
        max-width: 100%;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .footer-main .footer-column:last-child {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* =============================================
   RESPONSIVE - TABLET PORTRAIT (600px - 768px)
   ============================================= */
@media (max-width: 768px) {

    .nav-links {
        display: none;
    }

    .nav-left {
        gap: 0;
    }

    .navbar {
        padding: 16px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 15px;
    }

    .signup-form {
        flex-direction: column;
        gap: 10px;
    }

    .signup-form input {
        border-radius: 6px;
    }

    .signup-form button {
        border-radius: 6px;
        padding: 14px 24px;
    }

    .yellow-circle {
        width: 320px;
        height: 320px;
    }

    .dashboard-grid {
        max-width: 320px;
        max-height: 320px;
        gap: 10px;
        transform: rotate(-4deg);
    }

    .section-title {
        font-size: 30px;
    }

    .cards-container {
        grid-template-columns: 1fr;
    }

    .cards-container .feature-card:last-child {
        grid-column: auto;
    }

    .bottom-features {
        grid-template-columns: 1fr;
    }

    .content-1-left {
        width: 300px;
        height: 300px;
    }

    .yellow-circle-bg {
        width: 300px;
        height: 300px;
    }

    .tasks-grid-3 {
        width: 240px;
    }

    .floating-card-1,
    .floating-card-2 {
        display: none;
    }

    .content-1-title,
    .content-2-title {
        font-size: 30px;
    }

    .content-2-right {
        height: 380px;
    }

    .section-title-white {
        font-size: 28px;
    }

    .blog-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 30px;
    }

    .cta-form {
        flex-direction: column;
        gap: 8px;
        padding: 8px;
    }

    .cta-form button {
        width: 100%;
        border-radius: 8px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-logo {
        font-size: 22px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE (max 600px)
   ============================================= */
@media (max-width: 600px) {
    .navbar {
        padding: 14px 16px;
    }

    .nav-right {
        gap: 12px;
    }

    .get-started-btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero {
        padding: 30px 16px 50px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .yellow-circle {
        width: 280px;
        height: 280px;
    }

    .dashboard-grid {
        max-width: 280px;
        max-height: 280px;
        gap: 8px;
        transform: none;
    }

    .feature-section {
        padding: 60px 16px 50px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .content-1-section,
    .content-2-section {
        padding: 50px 16px;
    }

    .content-1-left {
        width: 260px;
        height: 260px;
    }

    .yellow-circle-bg {
        width: 260px;
        height: 260px;
    }

    .tasks-grid-3 {
        width: 210px;
    }

    .content-1-title,
    .content-2-title {
        font-size: 26px;
    }

    .content-2-right {
        height: 340px;
        width: 100%;
        max-width: 100%;
    }

    .testimonial-section {
        padding: 60px 16px 40px;
    }

    .testimonial-card {
        padding: 28px 20px;
    }

    .logos-row {
        gap: 20px;
    }

    .logo-name {
        font-size: 16px;
    }

    .blog-section {
        padding: 60px 16px 50px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-card-title {
        font-size: 18px;
    }

    .cta-section {
        padding: 70px 16px 60px;
    }

    .cta-title {
        font-size: 26px;
    }

    .cta-subtitle {
        font-size: 14px;
    }

    .footer-section {
        padding: 50px 16px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

    .social-icons {
        gap: 8px;
    }
}