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

body {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(at 0% 0%, rgba(22, 33, 62, 0.4) 0px, transparent 50%),
        radial-gradient(at 50% 0%, rgba(26, 26, 46, 0.4) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(10, 10, 10, 0.4) 0px, transparent 50%);
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #00d4ff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle 800px at var(--mouse-x) var(--mouse-y), rgba(0, 212, 255, 0.1), transparent 80%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #00d4ff, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    letter-spacing: -1.5px;
    animation: shine 8s linear infinite; /* Slowed down for better legibility */
}

@keyframes shine {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    margin-bottom: 2.5rem;
    color: #b0b0b0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    min-width: 160px;
}

.btn-sm {
    padding: 0.6rem 1.5rem;
    min-width: auto;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d4ff;
    color: #00d4ff;
}

/* Sections */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

/* Showcase Section */
.showcase {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.showcase-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.showcase-item.showcase-full {
    grid-template-columns: 1fr;
    text-align: center;
    direction: ltr !important;
}

.showcase-item.showcase-full .showcase-image {
    width: 100%;
}

.showcase-item.showcase-full .mockup-container {
    padding: 1rem;
    min-height: auto;
}

.showcase-item.showcase-full .showcase-image img {
    max-width: 100%;
    max-height: none;
}

.showcase-item:nth-child(even) {
    direction: rtl;
}

.showcase-item:nth-child(even) .showcase-content {
    direction: ltr;
}


.showcase-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    max-height: 450px;
    object-fit: contain;
    border-radius: 12px;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect for premium feel */
.showcase-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.25);
}

.mockup-container {
    min-height: 300px;
    padding: 2rem;
    background: radial-gradient(circle at center, rgba(0,212,255,0.08), transparent);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Toolbar Mockups */
.toolbar-mockup {
    background: rgba(60, 60, 60, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toolbar-mockup.vertical {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 60px;
}

.toolbar-mockup.horizontal {
    display: flex;
    flex-direction: row;
    gap: 4px;
    flex-wrap: wrap;
    max-width: 500px;
}

.tool-item {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.tool-item.active,
.tool-item.highlight {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.tool-item.record {
    background: linear-gradient(45deg, #ff4444, #cc0000);
    color: #ffffff;
    animation: pulse 2s infinite;
}

.tool-item.clear-btn {
    font-size: 10px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    width: 60px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.tooltip {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    animation: fadeInTooltip 2s ease-in-out infinite;
}

@keyframes fadeInTooltip {
    0%, 70%, 100% { opacity: 0; }
    10%, 60% { opacity: 1; }
}

/* Screen Mockup */
.screen-mockup {
    background: #f0f0f0;
    border-radius: 12px;
    padding: 20px;
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.screen-content {
    position: relative;
}

.app-window {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.window-header {
    background: #f8f9fa;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e9ecef;
}

.window-controls {
    display: flex;
    gap: 6px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.window-title {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.window-body {
    padding: 20px;
    height: 200px;
}

.slide-content h4 {
    color: #333;
    margin-bottom: 16px;
    font-size: 18px;
}

.chart-placeholder {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 6px;
    position: relative;
}

.chart-placeholder::after {
    content: "📊";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 32px;
}

.annotation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.annotation-svg {
    width: 100%;
    height: 100%;
}

/* Board Modes */
.board-modes {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.board-mode {
    width: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.board-mode:hover {
    transform: translateY(-5px);
}

.board-mode.active {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.3);
}

.board-header {
    padding: 12px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.7);
}

.board-content {
    height: 140px;
}

.board-content svg {
    width: 100%;
    height: 100%;
}

.showcase-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2rem);
    margin-bottom: 1rem;
    color: #00d4ff;
    line-height: 1.2;
    font-weight: 700;
}

.showcase-content p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

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

/* Features Section */
.features {
    padding: 6rem 0;
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: var(--mouse-y, 0px);
    left: var(--mouse-x, 0px);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 30%);
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #00d4ff;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    color: #ffffff;
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
    font-weight: 700;
}

.feature-card p {
    color: #a0a0a0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Toolset Section */
.toolset-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.toolset-title {
    font-size: clamp(1.8rem, 3vw, 2rem);
    text-align: center;
    margin-bottom: 2.5rem;
    color: #ffffff;
}

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

.tool-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tool-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.tool-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.tool-card h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.2;
    font-weight: 700;
}

.tool-card p {
    color: #a0a0a0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Installation Section */
.installation {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.installation-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.installation-steps {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    gap: 2rem;
}

.step-number {
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
    line-height: 1.3;
}

.step-content p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 1rem;
}

/* Permission Notice */
.permission-notice {
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warning-icon {
    font-size: 1.5rem;
    color: #ffc107;
    flex-shrink: 0;
}

.permission-content p {
    margin-bottom: 0.8rem;
    color: #e0e0e0;
    line-height: 1.6;
}

.permission-content p:last-child {
    margin-bottom: 0;
}

.permission-content strong {
    color: #00d4ff;
}

.permission-note {
    font-size: 0.9rem;
    color: #b0b0b0 !important;
    font-style: italic;
}

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

/* Pricing Section */
.pricing {
    padding: 6rem 0;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.featured-plan {
    border: 2px solid #00d4ff;
    transform: scale(1.05);
    background: rgba(10, 10, 10, 0.8); /* Dark background for readability */
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.1);
}

.featured-plan::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 28px;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    z-index: -1;
    opacity: 0.3;
    filter: blur(10px);
}

.featured-plan:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-header {
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    line-height: 1.3;
}

.plan-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge.popular {
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    color: #ffffff;
}

.basic-plan .plan-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
}

.enterprise-plan .plan-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.price-container {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #00d4ff, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.price-period {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 400;
}

.annual-price {
    font-size: 1.1rem;
    color: #00d4ff;
    font-weight: 600;
    line-height: 1.4;
}

.annual-note {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 400;
}

.plan-description {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

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

.pricing-features li {
    padding: 0.5rem 0;
    color: #b0b0b0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.pricing-features li:before {
    content: "✓";
    color: #00d4ff;
    position: absolute;
    left: 0;
    font-weight: 600;
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1rem;
    margin-top: auto;
}

.pricing-note {
    font-size: 0.85rem;
    color: #b0b0b0;
    font-style: italic;
    margin-top: 1rem;
}

.enterprise-note {
    font-size: 0.9rem;
    color: #ffc107;
    margin-top: 1rem;
}

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

.pricing-guarantee {
    font-size: 1.1rem;
    color: #00d4ff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.pricing-info {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00d4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

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

.download-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-platform {
    font-size: 0.9rem;
    color: #b0b0b0;
}

.download-os {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
}

/* Footer */
.footer {
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, transparent, rgba(0, 212, 255, 0.02));
}

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

.footer-brand p {
    color: #a0a0a0;
    margin-top: 1rem;
    max-width: 300px;
    font-size: 0.95rem;
}

.footer-links h4 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #00d4ff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #606060;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .showcase-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .showcase-item:nth-child(even) {
        direction: ltr;
    }
    
    .toolbar-mockup.horizontal {
        max-width: 100%;
        justify-content: center;
    }
    
    .board-modes {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .board-mode {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        padding: 0 1rem;
        min-height: 90vh;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .features-grid,
    .toolset-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-plan {
        transform: none;
    }
    
    .featured-plan:hover {
        transform: translateY(-5px);
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .permission-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .mockup-container {
        min-height: 250px;
        padding: 1rem;
    }
    
    .toolbar-mockup.vertical {
        width: 50px;
    }
    
    .tool-item {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-buttons {
        gap: 0.5rem;
    }
    
    .feature-card,
    .tool-card {
        padding: 1.5rem;
    }
    
    .download-btn {
        min-width: auto;
        width: 100%;
        max-width: 280px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for better accessibility */
.btn:focus,
.download-btn:focus,
.nav-links a:focus {
    outline: 2px solid #00d4ff;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .tool-card,
    .pricing-card {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-secondary {
        border-width: 3px;
    }
}

/* Auth Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.1);
}

.modal-header h2 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: #a0a0a0;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group label {
    display: block;
    color: #ffffff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    border-color: #00d4ff;
}

.auth-btn {
    margin-top: 1rem;
    width: 100%;
}

.auth-footer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: #a0a0a0;
}

.auth-footer a {
    color: #00d4ff;
    text-decoration: none;
}
/* Contact Section */
.contact {
    padding: 6rem 0;
    position: relative;
    background: rgba(255, 255, 255, 0.01);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.contact-info > p {
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.info-icon {
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.info-text p {
    color: #00d4ff;
    font-weight: 500;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-form .form-group label {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #00d4ff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Help Menu Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.75rem;
    min-width: 180px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 1100;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #e0e0e0;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #00d4ff;
    padding-left: 1.25rem;
}

/* Modal System */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #0f111a;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #ff4757;
    transform: rotate(90deg);
}

.modal-content-wrapper {
    display: grid;
    grid-template-columns: 200px 1fr;
    height: 85vh;
}

.modal-nav {
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.modal-nav-btn {
    background: transparent;
    border: none;
    color: #a0a0a0;
    padding: 0.8rem 1.2rem;
    text-align: left;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-nav-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.modal-nav-btn.active {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.1);
}

.modal-body {
    padding: 3rem;
    overflow-y: auto;
    color: #e0e0e0;
}

/* Modal Scrollbar */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Modal Content Styles */
.modal-body h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    background: linear-gradient(45deg, #ffffff, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.modal-body h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #00d4ff;
}

.modal-body p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.modal-body ul, .modal-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.75rem;
    color: #b0b0b0;
}

.modal-body strong {
    color: #ffffff;
}

/* FAQ styling */
.faq-item {
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.25rem;
}

.faq-question {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: block;
}

.faq-answer {
    color: #b0b0b0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .modal-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .modal-nav {
        flex-direction: row;
        overflow-x: auto;
        padding: 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .modal-nav-btn {
        white-space: nowrap;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
}
