/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2e8aa3;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 1s ease, visibility 1s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    z-index: 2;
}

.preloader-logo {
    width: 200px; /* Smaller as now we add text below */
    height: auto;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    animation: preloaderEntrance 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    opacity: 0;
    transform: translateY(20px);
}

.preloader-brand-name {
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: -10px;
    opacity: 0;
    animation: preloaderEntrance 1s cubic-bezier(0.23, 1, 0.32, 1) forwards 0.4s;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-align: center;
}

@keyframes preloaderEntrance {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

.preloader-bar {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.preloader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #2e8aa3, transparent);
    animation: loadingProgress 2s ease-in-out forwards;
}

@keyframes loadingProgress {
    0% { left: -100%; }
    100% { left: 100%; }
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

:root {
    --primary: #3cb3d3;
    --primary-hover: #2e8aa3;
    --text-dark: #000;
    --text-gray: #4b5563;
    --text-light: #9ca3af;
    --border: #e5e7eb;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
}

body {
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    position: relative;
    line-height: 1.5;
}

.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, #ffffff 0%, #f3f4f6 50%, #ecfeff 100%);
    z-index: -3;
    opacity: 0.5;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
}

.vignette-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 60%, rgba(6, 182, 212, 0.05) 100%);
    pointer-events: none;
    z-index: -1;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}



.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover:not(.btn-primary-small) {
    color: var(--text-dark);
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 180px;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-light) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(46, 138, 163, 0.08);
    color: #2e8aa3 !important;
    padding-left: 24px;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.btn-primary-small {
    background-color: var(--primary);
    color: white !important;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn-primary-small:hover {
    background-color: var(--primary-hover);
}

.hero {
    padding: 160px 24px 80px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    background-color: #2e8aa3;
    color: #fff;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 63px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    perspective: 1000px;
}

.hero-word, .hero-highlight {
    display: inline-block;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: default;
    position: relative;
    will-change: transform, opacity;
}

.hero-word:hover, .hero-highlight:hover {
    transform: translateY(-8px) scale(1.1) rotate(2deg);
    color: #2e8aa3;
    z-index: 10;
}

.hero-title.exploded .hero-word, 
.hero-title.exploded .hero-highlight {
    opacity: 0.75;
    transform: 
        translate(var(--tx, 1500px), var(--ty, 1500px)) 
        rotate(var(--tr, 720deg)) 
        scale(0.85);
    filter: blur(1px);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-subtitle {
    font-size: 20px;
    color: #000;
    margin-bottom: 40px;
    line-height: 1.6;
    transition: opacity 1s ease;
}

.hero.exploded .hero-subtitle {
    opacity: 0.3;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary);
    color: white !important;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3), 0 4px 6px -4px rgba(6, 182, 212, 0.3);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: transparent;
    color: var(--primary) !important;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid var(--primary);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: #ecfeff;
}

.demo-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px 0px;
    text-align: center;
}

.video-container {
    background: #000;
    border-radius: 12px;
    aspect-ratio: 16/9;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    margin: 0 auto 60px;
    max-width: 800px; /* Centered and not full width */
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.slide {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.slide.active {
    display: block;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-slide {
    width: 100%;
    height: 100%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.slider-controls {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: #fff;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes fadeIn {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.demo-intro {
    margin-top: 80px;
    margin-bottom: 48px;
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: #000;
}

.demo-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.play-button-large {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 100px auto;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
    transition: transform 0.2s;
}

.play-button-large:hover {
    transform: scale(1.05);
}

.video-placeholder-bottom {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 13px;
    color: #000;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    padding-top: 24px;
}

.metric {
    text-align: center;
    border-right: 1px solid var(--border);
}

.metric:last-child {
    border-right: none;
}

.metric h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.metric p {
    font-size: 13px;
    color: #000;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto 120px;
}

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 16px;
    border: 2px solid var(--primary);
}

.step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.step p {
    font-size: 14px;
    color: #000;
    line-height: 1.5;
}

.features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top left, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    border-color: #2e8aa3;
    box-shadow: 0 20px 40px -10px rgba(46, 138, 163, 0.2);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: #2e8aa3;
}

.feature-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    text-align: justify;
}

.emergent-badge {
    display: inline-flex !important;
    box-sizing: border-box;
    width: 178px;
    height: 40px;
    padding: 8px 12px;
    align-items: center !important;
    gap: 8px;
    border-radius: 50px !important;
    background: #000 !important;
    position: fixed !important;
    bottom: 16px;
    right: 16px;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    font-size: 12px !important;
    z-index: 9999 !important;
}

.emergent-badge span {
    color: #FFF !important;
    font-weight: 600 !important;
    line-height: 20px !important;
    white-space: nowrap !important;
}

/* Specifications */
.specs-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.specs-highlights {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 48px 0;
}

.spec-highlight {
    flex: 1;
    background: white;
    border: 1px solid var(--border);
    padding: 24px;
    border-radius: 16px;
}

.spec-highlight h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.spec-highlight p {
    font-size: 14px;
    color: #000;
}

.specs-table-container {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr:not(:last-child) {
    border-bottom: 1px solid var(--border);
}

.specs-table th {
    width: 30%;
    padding: 24px;
    background: #fdfdfd;
    font-weight: 600;
    color: var(--text-dark);
    border-right: 1px solid var(--border);
}

.specs-table td {
    padding: 24px;
    color: #000;
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 24px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    overflow: hidden; /* Added to contain images */
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar.elena { background: #8b5cf6; }
.author-avatar.david { background: #10b981; }
.author-avatar.sofia { background: #f59e0b; }

.author h4 {
    font-size: 15px;
    font-weight: 700;
}

.author span {
    font-size: 13px;
    color: #000;
}

.press-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
    opacity: 0.5;
}

.press-logos .logo {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: -0.5px;
}

/* FAQ & Newsletter */
.faq-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.faq-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 64px;
    align-items: start;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-content {
    padding-bottom: 24px;
    color: #000;
    line-height: 1.6;
    /* Normally hidden -> display: none; but we'll show it for static demo or add js later */
}

.newsletter-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: sticky;
    top: 100px;
}

.newsletter-icon {
    width: 48px;
    height: 48px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.newsletter-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.newsletter-card p {
    font-size: 14px;
    color: #000;
    margin-bottom: 24px;
}

.newsletter-input-group {
    display: flex;
    gap: 8px;
}

.newsletter-input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    outline: none;
}

.newsletter-input-group input:focus {
    border-color: var(--primary);
}

/* Preregister */
.preregister-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 120px;
}

.preregister-card {
    background: var(--text-dark);
    border-radius: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

.preregister-info {
    padding: 64px;
    color: white;
    z-index: 1;
}

.urgency-counter {
    background: rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.urgency-top {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.progress-bar-container {
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    border-radius: 9999px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
}

.preregister-form-wrapper {
    background: white;
    padding: 64px;
}

.preregister-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input, .form-group select {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    background-color: white;
}

.form-group input:focus, .form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.w-full {
    width: 100%;
}

.justify-center {
    justify-content: center;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 40px 24px;
    background: var(--bg-gray);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    filter: grayscale(1);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.copyright {
    color: var(--text-light);
    font-size: 14px;
}

@media (max-width: 900px) {
    .features-grid, .steps-grid, .testimonials-grid, .metrics-grid {
        grid-template-columns: 1fr;
    }
    .specs-highlights, .faq-container, .preregister-card {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .specs-table th, .specs-table td {
        display: block;
        width: 100%;
    }
    .specs-table th {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
}

/* Blog */
.blog-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.blog-image {
    width: 100%;
    height: 200px;
    background-color: var(--border);
}

.placeholder-image-1 { background: linear-gradient(45deg, #06b6d4, #3b82f6); opacity: 0.8; }
.placeholder-image-2 { background: linear-gradient(45deg, #8b5cf6, #ec4899); opacity: 0.8; }
.placeholder-image-3 { background: linear-gradient(45deg, #10b981, #06b6d4); opacity: 0.8; }

.blog-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 24px;
    flex: 1;
}

.blog-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.blog-link:hover {
    color: var(--primary-hover);
}

@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Complex Footer */
.footer-complex {
    background-color: #0b1120;
    color: #94a3b8;
    padding: 80px 24px 40px;
    font-size: 14px;
}

.footer-container {
    width: 100%;
    max-width: none;
    padding-left: 48px;
    padding-right: 48px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand {
    flex: 1;
    max-width: 320px;
}

.logo-text.text-white {
    color: white;
}

.brand-desc {
    margin-top: 24px;
    margin-bottom: 32px;
    line-height: 1.6;
    text-align: justify
}

.social-links span {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: white;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: #94a3b8;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.2s;
}

.social-icon:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    flex: 2;
}

.footer-link-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-link-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.footer-link-col a:hover {
    color: white;
}

.footer-newsletter-banner {
    background: linear-gradient(90deg, #164e63, #083344);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 16px;
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.banner-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.banner-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.banner-info h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.banner-info p {
    color: #cbd5e1;
    font-size: 14px;
}

.btn-primary-cyan {
    background-color: #06b6d4;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(6, 182, 212, 0.4);
    transition: all 0.2s;
}

.btn-primary-cyan:hover {
    background-color: #0891b8;
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.bottom-links {
    display: flex;
    gap: 24px;
    margin-right: 80px; /* Offset to avoid chatbot icon */
}

.bottom-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.bottom-links a:hover {
    color: white;
}

@media (max-width: 900px) {
    .footer-top {
        flex-direction: column;
        gap: 48px;
    }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    .footer-newsletter-banner {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 24px;
    }
    .banner-info {
        flex-direction: column;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 60px;
    }
}


/* Override Demo Card */
.demo-card {
    background: #ffffff;
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 24px;
    padding: 24px 24px 0 24px;
    margin-bottom: 80px;
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.25), 0 0 15px rgba(6, 182, 212, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: none;
    display: flex;
    flex-direction: column;
}

.demo-video-area {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.play-button-large {
    width: 64px;
    height: 64px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.play-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(6, 182, 212, 0.5);
}

.video-placeholder-bottom {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #000;
    margin-bottom: 0;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.1), 0 4px 6px -4px rgba(6, 182, 212, 0.1);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.metric {
    text-align: center;
    border-right: 1px solid rgba(6, 182, 212, 0.3);
    padding: 32px 0;
}

.metric:last-child {
    border-right: none;
}

.metric h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.metric p {
    font-size: 13px;
    color: #000;
}

@media (max-width: 900px) {
    .metric {
        border-right: none;
        border-bottom: 1px solid rgba(6, 182, 212, 0.3);
    }
    .metric:last-child {
        border-bottom: none;
    }
}


/* Grid Specifications Override */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.spec-card {
    background: white;
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.spec-card:hover {
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

.spec-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.spec-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary);
}

.spec-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.spec-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.2) 20%, rgba(6, 182, 212, 0.2) 80%, transparent);
    margin-bottom: 24px;
}

.spec-list {
    list-style: none;
    flex: 1;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    font-size: 14px;
}

.spec-list li:last-child {
    border-bottom: none;
    margin-bottom: 48px;
}

.spec-label {
    color: #000;
    font-weight: 500;
}

.spec-value {
    color: var(--text-dark);
    font-weight: 500;
    text-align: right;
    max-width: 60%;
    line-height: 1.4;
}

.spec-bottom-lines {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
}

.spec-line-light {
    height: 2px;
    background: rgba(6, 182, 212, 0.1);
    border-radius: 2px;
    margin-bottom: 12px;
}

.spec-line-brand {
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    width: 80%; /* Aesthetic choice from image */
}

@media (max-width: 900px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}


/* Override specs-highlights */
.specs-highlights {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
    margin-top: 48px !important;
    margin-bottom: 0 !important;
    padding: 0;
}

.spec-highlight {
    background: white;
    border: 1px solid var(--border);
    padding: 40px 24px;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.spec-highlight h4 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.spec-highlight p {
    font-size: 15px;
    color: #000;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .specs-highlights {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 600px) {
    .specs-highlights {
        grid-template-columns: 1fr !important;
    }
}


/* Override Testimonials */
.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.stars {
    display: flex;
    gap: 4px;
}

.quote-icon {
    opacity: 0.5;
}

.quote {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 32px;
    flex: 1;
    text-align: center;
}

.testimonial-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin-bottom: 24px;
}

.author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar.default-cyan {
    background: var(--primary);
}

.author-info h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.author-info span {
    font-size: 13px;
    color: #000;
    line-height: 1.4;
    display: block;
}

.author-company {
    color: var(--primary);
}

/* Metrics Banner */
.metrics-banner {
    background: linear-gradient(90deg, #BAF0FFFF, #3cb3d3);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 64px;
    box-shadow: 0 10px 30px -10px rgba(6, 182, 212, 0.3);
}

.metric-item {
    text-align: center;
}

.metric-item h3 {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 8px;
    line-height: 1;
}

.metric-item p {
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

/* Simple Press Logos */
.press-logos-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-top: 48px;
    padding-top: 0;
}

.p-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.p-logo {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .metrics-banner {
        flex-direction: column;
        gap: 32px;
        padding: 32px;
    }
    .press-logos-simple {
        flex-direction: column;
        gap: 24px;
    }
}


/* Override FAQ */
.faq-section-new {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    text-align: center;
}

.faq-header-new {
    margin-bottom: 64px;
}

.faq-badge {
    background-color: #2e8aa3;
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(46, 138, 163, 0.2);
}

.faq-header-new .section-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 12px;
}

.faq-header-new .section-subtitle {
    font-size: 16px;
    color: #000;
}

.accordion-new {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.accordion-item-new {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.accordion-item-new:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.05);
}

.accordion-item-new.is-open {
    border-color: rgba(6, 182, 212, 0.5);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.1);
}

.accordion-header-new {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion-header-new:hover {
    color: var(--primary);
}

.accordion-icon {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.accordion-item-new.is-open .accordion-header-new {
    color: var(--primary);
}

.accordion-item-new.is-open .accordion-icon {
    color: var(--primary);
}

.accordion-content-new {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.accordion-content-inner {
    padding: 0 24px 24px;
    color: #000;
    line-height: 1.6;
    font-size: 15px;
    text-align: justify;
}

/* Fix newsletter positioning */
.newsletter-section .newsletter-card {
    position: static;
    margin: 0 auto;
}


/* Override Newsletter */
.newsletter-card-new {
    background: white;
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 24px;
    padding: 64px;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter-card-new::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at top center, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

.newsletter-icon-new {
    width: 56px;
    height: 56px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.newsletter-card-new h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.news-desc {
    font-size: 16px;
    color: #000;
    margin-bottom: 32px;
    line-height: 1.6;
}

.newsletter-input-group-new {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto 24px;
}

.newsletter-input-group-new input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: all 0.2s;
    background: #fdfdfd;
}

.newsletter-input-group-new input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    background: white;
}

.news-disclaimer {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 48px;
    line-height: 1.5;
}

.news-metrics {
    display: flex;
    justify-content: center;
    gap: 64px;
    max-width: 80%;
    margin: 0 auto;
}

.n-metric h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.n-metric span {
    font-size: 12px;
    color: #000;
    font-weight: 500;
}

@media (max-width: 600px) {
    .newsletter-card-new {
        padding: 40px 24px;
    }
    .newsletter-input-group-new {
        flex-direction: column;
    }
    .news-metrics {
        flex-direction: column;
        gap: 32px;
    }
}


/* Override Blog Structure */
.blog-section-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
}

.blog-header-new {
    text-align: center;
    margin-bottom: 64px;
}

.blog-header-new .section-title {
    font-size: 40px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.blog-header-new .section-subtitle {
    font-size: 16px;
    color: #000;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.col-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 24px;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

/* Featured Articles */
.featured-card {
    display: flex;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    min-height: 200px;
    transition: all 0.3s ease;
}

.featured-card:hover {
    border-color: #2e8aa3;
    box-shadow: 0 10px 25px rgba(46, 138, 163, 0.15);
    transform: translateY(-4px);
    background-color: rgba(46, 138, 163, 0.02);
}

.f-image {
    width: 35%;
    background-color: #0A0A0A;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.f-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.f-word {
    color: var(--primary);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.f-content {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.f-meta {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.f-meta .dot {
    opacity: 0.5;
}

.f-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.3;
}

.f-desc {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.f-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

/* Latest News List */
.news-list-card {
    background: white;
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    margin-bottom: 24px;
}

.n-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.n-list li {
    padding: 24px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.n-list li:last-child {
    border-bottom: none;
}

.n-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
    line-height: 1.4;
}

.dot-cyan {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.n-item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-light);
    padding-left: 14px;
    font-weight: 500;
}

.n-item-meta span:last-child {
    color: var(--primary);
    font-weight: 600;
    opacity: 0.8;
}

/* Side Newsletter */
.side-newsletter {
    background: linear-gradient(135deg, #e0f2fe, #cffafe);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.1);
}

.sn-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.sn-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.sn-icon {
    font-size: 16px;
}

.side-newsletter p {
    font-size: 13px;
    color: #000;
    line-height: 1.5;
    margin-bottom: 20px;
}

.blog-footer {
    text-align: center;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .f-image {
        width: 100%;
        height: 160px;
    }
    .featured-card {
        flex-direction: column;
    }
}


/* Override Preregister Section */
.preregister-section-new {
    background-color: #f0f9ff; /* Light blue background */
    padding: 20px 24px;
}

.prereg-header {
    text-align: center;
    margin-bottom: 64px;
}

.prereg-badge {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 24px;
}

.prereg-header .section-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.prereg-header .section-subtitle {
    font-size: 18px;
    color: #000;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.prereg-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.prereg-form-card {
    background: white;
    border: 2px solid #bae6fd;
    border-radius: 32px;
    padding: 48px;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.05);
}

.form-group-custom {
    margin-bottom: 24px;
}

.form-group-custom label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 10px;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .i-icon {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    pointer-events: none;
}

.input-with-icon input, 
.input-with-icon select {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    color: #000;
    outline: none;
    appearance: none;
    transition: all 0.2s;
}

.input-with-icon input:focus, 
.input-with-icon select:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.select-arrow {
    position: absolute;
    right: 16px;
    color: #94a3b8;
    pointer-events: none;
}

.btn-cyan-full {
    width: 100%;
    background: #06b6d4;
    color: white;
    font-size: 16px;
    font-weight: 700;
    padding: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    margin-top: 16px;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3);
}

.btn-cyan-full:hover {
    background: #0891b2;
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(6, 182, 212, 0.4);
}

.form-card-footer {
    text-align: center;
    font-size: 12px;
    color: #64748b;
    margin-top: 24px;
}

.b-title {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
}

.benefit-item-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s;
}

.benefit-item-card:hover {
    transform: translateX(8px);
    border-color: rgba(6, 182, 212, 0.2);
}

.b-icon-wrap {
    width: 44px;
    height: 44px;
    background: white;
    border: 2px solid #22d3ee;
    color: #22d3ee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.b-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 4px;
}

.b-info p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}

.units-card {
    background: #cffafe;
    border: 2px solid #22d3ee;
    border-radius: 16px;
    padding: 32px;
    margin-top: 40px;
    box-shadow: 0 10px 20px rgba(6, 182, 212, 0.1);
}

.u-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.u-header span {
    font-size: 14px;
    font-weight: 700;
    color: #0e7490;
}

.u-header strong {
    font-size: 14px;
    font-weight: 800;
    color: #0891b2;
}

.u-progress-bg {
    height: 10px;
    background: #e2e8f0;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
}

.u-progress-fill {
    height: 100%;
    background: #0891b2;
    border-radius: 10px;
}

.u-footer {
    font-size: 12px;
    color: #06b6d4;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.u-footer .bolt {
    font-size: 14px;
}

@media (max-width: 1000px) {
    .prereg-container {
        grid-template-columns: 1fr;
    }
}


/* Hero UI Refinement (Video Container) */
.video-container {
    background: #1a1a1a !important;
    border: 1px solid rgba(6, 182, 212, 0.4);
    border-radius: 12px !important;
    margin-top: 40px;
    margin-bottom: 64px !important;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.2), 0 0 80px rgba(6, 182, 212, 0.1) !important;
    position: relative;
    overflow: hidden;
}

.video-placeholder {
    font-size: 42px !important;
    font-weight: 700 !important;
    letter-spacing: -1px;
    color: var(--primary) !important;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.scroll-indicator {
    display: flex;
    justify-content: center;
    margin-top: -32px;
    margin-bottom: 64px;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid var(--primary);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
}

.mouse::after {
    content: '';
    width: 2px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* Adjust demo section padding */
.demo-section {
    padding-top: 40px !important;
}


/* Logo Image Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px; /* Standard header logo height */
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo-img {
    height: 40px; /* Slightly larger in footer */
    /* If the logo is dark and the footer is dark, we might need an invert filter. 
       Assuming the user provided a full color or white logo. */
}

/* Article Page Styles */
.article-page {
    padding-top: 120px;
    padding-bottom: 100px;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
}

.article-header {
    margin-bottom: 48px;
    text-align: left;
}

.article-category {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}

.article-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #000;
    margin-bottom: 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 32px;
}

.article-hero-img {
    width: 100%;
    height: 400px;
    background-color: #0c111d;
    border-radius: 24px;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.article-hero-img .hero-word {
    font-size: 80px;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.8;
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
}

.article-body p {
    margin-bottom: 24px;
    color: #000;
}

.article-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-top: 48px;
    margin-bottom: 20px;
}

.article-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
    color: #000;
}

.article-quote {
    border-left: 4px solid var(--primary);
    padding-left: 24px;
    font-size: 24px;
    font-style: italic;
    color: #000;
    margin: 48px 0;
    font-weight: 500;
}

.article-body ul {
    margin-bottom: 24px;
    padding-left: 24px;
    color: #000;
}

.article-body li {
    margin-bottom: 12px;
    color: #000;
}

.article-footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }
    .article-hero-img {
        height: 250px;
    }
    .article-hero-img .hero-word {
        font-size: 40px;
    }
}
/* Chatbot Styles */
.chatbot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
}

.chatbot-button {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 25px rgba(6, 182, 212, 0.4);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
}

.chatbot-button:hover {
    transform: scale(1.1) rotate(5deg);
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 480px;
    max-height: calc(90vh - 100px);
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(6, 182, 212, 0.2);
    animation: slideUpChat 0.4s ease-out;
}

@keyframes slideUpChat {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.chatbot-header {
    background: #0b1120;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header .logo-mini {
    width: 30px;
    height: 30px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.close-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.7;
}

.chatbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8fafc;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.message.bot {
    background: white;
    color: #1f2937;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.message.user {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chatbot-input-area {
    padding: 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 10px;
    background: white;
}

.chatbot-input-area input {
    flex: 1;
    border: 1px solid #e2e8f0;
    padding: 12px 16px;
    border-radius: 12px;
    outline: none;
    font-size: 14px;
}

.chatbot-send-btn {
    background: var(--primary);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.typing-indicator {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: none;
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100vw - 40px);
        right: -10px;
        height: 70vh;
    }
}

.p-grafeno {
    background-image: url('Nexus S cilindro.png') !important;
    background-size: cover;
    background-position: center;
}

.p-design {
    background-image: url('Nexus Seamless dispositivo.png') !important;
    background-size: cover;
    background-position: center;
}

.p-radio {
    background-image: url('Nexus Seamless pared.png') !important;
    background-size: cover;
    background-position: center;
}
