* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: #7c3aed;
}

.logo img {
    max-height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    color: #7c3aed;
    cursor: pointer;
}

.li-item {
    font-size: 14px;
    font-weight: 500;
    color: #6B7280;
    cursor: pointer;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #7c3aed;
}

.btn-primary {
    background: #9159FA;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #6d28d9;
    transform: translateY(-1px);
}


/* Main Navigation Menu */
nav>ul:first-of-type {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

nav>ul:first-of-type li {
    font-size: 14px;
    font-weight: 500;
}

nav>ul:first-of-type li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 4px;
}

nav>ul:first-of-type li a:hover {
    color: #7c3aed;
}

nav>ul:first-of-type li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #7c3aed;
    transition: width 0.3s ease;
}

nav>ul:first-of-type li a:hover::after {
    width: 100%;
}

nav>ul:first-of-type li a.active {
    color: #7c3aed;
}

nav>ul:first-of-type li a.active::after {
    width: 100%;
}

/* Responsive Navigation */
@media (max-width: 768px) {
    nav>ul:first-of-type {
        display: none;
    }

    nav>ul:first-of-type.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        border-bottom: 1px solid #e5e7eb;
        padding: 120px 0;
        gap: 0;
    }

    nav>ul:first-of-type.active li {
        padding: 12px 20px;
        border-bottom: 1px solid #f3f4f6;
    }

    nav>ul:first-of-type.active li:last-child {
        border-bottom: none;
    }

    nav>ul:first-of-type.active li a {
        display: block;
    }

    .menu-toggle {
        display: block;
    }
}




/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 0 40px;
    position: relative;
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    font-size: 24px;
    opacity: 0.8;
    border: 1px solid #d2cfcf;
    padding: 1px 12px;
    border-radius: 34px;
    background-color: white;
}

.floating-icon img {
    max-width: 40px;
    height: auto;
}

.icon-1 {
    top: 10%;
    left: 8%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0s;
}

.icon-2 {
    top: 15%;
    right: 12%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.icon-3 {
    top: 35%;
    left: 5%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1s;
}

.icon-4 {
    top: 40%;
    right: 8%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

.icon-5 {
    top: 60%;
    left: 10%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 2s;
}

.icon-6 {
    top: 65%;
    right: 15%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 2.5s;
}

.icon-7 {
    top: 80%;
    right: 10%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 1.2s;
}

.icon-8 {
    top: 25%;
    left: 15%;
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.8s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-badge {
    display: inline-block;
    background: #1e40af;
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #111;
}

.hero h1 span {
    background: linear-gradient(135deg,
            #9159FA 0%,
            #2563EB 45%,
            #2563EB 55%,
            #9159FA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: #666;
    max-width: 467px;
    margin: 0 auto 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}


.btn-large {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 10px;
}

/* Device Mockup Section */
.mockup-section {
    background: #272938;
    padding: 60px 40px;
    position: relative;
    margin: 40px 0;
    border-radius: 20px;
    overflow: visible;
}

.mockup-floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.mockup-floating-icon.icon-left {
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.mockup-floating-icon.icon-right {
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

.mockup-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.device-frame {
    background: #2d3748;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    width: 100%;
    display: flex;
    gap: 0;
}

/* Sidebar */
.app-sidebar {
    background: #1a202c;
    width: 60px;
    border-radius: 12px 0 0 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sidebar-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.sidebar-icon.active::before {
    content: '';
    position: absolute;
    left: -10px;
    width: 3px;
    height: 30px;
    background: #7c3aed;
    border-radius: 0 2px 2px 0;
}

.sidebar-icon.download {
    margin-top: auto;
    color: #9ca3af;
}

.icon-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.icon-placeholder.whatsapp {
    background: #25D366;
}

.icon-placeholder.telegram {
    background: #0088cc;
}

.icon-placeholder.slack {
    background: #4A154B;
}

.icon-placeholder.discord {
    background: #5865F2;
}

.device-screen {
    background: #f8f9fa;
    border-radius: 0 12px 12px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Header */
.screen-header {
    background: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    flex-wrap: wrap;
    gap: 10px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 200px;
}

.app-name {
    font-weight: 600;
    color: #7c3aed;
    font-size: 14px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f3f4f6;
    padding: 6px 12px;
    border-radius: 6px;
    flex: 1;
    max-width: 300px;
}

.search-bar i {
    color: #9ca3af;
    font-size: 12px;
}

.search-bar input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13px;
    width: 100%;
    color: #333;
}

.search-bar input::placeholder {
    color: #9ca3af;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #6b7280;
    font-size: 14px;
}

.header-icons i {
    cursor: pointer;
    transition: color 0.3s;
}

.header-icons i:hover {
    color: #7c3aed;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Chat List */
.chat-list {
    width: 320px;
    background: white;
    border-right: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.chat-list-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
}

.chat-list-header h3 {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.chat-list-header i {
    color: #9ca3af;
    cursor: pointer;
}

.chat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
}

.chat-item:hover {
    background: #f9fafb;
}

.chat-item.active {
    background: #f3f4f6;
}

.chat-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 3px;
    height: 100%;
    background: #7c3aed;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    flex-shrink: 0;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar.small {
    width: 24px;
    height: 24px;
}

.chat-content {
    flex: 1;
    min-width: 0;
}

.chat-name {
    font-weight: 600;
    font-size: 13px;
    color: #111;
    margin-bottom: 2px;
}

.chat-message {
    font-size: 12px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-time {
    font-size: 11px;
    color: #9ca3af;
    flex-shrink: 0;
}

/* Chat Detail */
.chat-detail {
    flex: 1;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    padding: 20px;
    overflow-y: auto;
}

.chat-detail-header {
    margin-bottom: 20px;
}

.chat-detail-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.chat-detail-header p {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.detail-icons {
    display: flex;
    gap: 12px;
}

.detail-icons i {
    color: #6b7280;
    font-size: 16px;
    cursor: pointer;
}

.chat-detail-info {
    background: white;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.detail-user {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.detail-user span {
    font-size: 13px;
    font-weight: 500;
    color: #111;
}

.detail-date {
    font-size: 12px;
    color: #9ca3af;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.5;
}

.message-sent {
    background: #7c3aed;
    color: white;
    align-self: flex-end;
    max-width: 80%;
}

.message-received {
    background: white;
    color: #333;
    align-self: flex-start;
    max-width: 80%;
}

.message-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    margin-top: 8px;
}

.message-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 13px;
    color: #333;
}

.message-input::placeholder {
    color: #9ca3af;
}

.message-input-wrapper i {
    color: #9ca3af;
    cursor: pointer;
    font-size: 16px;
}

/* Integrations */
.integrations {
    text-align: center;
    padding: 60px 0;
    background: #fafafa;
}

.integrations h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.integrations-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.integration-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.integration-item span {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.integration-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    font-size: 24px;
    color: rgb(0, 0, 0);
}

.integration-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Limited Time Offer Section */
.limited-offer {
    padding: 80px 0;
    background: white;
}

.offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.offer-left {
    padding-right: 20px;
}

.offer-badge {
    display: inline-block;
    background: #ede9fe;
    color: #7c3aed;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.offer-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.2;
}

.offer-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.offer-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.offer-feature {
    display: flex;
    gap: 16px;
    align-items: start;
}

.offer-icon {
    width: 48px;
    height: 48px;
    background: #ede9fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-icon i {
    color: #7c3aed;
    font-size: 20px;
}

.offer-feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.offer-feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Message Previews */
.offer-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.message-preview {
    background: #f9fafb;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.message-preview:hover {
    background: #f3f4f6;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.preview-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    flex-shrink: 0;
}

.preview-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.preview-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #6b7280;
    flex-shrink: 0;
}

.preview-content {
    flex: 1;
    min-width: 0;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.preview-app {
    font-size: 13px;
    font-weight: 600;
}

.preview-app.whatsapp {
    color: #9159FA;
}

.preview-app.slack {
    color: #9159FA;
}

.preview-app.telegram {
    color: #9159FA;
}

.preview-app.discord {
    color: #9159FA;
}

.preview-name {
    font-size: 13px;
    color: #111;
    font-weight: 500;
}

.preview-message {
    font-size: 13px;
    color: #6b7280;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preview-menu {
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
}

.preview-menu:hover {
    color: #6b7280;
}

/* Features Grid */
.features {
    padding: 80px 0;
    background: #F8F5FF;
    text-align: center;
}

.section-badge {
    display: inline-block;
    color: #7c3aed;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111;
    line-height: 32px;
}

.section-subtitle {
    font-size: 14px;
    color: #666;
    max-width: 400px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s;
    text-align: center;
}

.feature-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: #ede9fe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: #7c3aed;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Category Tags */
.category-tags {
    display: flex;
    justify-content: center;
    gap: 33px;
    flex-wrap: wrap;
}

.tag {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.tag-urgent {
    background: #fee2e2;
    color: #dc2626;
}

.tag-work {
    background: #dbeafe;
    color: #2563eb;
}

.tag-team {
    background: #d1fae5;
    color: #059669;
}

.tag-followup {
    background: #fef3c7;
    color: #d97706;
}

.tag-vip {
    background: #e9d5ff;
    color: #7c3aed;
}

.tag-automated {
    background: #ddd6fe;
    color: #6d28d9;
}

/* Split Section */
.split-section {
    padding: 80px 0;
    background: white;
}

.split-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #111;
    line-height: 1.2;
}

.split-content p {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
    font-size: 16px;
}

/* AI Features */
.ai-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-feature {
    display: flex;
    gap: 16px;
    align-items: start;
}

.ai-feature-icon {
    width: 48px;
    height: 48px;
    background: #ede9fe;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-feature-icon i {
    color: #7c3aed;
    font-size: 20px;
}

.ai-feature-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin-bottom: 4px;
}

.ai-feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* AI Chat Mockup */
.split-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-chat-mockup {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
    min-height: 400px;
}

.chat-mockup-header {
    margin-bottom: 20px;
}

.chat-mockup-header span {
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.chat-mockup-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ai-message {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 16px;
}

.ai-message p {
    font-size: 13px;
    color: #7c3aed;
    line-height: 1.6;
    margin: 0;
}

.suggested-reply {
    background: white;
    color: rgb(115, 104, 104);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.suggested-reply:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

.suggested-reply p {
    font-size: 13px;
    color: rgb(100, 100, 100);
    margin: 0;
}

/* Privacy Section */
.privacy-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.privacy-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.privacy-card {
    background: white;
    border: 2px solid #2563EB;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s;
}

.privacy-card:hover {
    border-color: #7c3aed;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
    transform: translateY(-4px);
}

.privacy-icon {
    width: 64px;
    height: 64px;
    background: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.privacy-icon i {
    color: #3b82f6;
    font-size: 28px;
}

.privacy-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
}

.privacy-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #fafafa;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.testimonial-card {
    background: #F1EAFF;
    border: 2px solid #9159FA;
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 700;
    color: #111;
    font-size: 16px;
}

.testimonial-role {
    font-size: 13px;
    color: #666;
}

.testimonial-text {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 14px;
    display: flex;
    gap: 4px;
}

/* Trusted Section */
.trusted-section {
    padding: 40px 0 20px;
    text-align: center;
    background: white;
}

.trusted-section p {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trusted-logos span {
    color: #111;
    font-weight: 700;
    font-size: 18px;
}

/* CTA Section */
.cta-section {
    padding: 40px 0 80px;
    background: white;
}

.cta-box {
    background: #7c3aed;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 16px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-actions .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.cta-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 13px;
    opacity: 0.8;
}

/* Footer Section */
.main-footer {
    background: #0B1120;
    color: #e0e0e0;
    padding: 80px 0 40px;
    font-family: 'Inter', sans-serif;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #a0aec0;
    max-width: 420px;
}

.footer-contact-social {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 8px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item:hover {
    color: #8b5cf6;
}

.contact-item i {
    color: #8b5cf6;
    font-size: 18px;
    width: 20px;
    text-align: center;
}



.social-link {
    width: 36px;
    height: 36px;
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-4px);
}

/* Navigates Container */
.navigates {
    display: flex;
    gap: 60px;
}

.footer-nav h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
    color: #8b5cf6;
}

/* Subscribe Card */
.footer-subscribe {
    display: flex;
    justify-content: flex-end;
    max-height: 165px;

}

.subscribe-card {
    background: linear-gradient(135deg, #1E293B 0%, #0f172a 100%);
    padding: 32px 28px;
    border-radius: 16px;
    width: 100%;
    max-width: 340px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.subscribe-card h4 {
    color: white;
    font-size: 19px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: left;
}

.input-group {
    display: flex;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.input-group input {
    border: none;
    padding: 12px 16px;
    width: 100%;
    font-size: 14px;
    outline: none;
    color: #1a2233;
    font-family: 'Inter', sans-serif;
}

.input-group input::placeholder {
    color: #94a3b8;
}

.btn-arrow {
    background: #8b5cf6;
    color: white;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-arrow:hover {
    background: #7c3aed;
    transform: scale(1.05);
}

.btn-arrow i {
    font-size: 16px;
}

/* Bottom Bar */
.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-bottom p {
    color: #a0aec0;
    font-size: 14px;
    font-weight: 400;
}

.bottom-links {
    display: flex;
    gap: 32px;
}

.bottom-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-weight: 400;
}

.bottom-links a:hover {
    color: #8b5cf6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1.8fr 1.2fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .navigates {
        gap: 40px;
    }

    .footer-subscribe {
        grid-column: 1 / -1;
        justify-content: flex-start;
    }

    .subscribe-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 60px 0 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .navigates {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-contact-social {
        margin-top: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .bottom-links {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .navigates {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .subscribe-card {
        padding: 28px 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero,
.feature-card,
.privacy-card {
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:nth-child(2) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* ================================================
    RESPONSIVE STYLES - TABLET AND MOBILE
    ================================================ */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 40px;
    }

    .footer-subscribe {
        grid-column: 1 / -1;
    }

    .subscribe-card {
        max-width: 100%;
    }

    .offer-content {
        gap: 40px;
    }

    .split-section .container {
        gap: 40px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    /* Header */
    header {
        padding: 15px 0;
    }

    .logo img {
        max-height: 32px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1001;
        gap: 15px;
        text-align: center;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .li-item {
        display: block;
        margin-bottom: 5px;
    }

    .btn-primary {
        padding: 10px 24px;
        font-size: 14px;
        width: fit-content;
        margin: 0 auto;
    }

    /* Hero Section */
    .hero {
        padding: 60px 0 30px;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
        margin-bottom: 20px;
    }

    .hero h1 br {
        display: none;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 10px;
        margin-bottom: 30px;
    }

    .floating-icon {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 320px;
        margin: 0 auto 40px;
    }

    .btn-large {
        width: 100%;
        padding: 14px 24px;
    }

    /* Mockup Section */
    .mockup-section {
        padding: 40px 15px;
        margin: 20px 0;
        border-radius: 16px;
    }

    .mockup-floating-icon {
        display: none;
    }

    .device-frame {
        flex-direction: column;
        padding: 10px;
        border-radius: 16px;
    }

    .app-sidebar {
        width: 100%;
        flex-direction: row;
        justify-content: center;
        border-radius: 12px 12px 0 0;
        padding: 10px;
        gap: 10px;
    }

    .sidebar-icon.active::before {
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        border-radius: 2px 2px 0 0;
        top: auto;
    }

    .sidebar-icon.download {
        margin-top: 0;
        margin-left: auto;
    }

    .device-screen {
        border-radius: 0 0 12px 12px;
    }

    .screen-header {
        padding: 10px 15px;
    }

    .header-left {
        gap: 10px;
        min-width: auto;
    }

    .search-bar {
        max-width: 150px;
    }

    .header-icons {
        gap: 10px;
    }

    .header-icons i:nth-child(1),
    .header-icons i:nth-child(2),
    .header-icons i:nth-child(3) {
        display: none;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .chat-list {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        max-height: 250px;
    }

    .chat-detail {
        padding: 15px;
    }

    /* Integrations */
    .integrations {
        padding: 50px 0;
    }

    .integrations h2 {
        font-size: 26px;
    }

    .integration-icons {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .integration-icon {
        width: 48px;
        height: 48px;
    }

    /* Limited Offer Section */
    .limited-offer {
        padding: 60px 0;
    }

    .offer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .offer-left {
        padding-right: 0;
    }

    .offer-left h2 {
        font-size: 28px;
    }

    .offer-description {
        font-size: 15px;
    }

    .offer-right {
        padding: 20px !important;
    }

    /* Features Section */
    .features {
        padding: 60px 0;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .category-tags {
        gap: 10px;
    }

    .tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Split Section */
    .split-section {
        padding: 60px 0;
    }

    .split-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-content h2 {
        font-size: 24px !important;
    }

    .split-content p {
        font-size: 15px;
    }

    .ai-features {
        text-align: left;
    }

    .split-visual {
        margin-top: 20px;
    }

    .ai-chat-mockup {
        max-width: 100%;
        padding: 20px;
        min-height: 350px;
    }

    /* Privacy Section */
    .privacy-section {
        padding: 60px 0;
    }

    .privacy-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    /* Trusted Section */
    .trusted-section {
        padding: 30px 0 15px;
    }

    .trusted-logos {
        gap: 20px;
        flex-wrap: wrap;
    }

    .trusted-logos span {
        font-size: 16px;
    }

    /* CTA Section */
    .cta-section {
        padding: 30px 0 60px;
    }

    .cta-box {
        padding: 50px 20px;
        border-radius: 20px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .cta-box p {
        font-size: 15px;
    }

    /* Footer */
    .main-footer {
        padding: 60px 0 20px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo img {
        height: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .navigates {

        display: flex;
        flex-direction: row;
        gap: 121px;

    }

    .footer-contact-social {
        flex-direction: column;
        gap: 30px;
    }

    .footer-subscribe {
        justify-content: flex-start;
    }

    .subscribe-card {
        max-width: 100%;
        padding: 7px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .bottom-links {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
}

/* Extra Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .section-title {
        font-size: 22px;
    }

    .integration-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .offer-left h2 {
        font-size: 24px;
    }

    .split-content h2 {
        font-size: 22px !important;
    }

    .cta-box h2 {
        font-size: 24px;
    }

    .cta-box p {
        font-size: 14px;
    }

    .message-preview {
        padding: 12px;
    }

    .preview-avatar,
    .preview-icon {
        width: 36px;
        height: 36px;
    }



    .input-group {
        flex-direction: column;
    }

    .btn-arrow {
        width: 100%;
        height: 48px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 0 30px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .mockup-section {
        padding: 30px 15px;
    }

    .ai-chat-mockup {
        min-height: 300px;
    }

}

/* Fix for very small screens (320px) */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 22px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 18px;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 13px;
    }

    .btn-primary {
        font-size: 13px;
        padding: 10px 16px;
    }

    .feature-card {
        padding: 24px 16px;
    }

    .cta-box {
        padding: 40px 15px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .footer-brand .brand-desc {
        font-size: 14px;
    }
}