/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fullpage container */
#fullpage {
    position: relative;
    scroll-behavior: smooth;
}

.fp-section {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.fp-slide {
    float: left;
}

.fp-slide, .fp-slidesContainer {
    height: 100%;
    display: block;
}

.fp-slides {
    z-index: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.fp-section.fp-table, .fp-slide.fp-table {
    display: table;
    table-layout: fixed;
    width: 100%;
}

.fp-tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

.fp-slidesContainer {
    float: left;
    position: relative;
}

.fp-controlArrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    cursor: pointer;
    width: 0;
    height: 0;
    border-style: solid;
    margin-top: -38px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.fp-controlArrow.fp-prev {
    left: 15px;
    width: 0;
    border-width: 38.5px 34px 38.5px 0;
    border-color: transparent #fff transparent transparent;
}

.fp-controlArrow.fp-next {
    right: 15px;
    border-width: 38.5px 0 38.5px 34px;
    border-color: transparent transparent transparent #fff;
}

.fp-scrollable {
    overflow: hidden;
    position: relative;
}

.fp-scroller {
    overflow: hidden;
}

.iScrollIndicator {
    transition: 0.25s ease-in-out;
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
}

.fp-notransition {
    -webkit-transition: none !important;
    transition: none !important;
}

#fp-nav {
    position: fixed;
    z-index: 100;
    margin-top: -32px;
    top: 50%;
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

#fp-nav.right {
    right: 17px;
}

#fp-nav.left {
    left: 17px;
}

.fp-slidesNav {
    position: absolute;
    z-index: 4;
    left: 50%;
    opacity: 1;
}

.fp-slidesNav.bottom {
    bottom: 17px;
}

.fp-slidesNav.top {
    top: 17px;
}

#fp-nav ul,
.fp-slidesNav ul {
    margin: 0;
    padding: 0;
}

#fp-nav ul li,
.fp-slidesNav ul li {
    display: block;
    width: 14px;
    height: 13px;
    margin: 7px;
    position: relative;
}

.fp-slidesNav ul li {
    display: inline-block;
}

#fp-nav ul li a,
.fp-slidesNav ul li a {
    display: block;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
}

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
    height: 12px;
    width: 12px;
    margin: -6px 0 0 -6px;
    border-radius: 100%;
}

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
    height: 4px;
    width: 4px;
    border: 0;
    background: #333;
    left: 50%;
    top: 50%;
    margin: -2px 0 0 -2px;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
    width: 10px;
    height: 10px;
    margin: -5px 0 0 -5px;
}

#fp-nav ul li .fp-tooltip {
    position: absolute;
    top: -2px;
    color: #fff;
    font-size: 14px;
    font-family: arial, helvetica, sans-serif;
    white-space: nowrap;
    max-width: 220px;
    overflow: hidden;
    display: block;
    opacity: 0;
    width: 0;
    cursor: pointer;
}

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
    -webkit-transition: opacity 0.2s ease-in;
    transition: opacity 0.2s ease-in;
    width: auto;
    opacity: 1;
}

#fp-nav ul li .fp-tooltip.right {
    right: 20px;
}

#fp-nav ul li .fp-tooltip.left {
    left: 20px;
}

/* Navigation dots removed - back to normal layout */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    font-weight: 400;
    background: #fff;
    background-image: 
        linear-gradient(rgba(86, 205, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(86, 205, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1002;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    margin: 1rem 5rem;
    width: calc(100% - 10rem);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 
                0 1px 4px rgba(0, 0, 0, 0.03);
}

.navbar.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    margin: 1rem 3rem;
    width: calc(100% - 6rem);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1), 
                0 1px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-logo h2 {
    background: #56cdff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    font-size: 1.5rem;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    justify-self: center;
}

.nav-link {
    text-decoration: none;
    color: #6b7280;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #56cdff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #56cdff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-self: end;
}

.sign-in-button {
    background: transparent;
    color: #6b7280 !important;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    transition: all 0.3s ease;
}

.sign-in-button:hover {
    background: #f3f4f6;
    color: #374151 !important;
    border-color: #9ca3af;
    transform: translateY(-2px);
}

.sign-in-button::after {
    display: none;
}

.cta-button {
    background: #56cdff;
    color: white !important;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('/layered-peaks-haikei.svg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 80px;
    box-sizing: border-box;
}

/* Blurred Auras for Modern Effect */
.hero-aura {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    display: none;
}

.hero-aura-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    top: 10%;
    left: -10%;
    animation: float 6s ease-in-out infinite;
}

.hero-aura-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #06b6d4 0%, #0891b2 100%);
    top: 20%;
    right: -5%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-aura-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(225deg, #8b5cf6 0%, #7c3aed 100%);
    bottom: 30%;
    left: 20%;
    animation: float 7s ease-in-out infinite;
}

.hero-aura-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(315deg, #10b981 0%, #059669 100%);
    top: 50%;
    right: 15%;
    animation: float 9s ease-in-out infinite reverse;
}

.hero-aura-5 {
    width: 200px;
    height: 200px;
    background: linear-gradient(180deg, #f59e0b 0%, #d97706 100%);
    bottom: 20%;
    right: 30%;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(8px);
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    justify-content: center;
    min-height: 80vh;
    gap: 2rem;
}


.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    max-width: 700px;
    padding: 0 1rem;
    min-height: 500px;
}

/* COMPLETELY NEW HERO TITLE - 40% SMALLER AGAIN */
.hero-title-new {
    font-family: 'Poppins', sans-serif !important;
    font-size: clamp(3.24rem, 10.368vw, 5.832rem) !important;
    line-height: 1.0 !important;
    font-weight: 300 !important;
    max-width: 1400px !important;
    margin: 0 auto 3rem !important;
    text-align: center !important;
    color: #2d3748 !important;
    letter-spacing: -0.03em !important;
    width: 100% !important;
    display: block !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
}

.gradient-text {
    background: #56cdff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-new {
    background: #56cdff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.35rem;
    color: #718096;
    margin-bottom: 4rem;
    line-height: 1.7;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #56cdff;
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #000;
    border: 1px solid #d1d5db;
}

.btn-secondary:hover {
    background: #f3f4f6;
    color: #000;
    border-color: #9ca3af;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: #667eea;
    margin-bottom: 0.5rem;
    text-align: center;
}

.stat p {
    color: #a0aec0;
    font-weight: 500;
}

/* Dashboard Preview Section */
.dashboard-preview-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.dashboard-preview-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Dashboard Preview */
.dashboard-preview {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.236);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    height: auto;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.236);
}

.dashboard-image-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    padding: 1rem 1rem 2rem 1rem;
}

.dashboard-preview-image {
    width: 100%;
    height: auto;
    display: block !important;
    border-radius: 12px;
    margin: 0;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 10;
    object-fit: contain;
}

/* Hide any placeholder elements that might be interfering */
.dashboard-preview .placeholder-content,
.dashboard-preview .placeholder-icon,
.dashboard-preview .chart-placeholder::before {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Ensure the dashboard preview image is visible */
.dashboard-preview img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 100;
}

.dashboard-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 20px 20px;
    margin-top: 0;
}

.dashboard-header {
    background: transparent;
    padding: 1rem;
    display: flex;
    align-items: center;
    border: none;
}

.dashboard-dots {
    display: flex;
    gap: 0.5rem;
}

.dashboard-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
}

.dashboard-dots span:first-child {
    background: #ff5f57;
}

.dashboard-dots span:nth-child(2) {
    background: #ffbd2e;
}

.dashboard-dots span:last-child {
    background: #28ca42;
}

.dashboard-content {
    display: flex;
    height: 400px;
}

.dashboard-sidebar {
    width: 200px;
    background: #f8f9fa;
    border-right: 1px solid #e9ecef;
}

.dashboard-main {
    flex: 1;
    padding: 2rem;
}

.chart-placeholder {
    height: 200px;
    background: #56cdff;
    border-radius: 10px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.chart-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: #56cdff;
    border-radius: 50%;
    opacity: 0.3;
}

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

.stat-card {
    height: 80px;
    background: #56cdff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-header h3 {
    color: #56cdff;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.features-header h2 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-header p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #56cdff, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(86, 205, 255, 0.3);
    box-shadow: 0 20px 40px rgba(86, 205, 255, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-image {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.1);
}

.feature-card h4 {
    color: #1a202c;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Feature Sections */
.feature-section {
    padding: 6rem 0;
    background: white;
}

.feature-section.reverse {
    background: white;
}

.feature-section.reverse .feature-content {
    gap: 0;
}

#mobile .feature-content {
    gap: 0;
}

/* Messaging section with clean white background */
#messaging.feature-section {
    background: white;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    align-items: center;
}

.dashboard-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.dashboard-centered .feature-visual {
    width: 100%;
    display: flex;
    justify-content: center;
}

.dashboard-centered .content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    width: 100%;
    max-width: 1200px;
}

.dashboard-centered .feature-text {
    text-align: left;
}

.dashboard-centered .feature-list {
    text-align: left;
}

.feature-list-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-text h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.feature-text h3 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #56cdff;
    background: rgba(86, 205, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 2rem;
}

.feature-text p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: #4a5568;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.feature-list li:hover {
    background: rgba(86, 205, 255, 0.12);
    color: #2d3748;
    transform: translateX(4px);
}

.feature-list li i {
    color: #56cdff;
    margin-right: 0.75rem;
    font-size: 1rem;
    font-weight: 500;
    flex-shrink: 0;
}

/* Messaging Interface */
.messaging-interface {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 450px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.08);
    width: 120%;
    max-width: 600px;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.3s ease;
}

.messaging-interface:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.chat-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffb3d1 0%, #ff9ec7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(255, 179, 209, 0.3);
}

.chat-info h4 {
    font-weight: 500;
    color: white;
    margin-bottom: 0.25rem;
}

.chat-info span {
    color: #a0aec0;
    font-size: 0.9rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
}

.message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    align-items: flex-end;
}

.message-received {
    justify-content: flex-start;
}

.message-sent {
    justify-content: flex-end;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.message-received .message-avatar {
    background: linear-gradient(135deg, #ffb3d1 0%, #ff9ec7 100%);
}

.message-sent .message-avatar {
    background: linear-gradient(135deg, #56cdff 0%, #4a9eff 100%);
}

.message-content {
    max-width: 70%;
    display: flex;
    flex-direction: column;
}

.message-received .message-content {
    align-items: flex-start;
}

.message-sent .message-content {
    align-items: flex-end;
}

.message-content p {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    word-wrap: break-word;
}

.message-received .message-content p {
    background: #f1f3f4;
    color: white;
    border-bottom-left-radius: 4px;
}

.message-sent .message-content p {
    background: #56cdff;
    color: white;
    border-bottom-right-radius: 4px;
}

.timestamp {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 400;
    margin-top: 0.25rem;
    align-self: flex-end;
}

.message-received .timestamp {
    align-self: flex-start;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 0.5rem;
}

.chat-input input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    outline: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    pointer-events: none;
    user-select: none;
    background: #f8f9fa;
}

.chat-input button {
    padding: 1rem 1.5rem;
    background: #56cdff;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    pointer-events: none;
    user-select: none;
}

/* Dashboard Stats */
.dashboard-stats {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    height: auto;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 90vw;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid #4a5568;
}

.stats-header {
    text-align: left;
}

.stats-header h4 {
    font-size: 1.75rem;
    font-weight: 500;
    color: white;
    margin: 0 0 0.75rem 0;
}

.welcome-text {
    color: #a0aec0;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.stat-card-modern {
    background: white;
    border: 1px solid rgba(86, 205, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card-modern:hover {
    border-color: rgba(86, 205, 255, 0.4);
    box-shadow: 0 4px 12px rgba(86, 205, 255, 0.1);
}

.stat-card-modern h5 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #a0aec0;
    margin: 0 0 1.25rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card-modern h3 {
    font-size: 2.25rem;
    font-weight: 500;
    color: white;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.stat-card-modern p {
    font-size: 0.9rem;
    color: #a0aec0;
    margin: 0;
    font-weight: 400;
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.trend-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.trend-badge.negative {
    background: #fed7d7;
    color: #c53030;
}

.trend-badge.neutral {
    background: #e2e8f0;
    color: #4a5568;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-icon {
    font-size: 2rem;
}

.stat-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-info p {
    color: #a0aec0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.trend {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
}

.trend.positive {
    background: #d4edda;
    color: #155724;
}

.trend.negative {
    background: #f8d7da;
    color: #721c24;
}

.chart-container {
    height: 150px;
    display: flex;
    align-items: end;
    gap: 0.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 0.5rem;
    height: 100%;
    width: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: growUp 1s ease-out;
}

@keyframes growUp {
    from {
        height: 0;
    }
    to {
        height: var(--height);
    }
}


.screenshot-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
}

.screenshot-placeholder.active {
    display: flex;
}

.placeholder-content {
    text-align: center;
    color: #6b7280;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.placeholder-content p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.territory {
    position: absolute;
    border: 2px dashed #667eea;
    border-radius: 10px;
    background: rgba(102, 126, 234, 0.1);
}

.territory.north {
    top: 10%;
    left: 20%;
    width: 60%;
    height: 40%;
}

.territory.south {
    bottom: 10%;
    left: 30%;
    width: 40%;
    height: 30%;
}

.territory.east {
    top: 20%;
    right: 10%;
    width: 30%;
    height: 50%;
}

.territory.west {
    top: 15%;
    left: 5%;
    width: 25%;
    height: 60%;
}

.territory-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #667eea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.customer-pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ff6b6b;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* App Image Container */
.app-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.app-preview-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.app-preview-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}




/* Map Section Styles */
.map-section {
    padding: 6rem 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

.map-header {
    text-align: center;
    margin-bottom: 4rem;
}

.map-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(86, 205, 255, 0.1);
    color: #56cdff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(86, 205, 255, 0.2);
}

.map-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.map-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

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

.map-visual-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.map-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #f8fafc;
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    min-width: 200px;
}

.map-tab {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: #64748b;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    justify-content: flex-start;
    text-align: left;
}

.map-tab:hover {
    color: #56cdff;
    transform: translateX(2px);
}

.map-tab.active {
    background: white;
    color: #56cdff;
    box-shadow: 0 4px 12px rgba(86, 205, 255, 0.15);
    transform: translateX(4px);
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.map-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.map-image {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: scale(0.975);
}

.map-image.pinning-image {
    transform: scale(1.62) !important;
}

.map-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.map-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.map-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.map-feature svg {
    color: #56cdff;
    flex-shrink: 0;
}

.map-feature span {
    color: #4a5568;
    font-weight: 500;
}

/* Mobile Section Styles */
.mobile-section {
    height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: visible;
}


.mobile-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-image {
    width: 390px;
    height: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.mobile-image:hover {
    transform: scale(1.05);
}

.mobile-text {
    flex: 1;
}

.mobile-text h3 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #56cdff;
    background: rgba(86, 205, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 2rem;
}

.mobile-text h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.mobile-text p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

.phone-frame {
    width: 300px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #000;
    border-radius: 2px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.battery {
    width: 20px;
    height: 10px;
    border: 1px solid white;
    border-radius: 2px;
    position: relative;
}

.battery::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 2px;
    width: 2px;
    height: 6px;
    background: white;
    border-radius: 0 1px 1px 0;
}

.app-title {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

.app-content {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
}

.quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quick-stat {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 500;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #a0aec0;
}

.recent-activities h4 {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    margin-bottom: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
}

.activity-icon {
    font-size: 1.2rem;
}

.activity-text p {
    font-size: 0.9rem;
    color: white;
    margin-bottom: 0.25rem;
}

.activity-text span {
    font-size: 0.8rem;
    color: #a0aec0;
}

/* Heroicons Styling */
.heroicon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    color: #56cdff;
    flex-shrink: 0;
}

/* App Store Button */
.app-buttons {
    margin-top: 2rem;
}

.btn-app-store {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    background: #000;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-app-store:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-app-store span {
    font-size: 0.8rem;
    opacity: 0.8;
}

.btn-app-store strong {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: #fff;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(86, 205, 255, 0.1);
    border-radius: 12px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-note p {
    margin: 0;
    color: #2d3748;
    font-size: 1rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-header h3 {
    font-size: 0.85rem;
    font-weight: 500;
    color: #56cdff;
    background: rgba(86, 205, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1rem;
}

.pricing-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.pricing-cards {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1;
    min-width: 250px;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(86, 205, 255, 0.5);
}

.pricing-card.featured {
    border-color: #56cdff;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-title-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.popular-badge {
    font-size: 0.7rem;
    font-weight: 500;
    color: #56cdff;
    background: rgba(86, 205, 255, 0.1);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
}

.pricing-header-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.5rem;
}

.pricing-header-card p {
    color: #666;
    font-size: 1.1rem;
    margin: 0 0 1rem 0;
}

.pricing-price {
    margin-bottom: 1rem;
}

.pricing-price .currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: #666;
    vertical-align: top;
    margin-right: 0.25rem;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 500;
    color: #333;
    line-height: 1;
    margin-right: 0.25rem;
}

.pricing-price .period {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    text-align: left;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.4rem 0;
    color: #4a5568;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-features li i {
    color: #56cdff;
    margin-right: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-pricing {
    width: 100%;
    padding: 0.6rem 2rem;
    border: 1px solid #4a5568;
    background: white;
    color: #4a5568;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.btn-pricing:hover {
    border-color: #56cdff;
    color: #56cdff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(86, 205, 255, 0.2);
}

.btn-pricing.primary {
    background: #56cdff;
    color: white;
    border-color: #56cdff;
}

.btn-pricing.primary:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(86, 205, 255, 0.4);
}


/* CTA Section */
.cta-section {
    background: #fff;
    color: #333;
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: visible;
    z-index: 1001;
}

/* CTA Auras */
.cta-aura-1 {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86, 205, 255, 0.3) 0%, rgba(86, 205, 255, 0.1) 30%, transparent 70%);
    filter: blur(60px);
    animation: cta-float-1 6s ease-in-out infinite;
    z-index: -1;
    opacity: 0;
    display: none;
}

.cta-aura-2 {
    position: absolute;
    top: -30px;
    right: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86, 205, 255, 0.25) 0%, rgba(86, 205, 255, 0.08) 30%, transparent 70%);
    filter: blur(50px);
    animation: cta-float-2 8s ease-in-out infinite;
    z-index: -1;
    opacity: 0;
    display: none;
}

.cta-aura-3 {
    position: absolute;
    bottom: -60px;
    left: -120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86, 205, 255, 0.2) 0%, rgba(86, 205, 255, 0.06) 30%, transparent 70%);
    filter: blur(55px);
    animation: cta-float-3 7s ease-in-out infinite;
    z-index: -1;
    opacity: 0;
    display: none;
}

.cta-aura-4 {
    position: absolute;
    bottom: -40px;
    right: -100px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86, 205, 255, 0.22) 0%, rgba(86, 205, 255, 0.07) 30%, transparent 70%);
    filter: blur(45px);
    animation: cta-float-4 9s ease-in-out infinite;
    z-index: -1;
    opacity: 0;
    display: none;
}

.cta-aura-5 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(86, 205, 255, 0.15) 0%, rgba(86, 205, 255, 0.05) 40%, transparent 70%);
    filter: blur(80px);
    animation: cta-float-5 10s ease-in-out infinite;
    z-index: -1;
    opacity: 0;
    display: none;
}

@keyframes cta-float-1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-15px) translateX(10px);
    }
    50% {
        transform: translateY(-8px) translateX(-5px);
    }
    75% {
        transform: translateY(-12px) translateX(8px);
    }
}

@keyframes cta-float-2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(10px) translateX(-8px);
    }
    50% {
        transform: translateY(5px) translateX(12px);
    }
    75% {
        transform: translateY(-5px) translateX(-10px);
    }
}

@keyframes cta-float-3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(15px);
    }
    50% {
        transform: translateY(8px) translateX(-8px);
    }
    75% {
        transform: translateY(-5px) translateX(12px);
    }
}

@keyframes cta-float-4 {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(12px) translateX(-12px);
    }
    50% {
        transform: translateY(-8px) translateX(8px);
    }
    75% {
        transform: translateY(6px) translateX(-15px);
    }
}

@keyframes cta-float-5 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    25% {
        transform: translate(-50%, -50%) scale(1.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(0.9);
    }
    75% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    margin-top: 4rem;
    color: #333;
    position: relative;
    z-index: 2;
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, #56cdff 0%, #e5e7eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: inherit;
}

.glow-text {
    color: #56cdff;
    text-shadow: 
        0 0 10px rgba(86, 205, 255, 0.6),
        0 0 20px rgba(86, 205, 255, 0.4),
        0 0 30px rgba(86, 205, 255, 0.3);
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from {
        text-shadow: 
            0 0 10px rgba(86, 205, 255, 0.6),
            0 0 20px rgba(86, 205, 255, 0.4),
            0 0 30px rgba(86, 205, 255, 0.3);
    }
    to {
        text-shadow: 
            0 0 15px rgba(86, 205, 255, 0.7),
            0 0 25px rgba(86, 205, 255, 0.5),
            0 0 35px rgba(86, 205, 255, 0.4);
    }
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: #666;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary.large {
    background: #56cdff;
    border: none;
    box-shadow: 0 8px 25px rgba(86, 205, 255, 0.3);
}

.btn-primary.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(86, 205, 255, 0.4);
}

.btn-secondary.large {
    background: transparent;
    border: 2px solid #56cdff;
    color: #56cdff;
}

.btn-secondary.large:hover {
    background: #56cdff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(86, 205, 255, 0.3);
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}






/* ULTRA AGGRESSIVE - MAXIMUM PRIORITY - 40% SMALLER AGAIN */
html body .hero .container .hero-content .hero-title-new {
    font-family: 'Poppins', sans-serif !important;
    font-size: clamp(3.24rem, 10.368vw, 5.832rem) !important;
    line-height: 1.0 !important;
    font-weight: 300 !important;
    max-width: 1400px !important;
    margin: 0 auto 3rem !important;
    text-align: center !important;
    color: #2d3748 !important;
    letter-spacing: -0.03em !important;
    width: 100% !important;
    display: block !important;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* NUCLEAR OPTION - EVEN MORE SPECIFIC */
html body div.section section.hero div.container div.hero-content h1.hero-title-new {
    font-size: clamp(3.24rem, 10.368vw, 5.832rem) !important;
    line-height: 1.0 !important;
    font-weight: 300 !important;
}

/* Hide mobile nav buttons on desktop */
.mobile-nav-buttons {
    display: none;
}

/* Section styles */
.section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}


/* Smooth scrolling behavior - consolidated above */

/* FullPage container scroll behavior - consolidated above */

/* Section heights restored to normal */

/* Disable scroll snap on mobile and fix overlapping */
@media (max-width: 1024px) {
    #fullpage {
        position: static !important;
        height: auto !important;
    }
    
    .section {
        height: auto !important;
        min-height: 100vh;
    }
    
    /* Fix section heights on narrow screens */
    .hero, .features-section, .map-section, .mobile-section, .pricing-section {
        height: auto !important;
        min-height: 100vh;
    }
    
    .fp-section {
        position: static !important;
        height: auto !important;
        min-height: 100vh;
    }
    
    .fp-tableCell {
        display: block !important;
    }
    
    #fp-nav {
        display: none !important;
    }
    
    .fp-controlArrow {
        display: none !important;
    }
}





/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 1rem 0;
        background: transparent;
        border-bottom: 1px solid transparent;
        transition: all 0.3s ease;
    }
    
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin: 0.5rem 2rem;
        width: calc(100% - 4rem);
        border-radius: 20px;
        padding: 1rem 0;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    }
    
    .navbar.glass {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(24px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0.5rem 1rem;
        width: calc(100% - 2rem);
        border-radius: 20px;
        padding: 1rem 0;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        padding: 0 1.25rem;
        grid-template-columns: 1fr auto;
        gap: 1.25rem;
        align-items: center;
    }
    
    .nav-logo h2 {
        font-size: 1.6rem;
        font-weight: 600;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        background: rgba(86, 205, 255, 0.05);
        border: 1px solid rgba(86, 205, 255, 0.1);
        z-index: 10000;
        position: relative;
    }
    
    .hamburger:hover,
    .hamburger:active {
        background-color: rgba(86, 205, 255, 0.15);
        border-color: rgba(86, 205, 255, 0.2);
        transform: scale(1.05);
    }
    
    .hamburger span {
        width: 26px;
        height: 3px;
        background: #000;
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 3px;
        display: block;
        position: relative;
    }
    
    .hamburger.active {
        background-color: rgba(86, 205, 255, 0.2);
        border-color: rgba(86, 205, 255, 0.5);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 8px);
        background: #56cdff;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -8px);
        background: #56cdff;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        width: calc(100% - 2rem);
        margin: 0 1rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
        padding: 2.5rem 0;
        gap: 0.75rem;
        border: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 999;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
        animation: slideInFromLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Mobile nav buttons will be shown in 768px breakpoint */
    
    @keyframes slideInFromLeft {
        from {
            left: -100%;
            opacity: 0;
        }
        to {
            left: 0;
            opacity: 1;
        }
    }
    
    .nav-link {
        padding: 1.5rem 2.5rem;
        border-radius: 16px;
        margin: 0 1.25rem;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-weight: 500;
        display: block;
        font-size: 1.1rem;
        -webkit-tap-highlight-color: transparent;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        color: #4a5568;
    }
    
    .nav-link:hover,
    .nav-link:active,
    .nav-link:focus {
        background: rgba(86, 205, 255, 0.12);
        color: #56cdff;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(86, 205, 255, 0.2);
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: #56cdff;
        border-radius: 0 2px 2px 0;
        transition: height 0.3s ease;
    }
    
    .nav-link:hover::before,
    .nav-link:active::before,
    .nav-link:focus::before {
        height: 24px;
    }
    
    /* Keep nav buttons visible on tablets */
    
    /* Center app store buttons on narrow screens */
    .app-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero {
        padding-top: 100px;
        height: 100vh;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .feature-text h2 {
        font-size: 2.25rem;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: -0.01em;
    }
    
    .feature-text h3 {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
        padding: 0.6rem 1.25rem;
    }
    
    .feature-text p {
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 2.75rem;
        color: #4a5568;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .feature-list {
        max-width: 450px;
        margin: 0 auto 2.5rem;
        text-align: left;
    }
    
    .feature-list li {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 1rem 1.25rem;
        margin-bottom: 0.75rem;
        position: static;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 12px;
        transition: all 0.3s ease;
        min-height: 56px;
    }
    
    .feature-list li:hover {
        background: rgba(86, 205, 255, 0.08);
        transform: translateX(8px);
    }
    
    .feature-list li i {
        margin-right: 1rem;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .hero-title-new {
        font-size: clamp(2.592rem, 7.776vw, 4.536rem) !important;
        line-height: 1.0 !important;
        margin-bottom: 2rem !important;
        font-weight: 300 !important;
        letter-spacing: -0.03em !important;
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
        width: 100% !important;
        max-width: 1000px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        font-weight: 400;
        color: #718096;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        align-items: center;
    }
    
    /* Features Section Mobile */
    .features-section {
        padding: 4rem 0;
        height: auto !important;
        min-height: 100vh;
    }
    
    /* Mobile Section Mobile */
    .mobile-section {
        padding: 4rem 0;
        height: auto !important;
        min-height: 100vh;
        overflow: visible !important;
    }
    
    /* Pricing Section Mobile */
    .pricing-section {
        padding: 4rem 0;
        height: auto !important;
        min-height: 100vh;
    }
    
    
    .features-header h2 {
        font-size: 2rem;
    }
    
    .features-header p {
        font-size: 1rem;
    }
    
    /* Map Section Mobile */
    .map-section {
        padding: 4rem 0;
        height: auto !important;
        min-height: 100vh;
    }
    
    .map-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .map-header p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .map-visual-section {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    
    .map-tabs {
        flex-direction: row;
        min-width: auto;
        max-width: 350px;
        padding: 6px;
    }
    
    .map-tab {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        justify-content: center;
        text-align: center;
    }
    
    .map-tab:hover {
        transform: translateY(-1px);
    }
    
    .map-tab.active {
        transform: translateY(-2px);
    }
    
    .map-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .map-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .map-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-image {
        height: 180px;
    }
    
    .feature-card h4 {
        font-size: 1.1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 1.25rem 2rem;
        font-size: 1rem;
        font-weight: 500;
        border-radius: 14px;
        font-family: 'Poppins', sans-serif;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-primary:active,
    .btn-secondary:active {
        transform: translateY(1px);
    }
    
    /* Optimize auras for mobile performance */
    .hero-aura-1 {
        width: 200px;
        height: 200px;
        top: 8%;
        left: -20%;
        filter: blur(60px);
        opacity: 0.2;
        animation-duration: 8s;
    }
    
    .hero-aura-2 {
        width: 160px;
        height: 160px;
        top: 20%;
        right: -15%;
        filter: blur(60px);
        opacity: 0.2;
        animation-duration: 10s;
    }
    
    .hero-aura-3 {
        width: 140px;
        height: 140px;
        bottom: 30%;
        left: 5%;
        filter: blur(60px);
        opacity: 0.2;
        animation-duration: 9s;
    }
    
    .hero-aura-4 {
        width: 180px;
        height: 180px;
        top: 50%;
        right: 5%;
        filter: blur(60px);
        opacity: 0.2;
        animation-duration: 11s;
    }
    
    .hero-aura-5 {
        width: 120px;
        height: 120px;
        bottom: 20%;
        right: 15%;
        filter: blur(60px);
        opacity: 0.2;
        animation-duration: 7s;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 2.5rem;
        padding: 0 3rem;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 0;
    }
    
    
    /* Keep dashboard preview visible on tablets */
    .hero-visual {
        max-width: 500px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .hero-visual {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
    
    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 2rem;
    }
    
    .mobile-nav-buttons .nav-link {
        display: block;
        padding: 1rem 2rem;
        text-align: center;
        border-radius: 12px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-buttons .sign-in-button {
        background: transparent;
        border: 2px solid #e2e8f0;
        color: #64748b;
    }
    
    .mobile-nav-buttons .sign-in-button:hover {
        background: #f8fafc;
        border-color: #cbd5e1;
    }
    
    .mobile-nav-buttons .cta-button {
        background: linear-gradient(135deg, #56cdff 0%, #4facfe 100%);
        color: white;
        border: none;
    }
    
    .mobile-nav-buttons .cta-button:hover {
        background: linear-gradient(135deg, #4facfe 0%, #3b82f6 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(86, 205, 255, 0.3);
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        background: rgba(86, 205, 255, 0.05);
        border: 1px solid rgba(86, 205, 255, 0.1);
    }
    
    .hamburger:hover,
    .hamburger:active {
        background-color: rgba(86, 205, 255, 0.15);
        border-color: rgba(86, 205, 255, 0.2);
        transform: scale(1.05);
    }
    
    .hamburger span {
        width: 26px;
        height: 3px;
        background: #000;
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 3px;
        display: block;
        position: relative;
    }
    
    .hamburger.active {
        background-color: rgba(86, 205, 255, 0.2);
        border-color: rgba(86, 205, 255, 0.5);
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-7px, 8px);
        background: #56cdff;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-7px, -8px);
        background: #56cdff;
    }
    
    /* Pricing Cards Mobile Optimization */
    .pricing-cards {
        flex-direction: column;
        gap: 2rem;
        max-width: 420px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .pricing-card {
        min-width: auto;
        flex: none;
        padding: 2rem 1.5rem;
        border-radius: 24px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    
    .hero-title-new {
        font-size: clamp(1.944rem, 5.184vw, 3.24rem) !important;
        line-height: 1.0 !important;
        margin-bottom: 2rem !important;
        font-weight: 300 !important;
        width: 100% !important;
        max-width: 600px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        letter-spacing: -0.03em !important;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .feature-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .feature-section.reverse .feature-content {
        grid-template-columns: 1fr;
    }
    
    #mobile .feature-content {
        gap: 0;
    }
    
    .mobile-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .mobile-image {
        width: 325px;
    }
    
    /* Dashboard Preview Mobile Optimization */
    .dashboard-preview {
        width: 96vw;
        max-width: 480px;
        transform: scale(0.82);
        margin: 2.5rem auto;
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
        border-radius: 24px;
        height: auto;
    }
    
    .dashboard-preview:hover {
        transform: scale(0.82);
        box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15), 0 12px 32px rgba(0, 0, 0, 0.1);
    }
    
    .dashboard-preview-image {
        border-radius: 12px;
    }
    
    .dashboard-image {
        border-radius: 0 0 24px 24px;
    }
    
    .dashboard-content {
        height: 320px;
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
        height: 70px;
        border-right: none;
        border-bottom: 1px solid #e9ecef;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .dashboard-main {
        flex: 1;
        padding: 2rem 1.5rem;
        background: white;
    }
    
    .chart-placeholder {
        height: 140px;
        margin-bottom: 2rem;
        border-radius: 16px;
        background: linear-gradient(135deg, #56cdff 0%, #4a9eff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .chart-placeholder::before {
        width: 80px;
        height: 80px;
        opacity: 0.2;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        height: 70px;
        border-radius: 12px;
        background: linear-gradient(135deg, #56cdff 0%, #4a9eff 100%);
        border: none;
        box-shadow: 0 4px 12px rgba(86, 205, 255, 0.2);
    }
    
    /* Messaging Interface Mobile Optimization */
    .messaging-interface {
        width: 100%;
        max-width: 420px;
        height: 420px;
        transform: translateY(0);
        margin: 0 auto;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 12px 32px rgba(0, 0, 0, 0.12);
        border-radius: 24px;
        border: 1px solid rgba(0, 0, 0, 0.06);
    }
    
    .messaging-interface:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 72px rgba(0, 0, 0, 0.22), 0 16px 40px rgba(0, 0, 0, 0.15);
    }
    
    .chat-header {
        padding: 1.25rem;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 24px 24px 0 0;
    }
    
    .chat-avatar {
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
        box-shadow: 0 4px 12px rgba(255, 179, 209, 0.4);
    }
    
    .chat-info h4 {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .chat-info span {
        font-size: 0.95rem;
        color: #56cdff;
        font-weight: 500;
    }
    
    .chat-messages {
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .message-content {
        max-width: 88%;
    }
    
    .message-content p {
        font-size: 0.95rem;
        padding: 0.8rem 1.1rem;
        line-height: 1.4;
        border-radius: 20px;
    }
    
    .message-received .message-content p {
        border-bottom-left-radius: 6px;
    }
    
    .message-sent .message-content p {
        border-bottom-right-radius: 6px;
    }
    
    .timestamp {
        font-size: 0.8rem;
        margin-top: 0.4rem;
    }
    
    .chat-input {
        padding: 1rem;
        background: #f8f9fa;
        border-radius: 0 0 24px 24px;
    }
    
    .chat-input input {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 16px;
        border: 1px solid #4a5568;
        background: white;
    }
    
    .chat-input button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-radius: 16px;
        background: linear-gradient(135deg, #56cdff 0%, #4a9eff 100%);
        box-shadow: 0 4px 12px rgba(86, 205, 255, 0.3);
    }
    
    
    /* Dashboard Stats Mobile Optimization */
    .dashboard-stats {
        width: 95vw;
        max-width: 500px;
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card-modern {
        padding: 1.5rem;
        min-height: 120px;
    }
    
    .stat-card-modern h3 {
        font-size: 1.75rem;
    }
    
    .stat-card-modern h5 {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
    
    
    /* App Image Mobile Optimization */
    .app-image-container {
        max-width: 300px;
    }
    
    .app-preview-image {
        max-width: 300px;
        border-radius: 15px;
    }
    
    /* Phone Mockup Mobile Optimization */
    .phone-mockup {
        height: 500px;
    }
    
    .phone-frame {
        width: 250px;
        height: 500px;
        padding: 15px;
    }
    
    .phone-screen {
        border-radius: 25px;
    }
    
    .app-content {
        padding: 1rem;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .quick-stat {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .activity-item {
        padding: 0.5rem 0;
    }
    
    .activity-text p {
        font-size: 0.8rem;
    }
    
    .activity-text span {
        font-size: 0.7rem;
    }
    
    /* Keep pricing cards in row layout for narrow desktop */
    
    .pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12), 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    
    .pricing-card.featured {
        transform: none;
        border-color: #56cdff;
        box-shadow: 0 16px 40px rgba(86, 205, 255, 0.2), 0 8px 24px rgba(86, 205, 255, 0.1);
        background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(248, 250, 252, 1) 100%);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 56px rgba(86, 205, 255, 0.25), 0 12px 32px rgba(86, 205, 255, 0.15);
    }
    
    .pricing-header-card h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
    }
    
    .pricing-header-card p {
        font-size: 1.05rem;
        color: #a0aec0;
    }
    
    .popular-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
        border-radius: 24px;
        background: linear-gradient(135deg, rgba(86, 205, 255, 0.15) 0%, rgba(86, 205, 255, 0.08) 100%);
        border: 1px solid rgba(86, 205, 255, 0.2);
    }
    
    .pricing-price .amount {
        font-size: 2.5rem;
        font-weight: 700;
        color: #333;
    }
    
    .pricing-price .currency {
        font-size: 1.8rem;
        font-weight: 600;
        color: #666;
    }
    
    .pricing-price .period {
        font-size: 1.1rem;
        font-weight: 500;
        color: #666;
    }
    
    .pricing-features {
        margin-bottom: 2rem;
    }
    
    .pricing-features li {
        font-size: 1rem;
        padding: 0.75rem 0;
        font-weight: 500;
        color: #4a5568;
        display: flex;
        align-items: center;
    }
    
    .pricing-features li i {
        font-size: 1.1rem;
        margin-right: 1rem;
        color: #56cdff;
    }
    
    .btn-pricing {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-pricing:active {
        transform: translateY(1px);
    }
    
    .cta-section {
        padding: 4rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        font-weight: 900;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        width: 100%;
        max-width: 280px;
        padding: 1.25rem 2rem;
        font-size: 1rem;
        font-family: 'Poppins', sans-serif;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn-primary.large:active,
    .btn-secondary.large:active {
        transform: translateY(1px);
    }
    
    
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Further reduce aura sizes for small screens */
    .hero-aura-1 {
        width: 180px;
        height: 180px;
        filter: blur(60px);
    }
    
    .hero-aura-2 {
        width: 150px;
        height: 150px;
        filter: blur(60px);
    }
    
    .hero-aura-3 {
        width: 120px;
        height: 120px;
        filter: blur(60px);
    }
    
    .hero-aura-4 {
        width: 160px;
        height: 160px;
        filter: blur(60px);
    }
    
    .hero-aura-5 {
        width: 100px;
        height: 100px;
        filter: blur(60px);
    }
    
    .navbar {
        padding: 0.75rem 0;
        background: transparent;
        border-bottom: 1px solid transparent;
    }
    
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        margin: 0.5rem 1.5rem;
        width: calc(100% - 3rem);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.glass {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0.5rem 0.75rem;
        width: calc(100% - 1.5rem);
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .nav-logo h2 {
        font-size: 1.25rem;
    }
    
    .nav-menu {
        top: 70px;
        margin: 0 0.75rem;
        width: calc(100% - 1.5rem);
        border-radius: 12px;
        padding: 1.5rem 0;
    }
    
    .nav-link {
        padding: 0.75rem 1.5rem;
        margin: 0 0.75rem;
        font-size: 0.95rem;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero {
        padding-top: 80px;
        height: 100vh;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title-new {
        font-size: clamp(2.3328rem, 6.48vw, 3.888rem) !important;
        font-weight: 300 !important;
        width: 100% !important;
        line-height: 1.0 !important;
        margin-bottom: 2rem !important;
        max-width: 800px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        letter-spacing: -0.03em !important;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        color: #718096;
        max-width: 1000px;
    }
    
    .btn-primary, .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        font-family: 'Poppins', sans-serif;
        width: 100%;
        max-width: 260px;
    }
    
    .feature-section {
        padding: 3rem 0;
    }
    
    .feature-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .feature-text h3 {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        gap: 1.25rem;
        max-width: 350px;
    }
    
    .pricing-card {
        padding: 1.25rem 1rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-4px);
    }
    
    .pricing-price .amount {
        font-size: 1.75rem;
    }
    
    .pricing-features li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    .feature-list {
        max-width: 320px;
    }
    
    .feature-list li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .feature-list li i {
        margin-right: 0.5rem;
        font-size: 0.85rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
        font-weight: 900;
        margin-bottom: 1rem;
    }
    
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        font-family: 'Poppins', sans-serif;
        max-width: 260px;
    }
    
    .phone-frame {
        width: 220px;
        height: 440px;
        padding: 12px;
    }
    
    .phone-screen {
        border-radius: 20px;
    }
    
    .app-content {
        padding: 0.75rem;
    }
    
    .quick-stats {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .quick-stat {
        padding: 0.6rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .activity-item {
        padding: 0.4rem 0;
    }
    
    .activity-text p {
        font-size: 0.75rem;
    }
    
    .activity-text span {
        font-size: 0.65rem;
    }
    
    
    
    /* Dashboard and messaging optimizations for small screens */
    .dashboard-preview {
        width: 98vw;
        max-width: 400px;
        height: auto;
        transform: scale(0.82);
    }
    
    .dashboard-content {
        height: 250px;
    }
    
    .dashboard-main {
        padding: 1rem;
    }
    
    .chart-placeholder {
        height: 100px;
        margin-bottom: 1rem;
    }
    
    .messaging-interface {
        height: 350px;
        max-width: 350px;
    }
    
    .chat-header {
        padding: 0.75rem;
    }
    
    .chat-messages {
        padding: 0.5rem;
    }
    
    .message-content p {
        font-size: 0.8rem;
        padding: 0.5rem 0.7rem;
    }
    
    .chat-input {
        padding: 0.5rem;
    }
    
    .chat-input input {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .chat-input button {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    
    /* Dashboard stats for small screens */
    .dashboard-stats {
        width: 98vw;
        max-width: 400px;
        padding: 1.5rem 1rem;
    }
    
    .stat-card-modern {
        padding: 1.25rem;
        min-height: 100px;
    }
    
    .stat-card-modern h3 {
        font-size: 1.5rem;
    }
    
    .stat-card-modern h5 {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    
    /* Center app store buttons on mobile */
    .app-buttons {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 1024px) {
    /* Improve touch targets */
    button, .btn-primary, .btn-secondary, .btn-pricing, .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Add touch states for better mobile interaction */
    .btn-primary:active, .btn-secondary:active, .btn-pricing:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }
    
    .nav-link:active {
        opacity: 0.7;
        transition: opacity 0.1s ease;
    }
    
    /* Optimize scrolling performance */
    .nav-menu, .chat-messages, .app-content {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
        }
        
        .hero-aura, .cta-aura-1, .cta-aura-2, .cta-aura-3, .cta-aura-4, .cta-aura-5 {
            animation: none !important;
        }
    }
    
    /* Improve text readability on mobile */
    .hero-title, .feature-text h2, .cta-content h2 {
        text-rendering: optimizeLegibility;
        -webkit-font-smoothing: antialiased;
    }
    
    /* Optimize images and visual elements */
    .dashboard-preview, .messaging-interface, .phone-frame {
        will-change: transform;
        transform: translateZ(0);
    }
    
    /* Improve button feedback */
    .btn-primary:active, .btn-secondary:active, .btn-pricing:active {
        transform: translateY(1px) scale(0.98);
        transition: transform 0.1s ease;
    }
    
    /* Better focus states for accessibility */
    .nav-link:focus, button:focus {
        outline: 2px solid #56cdff;
        outline-offset: 2px;
    }
}

/* Landscape mobile optimizations */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero {
        padding-top: 100px;
        height: 100vh;
    }
    
    .hero-title {
        font-size: 1.8rem !important;
        font-weight: 950;
        width: 100%;
        line-height: 1.1 !important;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        color: #718096;
        max-width: 1000px;
    }
    
    .feature-section {
        padding: 3rem 0;
    }
    
    .dashboard-preview {
        height: 250px;
    }
    
    .messaging-interface {
        height: 300px;
    }
    
    .phone-mockup {
        height: 400px;
    }
    
    .phone-frame {
        width: 200px;
        height: 400px;
    }
}

/* Footer Styles */
.footer {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 3rem 0;
    margin-top: 4rem;
}

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

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    flex: 1;
    text-align: center;
    max-width: 600px;
}

.footer-tagline p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.footer-terms {
    flex-shrink: 0;
}

.terms-link {
    color: #56cdff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid #56cdff;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.terms-link:hover {
    background: #56cdff;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(86, 205, 255, 0.3);
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0;
        margin-top: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-tagline {
        order: 2;
        max-width: 100%;
    }
    
    .footer-tagline p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .footer-terms {
        order: 3;
    }
    
    .terms-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-content {
        gap: 1.25rem;
    }
    
    .footer-logo-image {
        height: 35px;
    }
    
    .footer-tagline p {
        font-size: 0.9rem;
    }
    
    .terms-link {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
}
