* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
    background: #0f172a;
    overflow-x: hidden;
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-top: none;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo h2 {
    color: #2563eb;
    font-weight: 700;
    font-size: 1.8rem;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

.cta-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #e2e8f0;
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.5);
    transition: right 0.3s;
    z-index: 1002;
    border-left: 1px solid rgba(59, 130, 246, 0.2);
}

.mobile-sidebar.open {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #334155;
}

.sidebar-header h3 {
    color: #2563eb;
    margin: 0;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #94a3b8;
}

.sidebar-links {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-links a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #334155;
    transition: color 0.3s;
}

.sidebar-links a:hover {
    color: #2563eb;
}

.sidebar-links .cta-btn.mobile {
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1001;
}

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

.contact {
    padding: 100px 0;
    background: #1e293b;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

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

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

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

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-item h4 {
    margin: 0 0 0.25rem 0;
    color: #f1f5f9;
}

.contact-item p {
    margin: 0;
    color: #cbd5e1;
}

.contact-form {
    background: #334155;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

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

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid #475569;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    background: #1e293b;
    color: #e2e8f0;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563eb;
}

.contact-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.highlight {
    color: #60a5fa;
}

.hero-subtitle {
    font-size: 1.3rem !important;
    font-weight: 600;
    color: #8fffe1db;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.primary-btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.primary-btn:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: white;
    color: #2563eb;
}

.social-proof {
    opacity: 0.8;
    font-size: 0.9rem;
}

.dashboard-preview {
    background: rgba(51, 65, 85, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.dashboard-preview:hover::before {
    left: 100%;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.preview-header {
    background: #475569;
    padding: 1rem;
    border-bottom: 1px solid #64748b;
}

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

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #64748b;
}

.preview-dots span:first-child {
    background: #ff5f56;
}

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

.preview-dots span:nth-child(3) {
    background: #27ca3f;
}

.preview-content {
    padding: 2rem;
    color: #f1f5f9;
    position: relative;
    z-index: 2;
}

.dashboard-preview .metric-card {
    transition: transform 0.3s ease;
}

.dashboard-preview:hover .metric-card {
    transform: translateY(-2px);
}

.dashboard-preview .sentiment-bar {
    transition: all 0.3s ease;
}

.dashboard-preview:hover .sentiment-bar {
    transform: scaleX(1.02);
}

.dashboard-preview .request-item {
    transition: all 0.3s ease;
}

.dashboard-preview:hover .request-item {
    transform: translateX(5px);
}

.dashboard-preview .count {
    transition: all 0.3s ease;
}

.dashboard-preview:hover .count {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.3);
}

.metric-card {
    margin-bottom: 2rem;
}

.metric-card h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.sentiment-bar {
    display: flex;
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.positive {
    background: #28a745;
}

.neutral {
    background: #ffc107;
}

.negative {
    background: #dc3545;
}

.metric-card span {
    font-size: 0.9rem;
    color: #cbd5e1;
}

.request-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #64748b;
    color: #e2e8f0;
}

.count {
    background: rgba(37, 99, 235, 0.2);
    color: #3b82f6;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.features {
    padding: 100px 0;
    background: #1e293b;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 4rem;
}

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

.feature-card {
    background: rgba(51, 65, 85, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.feature-card p {
    color: #cbd5e1;
    line-height: 1.6;
}

.pricing {
    padding: 100px 0;
    background: #0f172a;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

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

.pricing-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(51, 65, 85, 0.5);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.pricing-card.popular {
    border-color: #3b82f6;
    transform: scale(1.05);
    background: rgba(51, 65, 85, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: #94a3b8;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #f1f5f9;
}

.period {
    font-size: 1rem;
    color: #94a3b8;
}

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

.features-list li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    position: relative;
    padding-left: 1.5rem;
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid #334155;
    background: #1e293b;
    color: #e2e8f0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pricing-btn:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.pricing-btn.primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.pricing-btn.primary:hover {
    background: #2563eb;
}

.pricing-note {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.comparison {
    padding: 100px 0;
    background: #1e293b;
}

.comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.comparison-table {
    background: #334155;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.table-wrapper {
    overflow-x: auto;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
}

.table-header {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    color: white;
    font-weight: 600;
}

.table-row:nth-child(even) {
    background: #475569;
}

.feature-col,
.platform-col {
    padding: 1rem;
    text-align: center;
    color: #e2e8f0;
}

.feature-col {
    text-align: left;
    font-weight: 500;
    color: #f1f5f9;
}

.platform-col.voxly {
    background: rgba(59, 130, 246, 0.2);
    /* color: #60a5fa; */
    color: #63ff7f;
    font-weight: 600;
}

.competitor-feature {
    text-align: center;
}

.feature-highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.feature-highlight h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fbbf24;
    color: #1f2937;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.integration {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.integration h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.permission-notice {
    max-width: 800px;
    margin: 0 auto 3rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid #3b82f6;
    border-radius: 12px;
    padding: 1.5rem;
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.notice-content strong {
    color: #60a5fa;
    font-size: 1.1rem;
}

.notice-content p {
    margin: 0.5rem 0 0 0;
    color: #cbd5e1;
}

.integration-content {
    max-width: 1200px;
    margin: 0 auto;
}

.integration-flow {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
    flex: 1;
    min-width: 200px;
    background: rgba(51, 65, 85, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: transform 0.3s;
}

.flow-step:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.flow-step h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
}

.flow-step p {
    color: #cbd5e1;
}

.step-note {
    display: block;
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
    margin-top: 0.5rem;
}

.flow-arrow {
    font-size: 2rem;
    color: #3b82f6;
    font-weight: bold;
    align-self: center;
}

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

.security-card {
    background: rgba(51, 65, 85, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.allowed-card .card-header {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-bottom: 3px solid #10b981;
}

.restricted-card .card-header {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2) 0%, rgba(239, 68, 68, 0.1) 100%);
    border-bottom: 3px solid #ef4444;
}

.card-header h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #f1f5f9;
}

.safety-badge,
.guarantee-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.safety-badge {
    background: #10b981;
    color: white;
}

.guarantee-badge {
    background: #ef4444;
    color: white;
}

.access-list {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
}

.access-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #475569;
    position: relative;
    padding-left: 2rem;
    color: #e2e8f0;
}

.access-list.allowed li:before {
    content: '✅';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.access-list.restricted li:before {
    content: '❌';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.card-footer {
    padding: 1rem 1.5rem;
    background: #475569;
    border-top: 1px solid #64748b;
}

.card-footer small {
    color: #94a3b8;
    font-style: italic;
}

.trust-section {
    background: rgba(51, 65, 85, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.2);
    margin-bottom: 3rem;
    text-align: center;
}

.trust-section h3 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    color: #f1f5f9;
}

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

.trust-item {
    text-align: center;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.trust-item h4 {
    margin-bottom: 0.5rem;
    color: #f1f5f9;
    font-size: 1.1rem;
}

.trust-item p {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.integration-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-content h4 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

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

.doc-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.doc-link.primary {
    background: #ff4757;
    color: white;
}

.doc-link.primary:hover {
    background: #ff3742;
    transform: translateY(-2px);
}

.doc-link.secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.doc-link.secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cta-content small {
    opacity: 0.8;
    font-style: italic;
}

.faq {
    padding: 100px 0;
    background: #0f172a;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #f1f5f9;
}

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

.faq-item {
    border-bottom: 1px solid #334155;
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    margin: 0 -1rem;
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateX(5px);
}

.faq-topic-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    transition: all 0.3s;
}

.faq-question:hover .faq-topic-icon {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #f1f5f9;
    flex: 1;
    margin: 0;
}

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

.faq-answer {
    padding-bottom: 1.5rem;
    color: #cbd5e1;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

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

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.email-signup {
    display: flex;
    max-width: 500px;
    margin: 0 auto 1rem;
    gap: 1rem;
}

.email-signup input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.signup-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.signup-btn:hover {
    background: #2563eb;
}

.privacy-note {
    font-size: 0.9rem;
    opacity: 0.7;
}

.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
    z-index: 1000;
}

.chat-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.chat-icon {
    font-size: 1.5rem;
    color: white;
}

.chat-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.chat-notification {
    position: absolute;
    right: 70px;
    bottom: 0;
    background: #334155;
    color: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    white-space: nowrap;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.chat-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-notification:after {
    content: '';
    position: absolute;
    right: -8px;
    bottom: 15px;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    border-left-color: #334155;
}

.chat-box {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 450px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: none;
    flex-direction: column;
    z-index: 1001;
}

.chat-box.open {
    display: flex;
}

.chat-header {
    background: #3b82f6;
    color: white;
    padding: 1rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bot-message,
.user-message {
    max-width: 80%;
}

.bot-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.bot-message .message-content {
    background: #334155;
    color: #f1f5f9;
}

.user-message .message-content {
    background: #3b82f6;
    color: white;
}

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

.chat-input input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #475569;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
    background: #334155;
    color: #e2e8f0;
}

.chat-input input:focus {
    border-color: #3b82f6;
}

.chat-input button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.chat-input button:hover {
    background: #2563eb;
}

.footer {
    background: #0f172a;
    color: white;
    padding: 60px 0 20px;
    border-top: 1px solid #334155;
}

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

.footer-brand h3 {
    color: #3b82f6;
    margin-bottom: 1rem;
}

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

.link-group h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.link-group a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.link-group a:hover {
    color: #3b82f6;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .integration-flow {
        gap: 1.5rem;
    }

    .flow-step {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-container {
        position: relative;
    }

    .nav-container .cta-btn {
        position: absolute;
        right: 75px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

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

    .contact-form {
        padding: 1.5rem;
    }

    .navbar {
        padding: 0.75rem 0;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

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

    .pricing-card.popular {
        transform: none;
    }

    .comparison-table {
        min-width: 600px;
        font-size: 0.85rem;
    }

    .integration-flow {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .flow-step {
        min-width: 250px;
        max-width: 300px;
    }

    .flow-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    .security-comparison {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .trust-section {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .doc-link {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .notice-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .permission-notice {
        margin: 0 15px 2rem;
        padding: 1.25rem;
    }

    .email-signup {
        flex-direction: column;
        gap: 0.75rem;
    }

    .email-signup input,
    .signup-btn {
        width: 100%;
    }

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

    .dashboard-preview {
        transform: none !important;
    }

    .chat-notification {
        right: 10px;
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .chat-bubble {
        right: 15px;
        bottom: 15px;
        width: 50px;
        height: 50px;
    }

    .chat-box {
        right: 15px;
        bottom: 75px;
        width: calc(100vw - 30px);
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .flow-step {
        min-width: 200px;
        padding: 1.5rem 1rem;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .security-card {
        margin: 0 10px;
    }

    .trust-section {
        padding: 1.5rem 1rem;
    }

    .integration-cta {
        padding: 2rem 1.5rem;
    }

    .chat-box {
        width: calc(100vw - 20px);
        right: 10px;
        height: 400px;
    }
}

@media (max-width: 420px) {
    .preview-content {
        padding: 1rem;
    }

    .dashboard-preview {
        transform: none !important;
    }
}

@media (max-width: 374px) {
    .preview-content {
        padding: 0.5rem;
    }

    .nav-container {
        padding: 0 10px;
    }

    .nav-container .cta-btn {
        position: absolute;
        right: 60px;
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}