/* Base Styles */
:root {
    --primary: #1A8CFF;
    --primary-dark: #0c74dc;
    --text: #1F2937;
    --text-title: #1E293B;
    --text-light: #4B5563;
    --background: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --rounded: 0.5rem;
    --rounded-lg: 0.75rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: "Inter", sans-serif !important;
    color: var(--text);
    line-height: 1.5;
    background-color: var(--background);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    opacity: 1;
    transform: none;
    scroll-margin-top: 80px;
}

.js-enabled section {
    opacity: 0;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.js-enabled section.visible {
    opacity: 1;
    transform: translateY(0);
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

#goTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    padding-bottom: 3px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#goTopBtn.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#goTopBtn:hover {
    background: var(--primary-dark);
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.text-primary {
    color: var(--primary);
}

.text-lightGrey {
    color: #9CA3AF;
}

.text-e2e {
    color: #E2E8F0;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-15 {
    font-size: 15px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.fs-24 {
    font-size: 24px;
}

.fs-26 {
    font-size: 26px;
}

.fs-28 {
    font-size: 28px;
}

.fs-30 {
    font-size: 30px;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-primary-dark {
    color: #60A5FA;
}

.text-black {
    color: #000;
}

.text-white {
    color: #fff;
}

.text-cb-grey {
    color: #CBD5E1;
}

.text-grey {
    color: #4B5563;
}

.text-purple {
    color: #374151;
}

.text-darkGrey {
    color: #D1D5DB;
}

.mt-5 {
    margin-top: 20px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 10px;
}

.mb-2 {
    margin-bottom: 15px;
}

.mb-3 {
    margin-bottom: 20px;
}

.mb-5 {
    margin-bottom: 25px;
}

.mb-6 {
    margin-bottom: 35px;
}

.ml-2 {
    margin-left: 5px;
}

.ml-5 {
    margin-left: 10px;
}

.mr-2 {
    margin-right: 5px;
}

.mr-15 {
    margin-right: 10px;
}

.gap-5 {
    gap: 15px;
}

.d-flex {
    display: flex;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: var(--rounded);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    font-size: 13px;
    line-height: 1.25rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-text {
    background: none;
    color: var(--text);
}

.btn-text:hover {
    color: var(--primary);
}

.btn-large {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .btn-large {
        padding: 12px 28px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .btn-large {
        padding: 12px 24px;
        font-size: 15px;
    }
}

@media (max-width: 640px) {
    .btn-large {
        font-size: 15px;
    }
}

/* Header */

.headerNew {
    position: fixed;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 1000;
}

.containerHeader {
    max-width: 1200px;
    margin: auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .containerHeader {
        padding: 10px 15px;
    }
}

/* Left */
.left {
    display: flex;
    align-items: center;
    gap: 32px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.nav {
    display: flex;
    gap: 24px;
}

.nav a {
    color: #4B5563;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: color 0.2s ease;
}

.nav a:hover {
    color: var(--primary);
}

.nav a.active,
.mobile-menu nav a.active {
    color: var(--primary);
    font-weight: 500;
    position: relative;
    text-decoration: none;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}


/* Right */
.right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.signin {
    text-decoration: none;
    color: #4B5563;
    font-weight: 400;
    font-size: 13px;
}

.signin:hover {
    color: var(--primary);
}

/* Menu button */
.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.25s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 16px;
}

.mobile-menu nav a {
    color: #4B5563;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: color 0.2s ease;
    padding: 8px 0;
}

.mobile-menu nav a:hover {
    color: var(--primary);
}

.mobile-actions {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mobile-actions .btn {
    width: 100%;
    justify-content: center;
}

.mobile-actions a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.header {
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--background);
    border-bottom: 1px solid #E5E7EB;
    z-index: 50;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo img {
    width: 100px;
    margin-top: 12px;
}

@media (max-width: 768px) {
    .logo img {
        width: 80px;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 70px;
        margin-top: 6px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    padding-left: 30px;
}

.nav-link {
    color: #4B5563;
    text-decoration: none;
    font-weight: 400;
    font-size: 13px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-left: auto;
}

.signin-btn {
    color: #374151;
    font-weight: 400;
    font-size: 14px;
}

.bookADemo {
    box-shadow:
        0px 10px 15px rgba(0, 0, 0, 0.1),
        0px 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .bookADemo {
        margin-top: 1.5rem;
    }
}

/* Hero Section */
.hero {
    padding: 6rem 0 5rem;
    text-align: center;
    background-color: #F3F4F6;
    position: relative;
    margin: auto;
}

@media (max-width: 768px) {
    .hero {
        padding: 5rem 0 4rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 4rem 0 3rem;
    }
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 0 0.75rem;
    }
}

.title {
    font-size: 44px;
    margin-bottom: 1rem;
    color: #0F172A;
    font-weight: 700;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .title {
        color: #0F172A;
    }
}

.subtitle {
    font-size: 15px;
    margin-bottom: 2rem;
    color: #64748B;
    word-wrap: break-word;
    line-height: 1.6;
}

.subtitle.mb-1 {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .subtitle {
        margin-bottom: 2.5rem;
    }
    
    .subtitle.mb-1 {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .subtitle {
        margin-bottom: 2rem;
    }
    
    .subtitle.mb-1 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .subtitle {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Problems Section */
.problems {
    background-color: transparent;
    position: relative;
    top: -70px;
}

.problems-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none;
}

.problems-grid::-webkit-scrollbar {
    display: none;
}

@media (max-width: 768px) {
    .problems-grid {
        overflow-x: visible;
    }
}

.problem-card {
    background: linear-gradient(180deg, rgba(239, 246, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(239, 246, 255, 0.3) 100%);
    border-radius: 12px;
    padding: 20px 25px;
    width: 300px;
    flex: 0 0 auto;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.5s ease-out forwards;
    height: auto;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-inner h3 {
    color: #374151;
}

.problem-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 16px 0;
    line-height: 1.4;
    order: 1;
    text-align: center;
}

.emoji {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.emoji img {
    width: 28px;
    height: 28px;
}

.tag {
    display: inline-block;
    background: #374151;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-top: auto;
    line-height: 1;
    align-self: flex-start;
    order: 3;
    margin-top: 8px;
}

.message-container {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    order: 2;
    width: 100%;
}

.speech-bubble {
    background: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: #374151;
    flex: 1;
    margin: 0;
    position: relative;
    min-height: 60px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

@media (max-width: 480px) {
    .speech-bubble {
        font-size: 13px;
        padding: 10px 14px;
    }
}

.cta {
    padding: 0;
    text-align: center;
    background-color: var(--background);
    margin-top: -40px;
    margin-bottom: 25px;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    color: #4B5563;
    font-size: 14px;
    font-weight: 400;
}

/* wholeJourneyContainer */

.wholeJourneyContainer {
    position: relative;
}

.mobile-wholeJourney {
    display: none;
}

.wholeJourney img {
    width: 100%;
}

.wholeJourney button {
    position: relative;
    top: -325px;
    z-index: 2;
    bottom: 0;
    left: 44%;
}

@media (max-width: 1024px) {
    .wholeJourney button {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Organise Section */
.organise-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.organise-header h2 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.organise-subtitle {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.6;
}

.organise-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 0rem;
}

.organise-cards {
    width: 100%;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .organise-cards {
        flex-direction: column;
        gap: 1rem;
    }
}

.organise-card {
    height: 200px;
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 40px;
    width: 320px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.25);
    background: linear-gradient(180deg,
            rgba(239, 246, 255, 1) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(239, 246, 255, 0.3) 100%);
}

.mobile-illustration {
    display: none;
}

.organise-card h3 {
    font-size: 15px;
    font-weight: 700;
}

.card-icon {
    border-radius: 12px;
    margin-bottom: 10px;
}

.card-icon img {
    width: 20px;
    height: 20px;
}

.organise-card p {
    font-size: 13px;
    color: #4B5563;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
}

@media (max-width: 480px) {
    .organise-card p {
        font-size: 14px;
    }
}

.organise-illustration {
    margin-top: 15px;
    margin-bottom: 20px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.organise-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
}

/* Effortless Container */
.effortlessContainer {
    padding: 30px 0;
    background-color: #ffffff;
}

.effortless-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    margin: 0 auto;
}

.effortless-text {
    text-align: center;
}

.effortless-text h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
    line-height: 1.4;
}

.feature-item p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.feature-list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 24px;
}

@media (max-width: 640px) {
    .feature-list {
        flex-direction: column;
        gap: 15px;
    }
}

.feature-list img {
    height: 18px;
    width: 18px;
}

.feature-card {
    background: linear-gradient(180deg,
            rgba(239, 246, 255, 1) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(239, 246, 255, 0.3) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.10);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 12px;
    color: #000000;
    margin: 0;
    line-height: 1.5;
    text-align: start;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    margin-top: 40px;
}

.cta-buttons .btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
}

.cta-buttons .btn-text {
    color: #4f46e5;
    background: transparent;
    border: 1px solid #e5e7eb;
}

.effortless-image {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.dashboard-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 260px;
    z-index: 2;
    overflow: hidden;
}

.floating-card-1 {
    top: 15%;
    right: 10%;
}

.floating-card-2 {
    bottom: 15%;
    left: 10%;
}

.floating-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
}

.floating-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.close-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.close-btn:hover {
    opacity: 1;
}

.floating-card-content {
    padding: 16px;
}

.floating-card-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.floating-card-item:last-child {
    border-bottom: none;
}

.floating-card-label {
    font-size: 13px;
    color: #6b7280;
}

.floating-card-value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.activity-item {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border-radius: 6px;
}

.activity-details {
    flex: 1;
}

.activity-text {
    font-size: 13px;
    color: #111827;
    margin: 0 0 2px 0;
    line-height: 1.4;
}

.activity-time {
    font-size: 12px;
    color: #9ca3af;
}

/* mobileAppSection */

.mobileAppSection {
    background-color: #2A3141;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.mobileAppSection img {
    height: 22px;
    width: 22px;
}

.mobileAppSection-mobile {
    display: none;
}

/* subscriptionSection */

.subscriptionSection {
    background-color: #2A3141;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.subsription-card {
    width: 420px;
    background-color: #374151;
    padding: 25px 40px;
    border-radius: 16px;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 640px) {
    .subsription-card {
        width: 100%;
        padding: 20px;
    }
}

.subs-feature-card {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

/* reviewSection */
.trustedBySection {
    width: 100%;
    padding: 30px;
}

.reviewFlex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.reviewCard {
    width: 320px;
    background-color: #fff;
    padding: 26px;
    border-radius: 12px;
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1), 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .reviewCard {
        width: 100%;
        max-width: 100%;
    }
}

.reviewCard .personImg {
    height: 55px;
    width: 55px;
}

.reviewCard a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.reviewCard a img {
    height: 15px;
    width: 15px;
}

.rightArrowWhiteCls {
    height: 15px;
    width: 15px;
}

/* why hotkup */

.comparison-container {
    display: flex;
    gap: 24px;
    max-width: 1000px;
    width: 100%;
    padding: 40px 20px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .comparison-container {
        flex-direction: column;
        padding: 30px 1rem;
        gap: 20px;
    }
}

.card {
    flex: 1;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    width: 425px;
}

@media (max-width: 768px) {
    .card {
        width: 100%;
        max-width: 100%;
    }
}

.card-other {
    background-color: #334155;
}

.card-hotkup {
    background-color: #0f172a;
    border: 1px solid #1e293b;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.icon-box {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    height: 45px;
    width: 45px;
}

.icon-other {
    background-color: #1e293b;
    color: #94a3b8;
}

.icon-hotkup {
    background-color: #1e293b;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.subtitleIcon-box {
    color: #94a3b8;
    font-size: 13px;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.list li {
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.5;
    color: #D1D5DB;
}

/* Bullet List Styles */
.bullet-list li {
    position: relative;
    padding-left: 24px;
}

.bullet-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #94a3b8;
}

/* Check List Styles */
.check-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.check-icon {
    width: 18px;
    height: 18px;
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-button {
    margin-top: 32px;
    background-color: #3b82f6;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

/* footer */
.footer-container {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 40px 40px 30px 40px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.brand-col {
    max-width: 280px;
}

.logo {
    margin-bottom: 0;
}

.logo-text {
    color: #1A8CFF;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.logo-u {
    position: relative;
    display: inline-block;
}

.logo-u::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-size: contain;
    background-repeat: no-repeat;
}

.brand-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: #64748b;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: #94a3b8;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #ffffff;
}

.footer-column h3 {
    color: #f8fafc;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 24px 0;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 16px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #64748b;
}

.legal-links {
    display: flex;
    gap: 24px;
}

.legal-links a {
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-links a:hover {
    color: #ffffff;
}

/* ---------- ≤1200px (Large tablets / small laptops) ---------- */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.25rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .title {
        font-size: 38px;
    }

    .effortless-text h2 {
        font-size: 36px;
    }

    .organise-header h2 {
        font-size: 2.2rem;
    }
}

/* ---------- ≤1024px (Tablet landscape) ---------- */
@media (max-width: 1024px) {
    .hero {
        padding: 7rem 0 4rem;
    }

    .problems {
        top: -0;
    }

    .organise-content {
        flex-direction: column;
        gap: 3rem;
        margin-top: 50px;
    }

    .organise-cards {
        flex-wrap: wrap;
        gap: 0;
    }

    .organise-card {
        width: 100%;
        max-width: 360px;
    }

    .effortless-content {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .effortless-image {
        min-height: auto;
    }

    .floating-card {
        position: static;
        width: 100%;
        margin-bottom: 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .comparison-container {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        max-width: 500px;
        padding: 22px;
    }
}

/* ---------- ≤900px ---------- */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .reviewFlex {
        flex-direction: column;
        align-items: center;
    }

    .reviewCard {
        width: 100%;
        max-width: 500px;
    }
}

/* ---------- ≤768px (Tablet portrait) ---------- */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .nav,
    .right .signin,
    .right .btn-primary {
        display: none;
    }

    .menu-btn {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    h1 {
        font-size: 2.25rem;
    }

    .subtitle {
        font-size: 15px;
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .title {
        font-size: 36px;
        line-height: 1.2;
        color: #0F172A;
        margin-bottom: 1.5rem;
    }

    .problems {
        top: 0;
        margin-top: 0;
        padding: 20px 0;
    }

    .problems-grid {
        margin-top: 10px;
        gap: 1rem;
        display: flex;
        flex-direction: column;
        width: 100%;
        overflow: hidden;
        justify-content: center;
        align-items: center;
        padding: 0 1rem;
    }

    .problem-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .organise-section {
        padding: 30px 0;
    }

    .organise-header {
        padding: 0 1rem;
    }

    .organise-header h2 {
        font-size: 2rem;
    }

    .organise-cards {
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .organise-card {
        width: 100%;
        max-width: 100%;
    }

    .effortless-text h2 {
        font-size: 36px;
    }

    .effortless-content {
        padding: 0 1rem;
    }

    .cta {
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .comparison-container {
        padding: 20px 1rem;
        flex-direction: column;
    }

    .card {
        width: 100%;
        max-width: 100%;
    }

    .trustedBySection {
        padding: 30px 1rem;
    }

    .reviewFlex {
        flex-direction: column;
        gap: 20px;
    }

    .reviewCard {
        width: 100%;
        max-width: 100%;
    }

    .subscriptionSection {
        padding: 30px 1rem;
    }

    .mobileAppSection {
        padding: 30px 1rem;
    }
}

/* ---------- ≤640px (Large phones) ---------- */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    .title {
        font-size: 32px;
        line-height: 1.2;
        color: #0F172A;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 16px;
        color: #64748B;
        margin-bottom: 2rem;
    }

    p {
        font-size: 15px;
    }

    /* Increase utility font sizes on mobile */
    .fs-12 {
        font-size: 13px !important;
    }

    .fs-13 {
        font-size: 14px !important;
    }

    .fs-14 {
        font-size: 15px !important;
    }

    .fs-15 {
        font-size: 16px !important;
    }

    .hero {
        padding: 4.5rem 0 2.5rem;
    }

    .wholeJourney {
        display: none;
    }

    .wholeJourney button {
        display: none;
    }

    .mobile-wholeJourney {
        display: block;
        background-color: #1E293B;
        padding: 30px 20px;
        margin-bottom: 25px;
    }

    .mobile-wholeJourney-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px 10px;
    }

    .mobile-wholeJourney-list img {
        height: 40px;
        width: 40px;
    }

    .mobile-wholeJourney-list span {
        font-size: 14px;
        font-weight: 400;
    }

    .organise-section {
        padding: 25px 0;
    }

    .organise-header {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    .organise-header h2 {
        font-size: 2rem;
    }

    .organise-subtitle {
        font-size: 15px;
    }

    .organise-cards {
        padding: 0 1rem;
    }

    .organise-card {
        padding: 16px;
        height: auto;
        margin-bottom: 20px;
        width: 100%;
    }

    .organise-illustration {
        padding: 0 1rem;
    }

    .only-web-oragnise {
        display: none;
    }

    .desktop-illustration {
        display: none;
    }

    .mobileAppSection-web {
        display: none;
    }

    .mobileAppSection-mobile {
        display: block;
    }

    .mobile-illustration {
        display: block;
        width: 100%;
        height: auto;
    }

    .effortlessContainer {
        padding: 40px 0;
    }

    .effortless-content {
        padding: 0 1rem;
    }

    .effortless-text {
        width: 100%;
    }

    .effortless-text h2 {
        font-size: 32px;
    }

    .feature-list {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .feature-list > div {
        width: 100%;
    }

    .feature-card {
        text-align: left;
        width: 100%;
    }

    .feature-card p {
        font-size: 14px;
        text-align: left;
    }

    .effortless-text button {
        width: 100%;
        margin-top: 25px;
    }

    .floating-card {
        border-radius: 12px;
    }

    .comparison-container {
        padding: 20px 1rem;
    }

    .subscriptionSection .fs-30 {
        font-size: 28px;
        line-height: 1.3;
    }

    .subsription-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }
}

/* ---------- ≤600px ---------- */
@media (max-width: 600px) {
    .footer-container {
        padding: 30px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-column {
        width: 100%;
    }

    .brand-col {
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-top: 20px;
    }

    .legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .subscriptionSection,
    .mobileAppSection {
        padding: 30px 1rem;
    }

    .subscriptionSection .fs-13 {
        font-size: 12px;
    }

    .subscriptionSection .fs-30 {
        font-size: 26px;
        line-height: 1.3;
    }

    .subsription-card button {
        width: 100%;
    }

    .subsription-card {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }

    .trustedBySection {
        padding: 30px 1rem;
    }

    .trustedBySection button {
        width: 100%;
        max-width: 100%;
    }

    .cta {
        padding: 0 1rem;
    }

    .cta-content {
        padding: 0;
    }

    .cta-content button {
        width: 100%;
        max-width: 100%;
    }

    .wholeJourneyContainer {
        padding: 0;
    }

    .mobile-wholeJourney {
        padding: 30px 1rem;
    }
}

/* ---------- ≤480px (Small phones) ---------- */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .containerHeader {
        padding: 8px 12px;
    }

    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .title {
        font-size: 28px;
        line-height: 1.2;
        color: #0F172A;
        margin-bottom: 1.5rem;
    }

    .subtitle {
        font-size: 15px;
        color: #64748B;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    /* Increase utility font sizes on small phones */
    .fs-12 {
        font-size: 13px !important;
    }

    .fs-13 {
        font-size: 14px !important;
    }

    .fs-14 {
        font-size: 15px !important;
    }

    .fs-15 {
        font-size: 16px !important;
    }

    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-content {
        padding: 0 0.75rem;
    }

    .problems {
        padding: 15px 0;
    }

    .problems-grid {
        padding: 0 0.75rem;
    }

    .problem-card {
        width: 100%;
        max-width: 100%;
        padding: 18px 20px;
    }

    .emoji {
        width: 36px;
        height: 36px;
    }

    .emoji img {
        width: 22px;
        height: 22px;
    }

    .cta {
        margin-top: 0;
        padding: 0 0.75rem;
    }

    .cta-content {
        font-size: 15px;
        margin-top: 15px;
    }

    .organise-section {
        padding: 20px 0;
    }

    .organise-header {
        padding: 0 0.75rem;
    }

    .organise-header h2 {
        font-size: 1.75rem;
    }

    .organise-cards {
        padding: 0 0.75rem;
    }

    .organise-card {
        padding: 14px;
    }

    .organise-illustration {
        padding: 0 0.75rem;
    }

    .effortlessContainer {
        padding: 30px 0;
    }

    .effortless-content {
        padding: 0 0.75rem;
    }

    .effortless-text h2 {
        font-size: 28px;
    }

    .mobile-wholeJourney {
        padding: 25px 0.75rem;
    }

    .mobile-wholeJourney-list {
        padding: 15px 0;
    }

    .subscriptionSection,
    .mobileAppSection {
        padding: 25px 0.75rem;
    }

    .subscriptionSection .fs-30 {
        font-size: 24px;
    }

    .subsription-card {
        padding: 18px;
    }

    .trustedBySection {
        padding: 25px 0.75rem;
    }

    .comparison-container {
        padding: 15px 0.75rem;
    }

    .card {
        padding: 20px;
    }

    .footer-container {
        padding: 25px 15px 15px;
    }

    .footer-content {
        gap: 25px;
        padding-bottom: 25px;
    }

    #goTopBtn {
        width: 35px;
        height: 35px;
        font-size: 18px;
        bottom: 20px;
        right: 20px;
    }
}


/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.problem-card:nth-child(1) {
    animation-delay: 0.1s;
}

.problem-card:nth-child(2) {
    animation-delay: 0.2s;
}

.problem-card:nth-child(3) {
    animation-delay: 0.3s;
}

.problem-card:nth-child(4) {
    animation-delay: 0.4s;
}