/**
* @license
*
* Font Family: Switzer
* Designed by: Jérémie Hornus
* URL: https://www.fontshare.com/fonts/switzer
* © 2025 Indian Type Foundry
*/

/* Switzer Variable Font - Optimized for performance */
@font-face {
  font-family: 'Switzer';
  src: url('/fonts/Switzer-Variable.woff2') format('woff2-variations'),
       url('/fonts/Switzer-Variable.woff') format('woff-variations'),
       url('/fonts/Switzer-Variable.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Switzer';
  src: url('/fonts/Switzer-VariableItalic.woff2') format('woff2-variations'),
       url('/fonts/Switzer-VariableItalic.woff') format('woff-variations'),
       url('/fonts/Switzer-VariableItalic.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}

/* Static font weights as fallbacks */
@font-face {
  font-family: 'Switzer';
  src: url('/fonts/Switzer-Regular.woff2') format('woff2'),
       url('/fonts/Switzer-Regular.woff') format('woff'),
       url('/fonts/Switzer-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Switzer';
  src: url('/fonts/Switzer-Medium.woff2') format('woff2'),
       url('/fonts/Switzer-Medium.woff') format('woff'),
       url('/fonts/Switzer-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Switzer';
  src: url('/fonts/Switzer-Semibold.woff2') format('woff2'),
       url('/fonts/Switzer-Semibold.woff') format('woff'),
       url('/fonts/Switzer-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'Switzer';
  src: url('/fonts/Switzer-Bold.woff2') format('woff2'),
       url('/fonts/Switzer-Bold.woff') format('woff'),
       url('/fonts/Switzer-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}

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

:root {
    --primary-color: #0066FF;
    --secondary-color: #F5F7FA;
    --text-primary: #0A0E1A;
    --text-secondary: #5B6478;
    --border-color: #E5E8ED;
    --bg-light: #FAFBFC;
    --white: #fbfbfb;
    --accent-green: #10B981;
    --accent-purple: #8B5CF6;
}

html {
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    font-family: 'Switzer', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

html, body { 
    overflow-y: scroll;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Top Bar */
.top-bar {
    height: 0;
    background: transparent;
    width: 100%;
}

/* Navigation */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    backdrop-filter: blur(3px); 
     -webkit-backdrop-filter: blur(3px); 
    border-bottom: none;
    border: none;
    z-index: 10002;
    padding: calc(env(safe-area-inset-top, 0px) + 0.5rem) 0 0.5rem;
    box-shadow: none !important;
    filter: none;
    transition: all 0.3s ease;
}

.navbar.at-top {
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    background: transparent;
}

.navbar .container {
    position: relative;
}

.navbar-scrolled .container {
    position: relative;
}

.navbar-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent !important;
    backdrop-filter: blur(3px); 
    -webkit-backdrop-filter: blur(3px);
    /* -webkit-backdrop-filter: none !important;
    backdrop-filter: none; */
    box-shadow: none !important;
    border-bottom: none;
    border: none;
    filter: none;
    width: 100%;
    padding-top: calc(env(safe-area-inset-top, 0px) + 0.5rem);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    position: relative;
    box-shadow: none !important;
    width: 100%;
    padding-right: 0;
    min-height: 100%;
}

.navbar::before,
.navbar::after,
.navbar-scrolled::before,
.navbar-scrolled::after {
    display: none !important;
}

.navbar .container,
.navbar-scrolled .container {
    box-shadow: none !important;
    filter: none !important;
}

.navbar *,
.navbar-scrolled * {
    box-shadow: none !important;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
}

.logo-icon {
    width: 45px;
    height: 45px;
    color: var(--text-primary);
}

.logo-text {
    font-weight: 400;
    font-size: 1.25rem;
}
.ai-text {
    /* color: #35c3fe; make AI gray */
    font-weight: 700;
    font-size: 1.25rem;

}

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

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 0.7;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn-get-started {
    background: #000000;
    color: var(--white);
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 24px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.875rem;
    display: inline-block;
    text-decoration: none;
}

.btn-get-started:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10001;
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    outline: none;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(3px); 
    -webkit-backdrop-filter: blur(3px); 
    flex-shrink: 0;
    margin: 0;
    gap: 2px
}

.hamburger-menu:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.hamburger-menu:active {
    opacity: 0.7;

}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition:  0.3s ease;
    transform-origin: center;
    margin: 1px 0;

    /* display: block;
    width: 30px;
    height: 3px;
    background: black;
    margin: 6px 0;
    transition: 0.3s ease;
    transform-origin: center; */
}


.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 2px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -6px);
}

/* Mobile Menu Dropdown - Left Side Panel */
.nav-links.mobile-menu {
    display: none !important;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    /* height: 100vh; */
    background: transparent;
    /* background: #ffffff; */
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 10000;
    overflow-y: auto;
    transition: left 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    
    
}

.nav-links.mobile-menu.active {
    display: flex !important;
    left: 0;
}

/* Mobile Menu Header with Close Button */
.mobile-menu-header {
    display: none;
    position: relative;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    
}

.nav-links.mobile-menu.active .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-header .logo {
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
    line-height: 1;
}

.mobile-menu-close:hover {
    color: var(--primary-color);
}

.mobile-menu-close::before {
    content: '×';
    font-size: 2rem;
    font-weight: 300;
}

.nav-links.mobile-menu li {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-links.mobile-menu li:last-child {
    border-bottom: none;
}

.nav-links.mobile-menu li.mobile-menu-button-item {
    padding: 1.5rem;
    border-bottom: none;
    margin-top: 0.5rem;
    width: 100%;
}

.nav-links.mobile-menu a {
    display: block;
    padding: 1.25rem 1.5rem;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    transition: background-color 0.2s ease, color 0.2s ease;
    text-align: left;
}

.nav-links.mobile-menu a:hover {
    background-color: rgba(0, 0, 0, 0.05);
    opacity: 0.8;
}

/* Ensure Get Started button in mobile menu is not affected by general link styles */
.nav-links.mobile-menu li.mobile-menu-button-item a.btn-get-started {
    color: #ffffff !important;
    background: #000000 !important;
    text-align: center !important;
    padding: 0.875rem 1.5rem !important;
    border-radius: 500px !important;
    font-size: 1rem !important;
    font-weight: 300 !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.nav-links.mobile-menu li.mobile-menu-button-item a.btn-get-started:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
}

/* Overlay when menu is open */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Buttons */
.btn-primary {
    /* background: var(--primary-color); */
    background: #000000;
    color: var(--white);
    border: none;
    padding: 0.9rem 1.6rem;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    width: auto;
    border-radius: 500px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    max-width: fit-content;
}

.btn-primary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    border: 1px solid #E5E7EB;
    padding: 0.9rem 1.6rem;
    border-radius: 500px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    max-width: fit-content;
}

.btn-secondary:hover {
    background: var(--white);
    border-color: #D1D5DB;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
    border-radius: 500px;
}

/* Hero Section */
.hero {
    padding: 0 0 6rem;
    text-align: center;
    background: #FAFAFA;
    position: relative;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

/* Grid pattern removed - was causing visible grid lines */
/* .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0, 0, 0, 0.015) 50px, rgba(0, 0, 0, 0.015) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(0, 0, 0, 0.015) 50px, rgba(0, 0, 0, 0.015) 51px);
    pointer-events: none;
    z-index: 0;
} */



.hero > .container {
    position: relative;
    z-index: 3;
}

.hero-video-container {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    margin: -12rem 0 -35rem;
    margin-left: calc(-50vw + 50%);
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    z-index: 2;
    will-change: transform;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: relative;
    filter: blur(0px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #E5E7EB;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #6B7280;
    margin-bottom: 1.5rem;
    border: none;
    position: relative;
    z-index: 10;

}

.hero-badge svg,
.hero-badge img {
    width: 14px;
    height: 14px;
    color: #6B7280;
    
}
.hero-blur {
    z-index: 10;
    /* background: transparent; */
    background: #FAFAFA;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    position: relative;
    color: var(--text-primary);
    box-shadow: none;
}
.hero-title {
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-primary);
    position: relative;
    z-index: 10;
    background: transparent;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    position: relative;
    z-index: 10;
    background: transparent;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 20;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    border-radius: 500px;
    gap: 0.75rem;
}

.btn-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white);
    color: #000000;
    flex-shrink: 0;
}

.btn-icon-circle svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
}

.trusted-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    position: relative;
    z-index: 20;
}

.trusted-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.avatar:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.avatar:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.trusted-text {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    right: 2.5rem;
    bottom: 3rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #374151;
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: none;
}

.scroll-top-btn:hover {
    background: #1F2937;
    transform: translateY(-2px);
}

.scroll-top-btn svg {
    width: 20px;
    height: 20px;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

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

.section-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Overview Section */
.overview-section {
    background: #fbfbfb;
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

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

.overview-image-container {
    position: relative;
    width: 100%;
    height: 650px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    background: linear-gradient(135deg, 
        rgba(147, 197, 253, 0.3) 0%, 
        rgba(196, 181, 253, 0.3) 50%, 
        rgba(251, 207, 232, 0.3) 100%);
}

.overview-background-wrapper {
    position: absolute;
    border-radius: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.overview-dashboard-image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-position: center;
    object-fit: cover;
}

/* Productivity Features - Dashboard */
/* Productivity Features - Dashboard */
.productivity-features {
    background: #ffffff;
    position: relative;
    padding: 6rem 2rem;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    margin-top: -35rem;
    padding-top: calc(6rem + 35rem);
    opacity: 0;
    animation: fadeInDashboard 0.3s ease-in 0.1s forwards;
}

@keyframes fadeInDashboard {
    to {
        opacity: 1;
    }
}

.dashboard-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.dashboard-window {
    background-image: url('/public/color_background.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 32px;
    box-shadow: 
        0 40px 100px rgba(0, 0, 0, 0.25),
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    height: 85vh;
    max-height: 900px;
    min-height: 700px;
    position: relative;
    padding: 1rem;
}

.dashboard-window::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    background: #fbfbfb;
    border-radius: 28px;
    z-index: 0;
}

.dashboard-window > * {
    position: relative;
    z-index: 1;
}

/* Sidebar */
.dashboard-sidebar {
    background: #FAFAFA;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #E5E7EB;
    border-radius: 28px 0 0 28px;
}

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

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.sidebar-menu {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    color: #6B7280;
}

.add-task-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1.5rem;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    color: #6B7280;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.nav-item:hover {
    background: #E5E7EB;
}

.nav-item.active {
    background: #000;
    color: white;
}

.nav-icon {
    font-size: 1.1rem;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.user-info {
    flex: 1;
}

.user-name {
    font-weight: 600;
    font-size: 0.875rem;
    color: #1F2937;
}

.user-email {
    font-size: 0.75rem;
    color: #6B7280;
}

.user-dropdown {
    font-size: 0.75rem;
    color: #9CA3AF;
}

/* Main Dashboard */
.dashboard-main {
    /* background: #fbfbfb;
    display: flex;
    flex-direction: column;
    overflow: hidden; */

    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dashboard-topbar {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.dashboard-search {
    flex: 1;
    max-width: 400px;
    padding: 0.75rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 0.95rem;
}

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

.team-avatars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.avatar-sm {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fbfbfb;
}

.av-1 { background: #10B981; }
.av-2 { background: #3B82F6; }
.av-3 { background: #F59E0B; }
.av-4 { background: #EC4899; }

.avatar-count {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
}

.topbar-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    background: #fbfbfb;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dashboard-content {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    border-radius: 0 28px 28px 0;
}

.dashboard-content::-webkit-scrollbar {
    width: 8px;
}

.dashboard-content::-webkit-scrollbar-track {
    background: #F3F4F6;
}

.dashboard-content::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 4px;
}

.dashboard-content::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

.dashboard-title h1 {
    font-size: clamp(1.5rem, 2.5vw + 0.75rem, 2rem);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.dashboard-subtitle {
    color: #6B7280;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* Overview Metrics */
.overview-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.metric-card {
    background: #FAFAFA;
    padding: .5rem;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
}

.metric-card.hidden {
    display: none !important;
}

.metric-card h3 {
    font-size: 0.875rem;
    color: #6B7280;
    margin: 0;
    font-weight: 500;
    order: 1;
    min-height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-icon {
    order: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.metric-progress {
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #3B82F6;
    border-radius: 3px;
}

.metric-sublabel {
    font-size: 0.75rem;
    color: #9CA3AF;
    margin-top: 0.5rem;
    order: 3;
}

/* Metrics Carousel Wrapper */
.overview-metrics-wrapper {
    position: relative;
    width: 100%;
}

.overview-metrics {
    transition: transform 0.5s ease-in-out;
}

.platform-message {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Carousel Dots */
.metrics-carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0;
}

.metrics-carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D1D5DB;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.metrics-carousel-dot.active {
    background: #0066FF;
    width: 24px;
    border-radius: 4px;
}

/* Task Overview Table */
.task-overview {
    background: #fbfbfb;
}

.task-overview-title {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.task-table {
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
}

.task-table-header {
    display: grid;
    grid-template-columns: 40px 2fr 1fr 1.5fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: #FAFAFA;
    font-weight: 600;
    font-size: 0.875rem;
    border-bottom: 1px solid #E5E7EB;
}

.task-table-body {
    background: #fbfbfb;
}

.task-row {
    display: grid;
    grid-template-columns: 40px 2fr 1fr 1.5fr 1fr 1fr 1fr;
    gap: 1rem;
    padding: 1rem 1.5rem;
    align-items: center;
    border-bottom: 1px solid #E5E7EB;
    transition: background 0.2s;
}

.task-row:hover {
    background: #FAFAFA;
}

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

.task-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.task-col-name {
    font-weight: 500;
}

.task-col-progress {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.task-progress-bar {
    flex: 1;
    height: 6px;
    background: #E5E7EB;
    border-radius: 3px;
    overflow: hidden;
}

.task-progress-fill {
    height: 100%;
    background: #10B981;
    border-radius: 3px;
}

.task-col-progress span {
    font-size: 0.875rem;
    color: #6B7280;
    min-width: 35px;
}

.task-col-priority {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.priority-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.priority-high { background: #EF4444; }
.priority-medium { background: #F59E0B; }
.priority-low { background: #10B981; }
.priority-inprogress { background: #8B5CF6; }

.task-col-date {
    font-size: 0.875rem;
    color: #6B7280;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-progress {
    background: #DBEAFE;
    color: #1E40AF;
}

.status-review {
    background: #FEF3C7;
    color: #92400E;
}

.status-notstarted {
    background: #F3F4F6;
    color: #4B5563;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Key Capabilities */
.key-capabilities {
    background: #ffffff;
    padding: 6rem 0;
    color: #1a1a1a;
}

.key-capabilities .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.key-capabilities .section-title {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.key-capabilities .highlight-cyan {
    color: #0166ff;
}

.key-capabilities .section-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.process-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    min-height: 480px;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.process-description {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    text-align: left;
}

.process-visual {
    width: 100%;
    height: 320px;
    margin-top: auto;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.process-visual .visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    opacity: 1;
}

.capabilities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.capability-tag {
    padding: 0.75rem 1.5rem;
    background: var(--secondary-color);
    border-radius: 30px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Smart Features */

.smart-features {
    background: #ffffff;/* background: var(--white); */
    padding: 6rem 0;
}

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

.smart-features .section-title {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.smart-features .highlight-cyan {
    color: #0166ff;
}

.smart-features .section-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.feature-cards-container {
    margin-top: 4rem;
}

.smart-feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.smart-feature-item:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.smart-feature-item.reverse {
    direction: rtl;
}

.smart-feature-item.reverse > * {
    direction: ltr;
}

.smart-feature-content {
    padding: 2rem 0;
}

.feature-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0166ff;
    background: rgba(1, 102, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.smart-feature-content h3 {
    font-size: clamp(1.75rem, 3.5vw + 0.75rem, 2.5rem);
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.feature-description {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 300;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    background: var(--text-primary);
    color: var(--white);
    border-radius: 500px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.smart-feature-visual {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.visual-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fef3f2 0%, #fce7f3 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smart-feature-image {
    width: 90%;
    height: 125%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Proof in Numbers */
/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 4rem 0 8rem;
}

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

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    color: #6b7280;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.faq-badge svg {
    width: 16px;
    height: 16px;
}

.faq-title {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #f9fafb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.faq-item.active {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    user-select: none;
}

.faq-question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    flex: 1;
    text-align: left;
}

.faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0166ff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-toggle svg {
    width: 20px;
    height: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* Get In Touch Section */
.get-in-touch {
    background: #1a1a1a;
    padding: 6rem 0;
    color: #ffffff;
}

.get-in-touch-header {
    text-align: center;
    margin-bottom: 4rem;
}

.get-in-touch-title {
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.get-in-touch-title .highlight-cyan {
    color: #00d9ff;
}

.get-in-touch-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    color: #b3b3b3;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.get-in-touch-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.get-in-touch-heading {
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.get-in-touch-description {
    font-size: clamp(1rem, 1.2vw + 0.5rem, 1.125rem);
    color: #b3b3b3;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.get-in-touch-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: #00d9ff;
    color: #1a1a1a;
    font-size: 1.125rem;
    font-weight: 300;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.get-in-touch-button:hover {
    background: #00b8d9;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.quick-response-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #252525;
    border-radius: 12px;
    border: 1px solid #333333;
}

.quick-response-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.quick-response-text {
    flex: 1;
}

.quick-response-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.quick-response-description {
    font-size: 0.9375rem;
    color: #b3b3b3;
    line-height: 1.6;
    margin: 0;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d9ff;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-value {
    font-size: 1rem;
    color: #b3b3b3;
    line-height: 1.5;
}

.proof-numbers {
    background: #ffffff;
    padding: 2rem 0 6rem;
}

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 760px;
    margin: 0 auto;
}

.cta-text {
    text-align: center;
    padding-top: 0;
    max-width: 640px;
}

.cta-title {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.25rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.cta-title .highlight-cyan {
    color: #0166ff;
}

.cta-description {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #000000;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 300;
    text-decoration: none;
    border-radius: 500px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.cta-button:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-visual {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 90%;
}

.dashboard-preview {
    width: 100%;
    max-width: 450px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px #fbfbfb;
    background: #fbfbfb;
    border: 1px solid #e5e7eb;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: stretch;
    height: 100%;
    margin-top: 2rem;
}

.dashboard-preview:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
}

.dashboard-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
    overflow: hidden;
}

.cta-image {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
    padding: 1.5rem
}

.dashboard-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255,255,255,0.1) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0,0,0,0.02) 20px, rgba(0,0,0,0.02) 21px),
        repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(0,0,0,0.02) 20px, rgba(0,0,0,0.02) 21px);
}

.cta-button svg {
    width: 16px;
    height: 16px;
}

/* Project Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    overflow-y: auto;
}

.project-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    margin: 2rem auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10001;
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10002;
    color: #6b7280;
}

.modal-close:hover {
    background: #e5e7eb;
    color: #1a1a1a;
    transform: rotate(90deg);
}

.modal-close svg {
    width: 20px;
    height: 20px;
}

.modal-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.modal-title {
    font-size: 2rem;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.project-form {
    padding: 2rem 2.5rem 2.5rem;
}

.modal-iframe-container {
    flex: 1;
    min-height: 600px;
    height: calc(90vh - 200px);
    overflow: hidden;
    border-radius: 0 0 16px 16px;
    position: relative;
    background: #f9fafb;
}

.modal-iframe-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    color: #1a1a1a;
    background: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0166ff;
    box-shadow: 0 0 0 3px rgba(1, 102, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: #0166ff;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: #000000;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 300;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-submit-btn:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-submit-btn:active {
    transform: translateY(0);
}

/* Get Things Done */
.workflow-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.workflow-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.workflow-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.workflow-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.workflow-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Pricing */
.pricing {
    background: var(--bg-light);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-btn {
    padding: 0.75rem 2rem;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.15);
}

.best-value {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.plan-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-primary);
}

.period {
    display: block;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-plan:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-plan-featured {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-plan-featured:hover {
    background: #0052CC;
}

/* Pricing Comparison */
.comparison-table {
    overflow-x: auto;
    margin-top: 3rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
}

thead {
    background: var(--bg-light);
}

th,
td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

th {
    font-weight: 700;
    color: var(--text-primary);
}

td:first-child {
    text-align: left;
    font-weight: 500;
}

.checkmark {
    color: var(--accent-green);
    font-size: 1.5rem;
    font-weight: 700;
}

/* Why Teams */
.why-teams {
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.why-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.why-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    background: var(--bg-light);
    overflow: hidden;
}

.testimonials-slider {
    overflow-x: auto;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    padding: 0 1rem;
}

.testimonial-card {
    min-width: 350px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Blog */
.blog {
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-content {
    padding: 2rem;
}

.blog-category {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
}

.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

/* FAQ */
.faq {
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052CC 100%);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Footer */
.footer {
    /* background: var(--text-primary); */
    background: #000000;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-wrapper .logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 1.5rem;
}

.footer-logo-wrapper .logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    filter: brightness(0) invert(1);
}

.footer-logo-wrapper .logo-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5rem;
}

.footer-logo-wrapper .ai-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.footer-logo-icon {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1920px) {
    .hero-badge {
        margin-top: -5rem;
    }
}


@media (max-width: 1440px) {
    .hero-badge {
        margin-top: 8rem;
    }
    
    .dashboard-content {
        scroll-margin-top: 200px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hamburger-menu {
        display: flex;
        right: 1.5rem;
    }
    
    .navbar .container,
    .navbar-scrolled .container {
        padding: 0 1.5rem;
    }

    .nav-links:not(.mobile-menu) {
        display: none;
    }

    .nav-content {
        justify-content: space-between;
        position: relative;
    }

    .nav-buttons {
        display: none;
    }

    .hero {
        padding: 4rem 0 8rem;
    }

    .hero > .container {
        padding-top: 2rem;
    }

    .hero-blur {
        margin-top: 1rem;
    }

    .hero-video-container {
        margin: -8rem 0 4 -28rem;
    }

    .hero-badge {
        margin-top: 15rem;
        font-size: 0.75rem;
        padding: 0.45rem 0.9rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        gap: 0.875rem;
        margin-bottom: 2.5rem;
        
    }

    .hero-buttons button {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }

    .trusted-section {
        margin-top: 2.5rem;
    }

    .smart-feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .smart-feature-visual {
        width: 100%;
    }

    .smart-feature-item.reverse {
        direction: ltr;
    }

    .smart-features.about-page .smart-feature-visual {
        width: 100%;
    }

    .smart-features.about-page .smart-feature-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .overview-section {
        padding: 4rem 1.5rem;
    }

    .overview-image-container {
        height: 500px;
        border-radius: 20px;
    }
    .dashboard-container {
        margin-top: 40rem;
    }

    .productivity-features {
        padding: 3rem 1rem;
    }

    .dashboard-window {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 600px;
        border-radius: 24px;
    }

    .dashboard-sidebar {
        display: none;
    }

    .overview-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .task-table-header,
    .task-row {
        grid-template-columns: 40px 2fr 1fr 1fr;
        font-size: 0.875rem;
    }

    .task-col-progress,
    .task-col-date,
    .task-col-status {
        display: none;
    }
}


@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
        right: 1.5rem;
    }
    
    .navbar .container,
    .navbar-scrolled .container {
        padding: 0 1.5rem;
    }

    .nav-links:not(.mobile-menu) {
        display: none;
    }
    
    .nav-content {
        justify-content: space-between;
        position: relative;
    }

    .nav-buttons {
        display: none;
    }

    .hero {
        padding: 0 0 3rem;
    }

    .key-capabilities {
        padding: 4rem 0;
    }
    .dashboard-container {
        margin-top: 40rem;
    }

    .process-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-card {
        padding: 2rem 1.5rem;
    }

    .process-visual {
        height: 250px;
    }

    .faq-section {
        padding: 4rem 0;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .get-in-touch {
        padding: 4rem 0;
    }

    .get-in-touch-header {
        margin-bottom: 3rem;
    }

    .get-in-touch-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quick-response-card {
        padding: 1.25rem;
    }

    .contact-list {
        gap: 1.5rem;
    }

    .modal-content {
        width: 95%;
        margin: 1rem auto;
        max-height: 95vh;
    }

    .modal-header {
        padding: 2rem 1.5rem 1.25rem;
    }

    .modal-title {
        font-size: 1.75rem;
    }

    .project-form {
        padding: 1.5rem 1.5rem 2rem;
    }

    .modal-iframe-container {
        min-height: 500px;
        height: calc(95vh - 180px);
    }

    .proof-numbers {
        padding: 4rem 0;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }

    .cta-text {
        text-align: center;
    }

    .dashboard-preview {
        max-width: 100%;
    }

    .dashboard-placeholder {
        height: 400px;
    }

    .smart-features {
        padding: 4rem 0;
    }

    .smart-features.about-page {
        padding-top: 5rem;
    }

    .smart-feature-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }

    .smart-feature-item.reverse {
        direction: ltr;
    }

    .smart-feature-visual {
        height: 300px;
        width: 100%;
    }

    .smart-features.about-page .smart-feature-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-video-container {
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        height: auto;
        margin: -6rem 0 -26rem;
        margin-left: calc(-50vw + 50%);
        z-index: 1;
    }

    .hero-badge {
        margin-top: 12rem;
        font-size: 0.75rem;
        padding: 0.1rem 0.9rem;
        margin-bottom: 0.2rem;
    }


    .hero-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.875rem;
    }

    .hero-buttons button {
        width: auto;
        flex: 0 1 auto;
    }

    .scroll-top-btn {
        right: 1rem;
        width: 36px;
        height: 36px;
    }

    .overview-section {
        padding: 3rem 1rem;
    }

    .overview-image-container {
        height: 400px;
        border-radius: 16px;
    }

    .trusted-section {
        flex-direction: column;
        gap: 0.75rem;
    }


    .features-grid,
    .workflow-features,
    .why-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hamburger-menu {
        display: flex;
        right: 1rem;
    }
    
    .navbar .container,
    .navbar-scrolled .container {
        padding: 0 1rem;
    }

    .nav-links:not(.mobile-menu) {
        display: none;
    }

    .nav-content {
        justify-content: space-between;
        position: relative;
    }

    .nav-buttons {
        display: none;
    }
    
    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-subtitle br {
        display: none;
    }

    [data-open-project-modal] {
        border-radius: 999px !important;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        display: inline-flex;
        justify-content: center;
    }

    .key-capabilities {
        padding: 3rem 0;
    }

    .key-capabilities .section-header {
        margin-bottom: 2.5rem;
    }

    .dashboard-content {
        
    }

    .process-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .process-card {
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .process-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .process-description {
        font-size: 0.9375rem;
        margin-bottom: 0.75rem;
    }

    .process-visual {
        height: 150px;
    }

    .smart-features {
        padding: 3rem 0;
    }

    .smart-features.about-page {
        padding-top: 5rem;
    }

    .smart-features.about-page .section-header {
        margin-top: 1.5rem;
    }

    .smart-features .section-header {
        margin-bottom: 2.5rem;
    }

    .smart-feature-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
        margin-bottom: 3rem;
    }

    .smart-feature-item.reverse {
        direction: ltr;
    }

    .smart-feature-content {
        padding: 0;
    }

    .smart-feature-content h3 {
        font-size: 1.5rem;
    }

    .feature-description {
        font-size: 0.9375rem;
    }

    .smart-feature-visual {
        height: 250px;
        width: 100%;
    }

    .smart-features.about-page .smart-feature-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .learn-more {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
        font-weight: 300;
    }

    .faq-section {
        padding: 3rem 0;
    }

    .faq-header {
        margin-bottom: 2.5rem;
    }

    .faq-title {
        font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question-text {
        font-size: 0.9375rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .faq-answer p {
        font-size: 0.9375rem;
    }

    .modal-content {
        width: 88%;
        max-width: 360px;
        margin: 0.5rem auto;
        border-radius: 10px;
        max-height: 70vh;
    }

    .modal-iframe-container {
        padding: 0.75rem;
        min-height: 320px;
    }

    .get-in-touch {
        padding: 3rem 0;
    }

    .get-in-touch-header {
        margin-bottom: 2.5rem;
    }

    .get-in-touch-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .get-in-touch-button {
        width: 100%;
        max-width: 100%;
    }

    .quick-response-card {
        flex-direction: column;
        padding: 1.25rem;
    }

    .quick-response-icon {
        width: 40px;
        height: 40px;
    }

    .contact-item {
        gap: 0.875rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .modal-content {
        width: 100%;
        margin: 0;
        max-height: 100vh;
        border-radius: 15px;
    }

    .modal-header {
        padding: 1.5rem 1.25rem 1rem;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-subtitle {
        font-size: 0.9375rem;
    }

    .project-form {
        padding: 1.25rem 1.25rem 1.5rem;
    }

    .modal-iframe-container {
        min-height: 400px;
        height: calc(100vh - 160px);
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .proof-numbers {
        padding: 3rem 0;
    }

    .cta-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .cta-text {
        text-align: center;
    }

    .dashboard-preview {
        max-width: 100%;
    }

    .dashboard-placeholder {
        height: 300px;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .hero {
        min-height: 500px;
    }

    .hero > .container {
        padding-top: 0.25rem;
    }

    .hero-blur {
        /* margin-top: 3rem; */
    }

    .hero-badge {
        font-size: 0.7rem;
        /* padding: 0.4rem 0.8rem;
        margin-bottom: 0.02rem; */
        border-radius: 16px;
        gap: 0.4rem;
        margin-top: 12rem;
    }

    .hero-badge svg,
    .hero-badge img {
        width: 12px;
        height: 12px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.5rem;
        width: 100%;
        max-width: 360px;
        margin: 0 auto 2rem;
        align-items: center;
    }

    .hero-buttons button {
        flex: 1 1 0;
        font-size: 0.875rem;
        padding: 0.85rem 1rem;
        border-radius: 999px;
    }

    .hero-buttons .btn-primary {
        min-height: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        line-height: 1;
        white-space: nowrap;
        font-size: 0.875rem;
        padding: 0.85rem 0.75rem;
        flex: 1.2 1 0;
        min-width: 0;
    }
    .hero-buttons .btn-secondary {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        line-height: 1;
    }

    .hero-video-container {
        width: 100vw;
        height: auto;
        margin: -4rem 0 -20rem;
        margin-left: calc(-50vw + 50%);
        z-index: 1;
    }
    
    .hero-video {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        min-height: 250px;
        position: center;

    }

    .overview-section {
        padding: 2rem 1rem;
        overflow: visible;
    }

    .overview-image-container {
        height: 300px;
        border-radius: 12px;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
        border-radius: 500px;

    }

    .scroll-top-btn {
        display: none;
    }

    .productivity-features {
        padding: 2rem 1rem;
    }

    .dashboard-window {
        border-radius: 20px;
        min-height: auto;
        max-height: none;
        height: auto;
    }

    .dashboard-content {
        padding: 1rem;
        overflow-y: visible;
        max-height: none;
    }

    .overview-metrics-wrapper {
        position: relative;
        overflow: hidden;
        width: 100%;
        /* Height will be calculated dynamically by JavaScript to show exactly 2 cards */
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .overview-metrics {
        display: flex !important;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        transition: transform 0.5s ease-in-out;
        will-change: transform;
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .metric-card {
        min-height: 180px;
        height: 180px;
        padding: 1rem 0.5rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        flex-shrink: 0;
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        position: relative;
    }
    
    .metric-card h3 {
        flex-shrink: 0;
    }
    
    .metric-icon {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 0;
    }
    
    .metric-icon img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    .metric-sublabel {
        flex-shrink: 0;
    }

    .metrics-carousel-dots {
        display: flex;
    }


    .task-table-header,
    .task-row {
        grid-template-columns: 40px 1fr;
        padding: 0.75rem 1rem;
    }

    .task-col-assignee,
    .task-col-priority {
        display: none;
    }

    .dashboard-topbar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .dashboard-search {
        max-width: 100%;
    }

    .topbar-actions {
        justify-content: space-between;
    }
}

/* Extra small mobile devices (iPhone SE, small phones) */
@media (max-width: 375px) {
    .hero {
        min-height: 450px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.1rem 0.9rem;
        margin-bottom: 0.2rem;
    }
    
    .hero-video-container {
        margin: -3rem 0 4 -18rem;
    }
    
    .hero-video {
        min-height: 220px;
    }

    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
        flex-direction: row;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-buttons button {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        width: auto;
        flex: 0 1 auto;
    }
    
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.workflow-card,
.why-card,
.testimonial-card,
.blog-card,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    padding: 6rem 0;
    min-height: calc(100vh - 200px);
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-title {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.contact-title .highlight-cyan {
    color: #0166ff;
}

.contact-subtitle {
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-primary);
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0166ff;
    box-shadow: 0 0 0 3px rgba(1, 102, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    padding: 1rem 2.5rem;
    background: #000000;
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 300;
    border: none;
    border-radius: 500px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 0.5rem;
}

.contact-submit-btn:hover:not(:disabled) {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

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

.contact-info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.contact-info-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

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

.contact-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-detail-item svg {
    color: #0166ff;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-detail-item strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-detail-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive styles for contact section */
@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 4rem 0;
    }
    
    .contact-header {
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-content {
        padding: 0 1rem;
    }
}

@media (max-width: 320px) {
    .hero-buttons {
        gap: 0.375rem;
        max-width: 100%;
    }
    
    .hero-buttons .btn-primary {
        font-size: 0.75rem;
        padding: 0.85rem 0.5rem;
        gap: 0.25rem;
        letter-spacing: -0.01em;
    }
    
    .hero-buttons button {
        font-size: 0.75rem;
        padding: 0.85rem 0.625rem;
    }
    
    .hero-buttons .btn-icon-circle {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }
    
    .hero-buttons .btn-icon-circle svg {
        width: 12px;
        height: 12px;
    }
}

