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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1e293b 0%, #7c3aed 50%, #2563eb 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #ffffff;
    line-height: 1.6;
}

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

/* Glassmorphic Effects */
.glassmorphic-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e293b 0%, #7c3aed 50%, #2563eb 100%);
    z-index: -2;
}

.dot-pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: -1;
}

.dashboard-card {
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.dashboard-card:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.metric-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.metric-card:hover {
    background: rgba(30, 41, 59, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.btn-dashboard {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    text-decoration: none;
    display: inline-block;
}

.btn-dashboard:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Ensure btn-large sizing takes precedence */
.btn-outline.btn-large {
    padding: 1rem 2rem !important;
    font-size: 1.125rem !important;
    font-weight: 600 !important;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

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

.logo-img {
    height: 3.5rem;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

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

.logo-blue {
    color: #60a5fa;
}

.logo-purple {
    color: #a78bfa;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #d1d5db;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #60a5fa;
    background: rgba(96, 165, 250, 0.1);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 5rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.8) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.hero-metrics {
    display: flex;
    gap: 2rem;
    color: #d1d5db;
}

.metric {
    text-align: center;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.metric-value.blue { color: #60a5fa; }
.metric-value.green { color: #34d399; }
.metric-value.purple { color: #a78bfa; }
.metric-value.orange { color: #fb923c; }
.metric-value.red { color: #f87171; }

.metric-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.metric-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.metric-icon.blue { color: #60a5fa; }
.metric-icon.green { color: #34d399; }
.metric-icon.purple { color: #a78bfa; }
.metric-icon.orange { color: #fb923c; }

.metric-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.metric-desc {
    font-size: 0.875rem;
    color: #d1d5db;
}

/* Product Preview Section */
.product-preview-section {
    position: relative;
    padding: 5rem 0;
}

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

.section-title-card {
    display: inline-block;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    text-align: center;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.product-icon.blue { color: #60a5fa; }
.product-icon.green { color: #34d399; }
.product-icon.purple { color: #a78bfa; }
.product-icon.red { color: #f87171; }
.product-icon.orange { color: #fb923c; }
.product-icon.yellow { color: #fbbf24; }

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.product-tagline {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-tagline {
    color: #60a5fa;
}

.product-description {
    color: #d1d5db;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    margin-bottom: 2rem;
}

.feature {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

/* Value Proposition Section */
.value-proposition-section {
    position: relative;
    padding: 5rem 0;
}

.value-content {
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    margin-bottom: 3rem;
}

.value-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.value-subtitle {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
}

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

.value-point {
    text-align: center;
    padding: 2rem;
}

.value-point h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0;
}

.value-point p {
    color: #d1d5db;
    line-height: 1.6;
}

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

.value-icon.red { color: #f87171; }
.value-icon.yellow { color: #fbbf24; }
.value-icon.blue { color: #60a5fa; }
.value-icon.purple { color: #a78bfa; }
.value-icon.green { color: #34d399; }
.value-icon.orange { color: #fb923c; }

/* Responsive Design */
@media (max-width: 1024px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

.value-point:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.value-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.value-icon.blue { color: #60a5fa; }
.value-icon.green { color: #34d399; }
.value-icon.purple { color: #a78bfa; }
.value-icon.orange { color: #fb923c; }

.value-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.value-text p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Problem Solution Section */
.problem-solution-section {
    position: relative;
    padding: 5rem 0;
}

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

.problem-card,
.solution-card {
    transition: all 0.3s ease;
}

.problem-card:hover,
.solution-card:hover {
    transform: scale(1.02);
}

.problem-header,
.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.problem-icon,
.solution-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.problem-icon.red {
    background: rgba(248, 113, 113, 0.2);
    color: #f87171;
}

.solution-icon.blue {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

.problem-title,
.solution-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.problem-text,
.solution-text {
    color: #d1d5db;
    line-height: 1.6;
}

.cta-container {
    text-align: center;
    margin-top: 4rem;
}

.cta-card {
    display: inline-block;
    text-align: center;
    max-width: 600px;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    color: #d1d5db;
    margin-bottom: 2rem;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 5rem 0;
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.cta-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-main-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-benefits {
    display: flex;
    gap: 2rem;
    color: #d1d5db;
}

.benefit {
    text-align: center;
}

.benefit-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.benefit-value.blue { color: #60a5fa; }
.benefit-value.green { color: #34d399; }
.benefit-value.purple { color: #a78bfa; }

.benefit-label {
    font-size: 0.875rem;
    color: #9ca3af;
}

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

/* Footer */
.footer {
    position: relative;
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

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

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

.footer-logo-img {
    height: 2.5rem;
    width: auto;
}

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

.footer-description {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #60a5fa;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

.modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.modal-close {
    background: none;
    border: none;
    color: #374151;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #111827;
    transform: scale(1.1);
}

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

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

.form-group label {
    color: white;
    font-weight: 500;
}

.form-group input,
.form-group select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Dropdown option styling */
.form-group select option {
    background: #1e293b;
    color: white;
    padding: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: none;
}

/* Alternative styling for browsers that don't support option styling */
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.15);
}

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

.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.15);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 2px 0 0 0;
    cursor: pointer;
}

.privacy-note {
    color: #9ca3af;
    font-size: 0.875rem;
    text-align: center;
    margin-top: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-main-title {
        font-size: 2rem;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .value-points {
        grid-template-columns: 1fr;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .value-point {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-actions {
        gap: 1.5rem;
    }
    
    .cta-actions {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .dashboard-card {
        padding: 1.5rem;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .product-preview-section,
    .value-proposition-section,
    .problem-solution-section,
    .cta-section {
        padding: 3rem 0;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-on-hover {
    transition: transform 0.3s ease;
}

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

/* Product Pages Styles */
.product-header {
    position: relative;
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.product-header-content {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-header-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.product-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.product-header-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.product-header-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.product-header-metrics {
    display: flex;
    gap: 2rem;
    color: #d1d5db;
}

.product-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-detail-section {
    position: relative;
    padding: 5rem 0;
}

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.product-info {
    text-align: left;
}

.product-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.product-icon-large.blue { color: #60a5fa; }
.product-icon-large.green { color: #34d399; }
.product-icon-large.purple { color: #a78bfa; }

.product-detail-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
}

.product-detail-tagline {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.product-detail-tagline.blue { color: #60a5fa; }
.product-detail-tagline.green { color: #34d399; }
.product-detail-tagline.purple { color: #a78bfa; }

.product-detail-overview {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.product-features {
    padding: 2rem;
}

.features-title,
.benefits-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

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

.feature-item,
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
}

.feature-check {
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-check.blue { color: #60a5fa; }
.feature-check.green { color: #34d399; }
.feature-check.purple { color: #a78bfa; }

.feature-item div,
.benefit-item div {
    color: #d1d5db;
    line-height: 1.6;
}

.feature-item strong,
.benefit-item strong {
    color: white;
}

.blue { color: #60a5fa; }
.green { color: #34d399; }
.purple { color: #a78bfa; }

.perfect-for {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-top: 2rem;
}

.perfect-for-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.perfect-for-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.perfect-for-text {
    color: #d1d5db;
    line-height: 1.6;
}

.product-integration-section {
    position: relative;
    padding: 5rem 0;
}

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

.integration-details {
    padding: 3rem;
}

.integration-features {
    margin-bottom: 3rem;
}

.integration-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.integration-icon-circle {
    height: 3rem;
    width: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.integration-icon-circle.blue {
    background: rgba(59, 130, 246, 0.2);
}

.integration-icon-circle.green {
    background: rgba(34, 197, 94, 0.2);
}

.integration-icon-circle.purple {
    background: rgba(147, 51, 234, 0.2);
}

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

.integration-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
}

.integration-text p {
    color: #d1d5db;
    line-height: 1.6;
}

.integration-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.integration-metric {
    margin-bottom: 1rem;
}

.integration-button {
    margin-top: 1rem;
}

/* Contact Page Styles */
.contact-header {
    position: relative;
    padding: 5rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-header-content {
    display: grid;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-header-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-header-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.contact-header-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: #60a5fa;
    font-size: 1.125rem;
    font-weight: 500;
}

.email-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #60a5fa;
}

/* Responsive Contact Header */
@media (min-width: 640px) {
    .contact-info-benefits {
        flex-direction: row;
        gap: 3rem;
    }
}

.contact-benefits {
    display: flex;
    gap: 2rem;
    color: #d1d5db;
    justify-content: center;
}

.contact-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-form-section {
    position: relative;
    padding: 5rem 0;
}

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

.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro-card {
    margin-bottom: 2rem;
}

.contact-intro-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.contact-intro-text {
    color: #d1d5db;
    line-height: 1.6;
}

.contact-steps {
    padding: 2rem;
}

.contact-steps-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

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

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

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.step-number.blue {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

.step-number.green {
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
}

.step-number.purple {
    background: rgba(167, 139, 250, 0.2);
    color: #a78bfa;
}

.step-number.orange {
    background: rgba(251, 146, 60, 0.2);
    color: #fb923c;
}

.step-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.step-text p {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.5;
}

.contact-form-card {
    padding: 3rem;
    margin-bottom: 3rem;
}

.contact-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

.form-grid.full-width {
    grid-template-columns: 1fr;
}

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

.form-group label {
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

/* Contact form dropdown styling */
.contact-form .form-group select option {
    background: #1e293b;
    color: white;
    padding: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    border: none;
}

.contact-form .form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.1);
}

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

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

.privacy-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.privacy-icon {
    color: #60a5fa;
    flex-shrink: 0;
}

.contact-alternatives {
    padding: 2rem;
}

.alternatives-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

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

.alternative-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem;
}

.alternative-item p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.faq-section {
    position: relative;
    padding: 5rem 0;
}

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

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

.faq-header-card {
    display: inline-block;
}

.faq-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.faq-list {
    padding: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

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

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

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

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* Social Media Icons */
.social-media-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
    color: #60a5fa;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Blog Styles */
.blog-posts {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.blog-post:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.blog-post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-category {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-category.blue {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
}

.blog-category.green {
    background: rgba(52, 211, 153, 0.2);
    color: #34d399;
}

.blog-category.purple {
    background: rgba(167, 139, 250, 0.2);
    color: #a78bfa;
}

.blog-date {
    color: #9ca3af;
    font-size: 0.875rem;
}

.blog-post-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-post-excerpt {
    color: #d1d5db;
    line-height: 1.6;
}

.blog-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-cta-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.blog-cta-text {
    color: #d1d5db;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}