/* Demo Page - Modern SaaS Design */

/* Hero Header */
.demo-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg,
            rgba(186, 60, 231, 0.1) 0%,
            rgba(111, 100, 237, 0.1) 50%,
            rgba(90, 56, 175, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.demo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ba3ce7' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-semibold);
    font-size: 3.5rem;
    color: var(--color-text);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-family: var(--font-regular);
    font-size: 1.25rem;
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb-nav {
    margin-bottom: 32px;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-regular);
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
}

.breadcrumb-item.active {
    font-family: var(--font-semibold);
    color: var(--color-primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--color-text);
    opacity: 0.5;
    padding: 0 16px;
}

.social-links {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    color: white;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    box-shadow: 0 8px 30px rgba(186, 60, 231, 0.2);
}

.social-link iconify-icon {
    font-size: 1.5rem;
}

/* Demo Form Section */


.demo-visual {
    position: relative;
    height: 500px;
}

.demo-collage {
    position: relative;
    height: 100%;
    width: 100%;
}

.collage-item {
    position: absolute;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.collage-item:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.collage-main {
    z-index: 2;
    top: 0;
    right: 300px;
    width: 320px;
    height: 280px;
}

.collage-notification {
    z-index: 3;
    top: 60px;
    right: 0;
    width: 240px;
    padding: 20px;
}

.collage-access {
    z-index: 11;
    bottom: 50px;
    left: 40px;
    width: 180px;
    padding: 20px;
}

.collage-time {
    z-index: 1;
    bottom: 200px;
    right: 70px;
    width: 160px;
    padding: 20px;
}

/* Demo Screen */
.demo-screen {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
}

.screen-header {
    padding: 12px 16px;
    background: #2d2d44;
    display: flex;
    align-items: center;
    gap: 12px;
}

.screen-dots {
    display: flex;
    gap: 6px;
}

.screen-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.screen-dots span:nth-child(2) {
    background: #ffbd2e;
}

.screen-dots span:nth-child(3) {
    background: #28ca42;
}

.screen-url {
    flex: 1;
    background: #3a3a5d;
    border-radius: 4px;
    padding: 4px 12px;
    font-family: var(--font-regular);
    color: white;
    opacity: 0.7;
    font-size: 0.75rem;
}

.screen-content {
    padding: 24px;
    height: calc(100% - 48px);
}

.dashboard-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.preview-header h5 {
    font-family: var(--font-semibold);
    color: white;
    margin: 0;
    font-size: 0.875rem;
}

.stat-online {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    padding: 4px 12px;
    border-radius: 12px;
    font-family: var(--font-semibold);
    font-size: 0.75rem;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    flex: 1;
}

.preview-card {
    background: #2d2d44;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.preview-card:hover {
    transform: translateY(-4px);
    background: #3a3a5d;
}

.preview-card iconify-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.preview-card span {
    font-family: var(--font-regular);
    color: white;
    font-size: 0.75rem;
    text-align: center;
}

/* Notification Card */
.notification-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.notification-card iconify-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.notification-content {
    flex: 1;
}

.notification-title {
    font-family: var(--font-semibold);
    color: var(--color-text);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.notification-time {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.75rem;
}

/* Access Card */
.access-card {
    text-align: center;
}

.access-card iconify-icon {
    font-size: 2rem;
    color: #4CAF50;
    margin-bottom: 12px;
}

.access-content {
    text-align: center;
}

.access-title {
    font-family: var(--font-semibold);
    color: var(--color-text);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.access-status {
    font-family: var(--font-regular);
    color: #4CAF50;
    font-size: 0.75rem;
}

/* Time Card */
.time-card {
    display: flex;
    align-items: center;
    gap: 12px;
}

.time-card iconify-icon {
    font-size: 1.5rem;
    color: var(--color-primary-2);
}

.time-content {
    text-align: center;
}

.time-title {
    font-family: var(--font-semibold);
    color: var(--color-text);
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.time-value {
    font-family: var(--font-semibold);
    color: var(--color-primary);
    font-size: 1.25rem;
}

/* Demo Form */
.demo-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
    margin-bottom: 32px;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(186, 60, 231, 0.1);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-semibold);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.form-title {
    font-family: var(--font-semibold);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.form-subtitle {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
}

.demo-form {
    margin-top: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-semibold);
    color: var(--color-text);
    font-size: 0.875rem;
}

.form-group label iconify-icon {
    color: var(--color-primary);
    font-size: 1.125rem;
}

.form-control {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-regular);
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(186, 60, 231, 0.1);
}

.form-control::placeholder {
    color: var(--color-text);
    opacity: 0.5;
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-helper {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.75rem;
    margin-top: 4px;
}

.form-submit {
    text-align: center;
}


.form-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.875rem;
}

.form-guarantee iconify-icon {
    color: #4CAF50;
}

/* Trusted Clients */
.trusted-clients {
    background: linear-gradient(135deg,
            rgba(234, 201, 70, 0.03) 0%,
            rgba(210, 169, 71, 0.03) 100%);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.client-item {
    transition: transform 0.3s ease;
}

.client-item:hover {
    transform: translateY(-8px);
}

.client-card {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-card img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.client-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

.client-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.client-card:hover .client-overlay {
    opacity: 0.95;
}

.client-overlay h5 {
    font-family: var(--font-semibold);
    font-size: 1rem;
    margin-bottom: 4px;
}

.client-overlay p {
    font-family: var(--font-regular);
    font-size: 0.75rem;
    opacity: 0.9;
    margin: 0;
}

/* Demo Steps */


.steps-timeline {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.step-item.animated {
    opacity: 1;
    transform: translateX(0);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-item:nth-child(2) {
    transition-delay: 0.1s;
}

.step-item:nth-child(3) {
    transition-delay: 0.2s;
}

.step-item:nth-child(4) {
    transition-delay: 0.3s;
}

.step-item:nth-child(5) {
    transition-delay: 0.4s;
}

.step-icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: rgba(186, 60, 231, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-icon iconify-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-family: var(--font-semibold);
    color: var(--color-text);
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.step-content p {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
    font-size: 0.875rem;
}

.steps-visual {
    max-width: 600px;
    margin: 0 auto;
}

.steps-progress {
    position: relative;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    margin: 40px 0;
}

.progress-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    width: 0;
    transition: width 1.5s ease;
}

.progress-dots {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
}

.progress-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.2);
}

.progress-dot::after {
    content: attr(data-dot);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-semibold);
    color: var(--color-text);
    font-size: 0.875rem;
}

/* Testimonials */


.testimonials-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.testimonial-rating iconify-icon {
    color: #FFD700;
    font-size: 1.25rem;
}

.testimonial-text {
    font-family: var(--font-regular);
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar iconify-icon {
    font-size: 2rem;
    color: white;
}

.author-info {
    flex: 1;
}

.author-info h5 {
    font-family: var(--font-semibold);
    color: var(--color-text);
    margin: 0 0 4px 0;
}

.author-info span {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 8px;
}

.author-stats {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-stats iconify-icon {
    color: var(--color-primary);
    font-size: 1rem;
}

.author-stats span {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.75rem;
    margin: 0;
}

.swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(186, 60, 231, 0.2);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary);
}

/* Video Presentation */


.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-preview {
    position: relative;
    cursor: pointer;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-preview:hover .video-thumbnail img {
    transform: scale(1.05);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1;
}

.video-preview:hover .play-button {
    background: white;
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button iconify-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-left: 4px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 40px;
    color: white;
}

.overlay-content h4 {
    font-family: var(--font-semibold);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.overlay-content p {
    font-family: var(--font-regular);
    opacity: 0.9;
    margin-bottom: 16px;
    font-size: 1rem;
}

.video-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.video-info iconify-icon {
    font-size: 1.25rem;
}

.video-info span {
    font-family: var(--font-regular);
    font-size: 0.875rem;
}

.video-embed {
    display: none;
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.video-container.playing .video-preview {
    display: none;
}

.video-container.playing .video-embed {
    display: block;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Contact Info */


.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-8px);
}

.contact-card {
    width: 100%;
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: rgba(186, 60, 231, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.contact-icon iconify-icon {
    font-size: 2rem;
    color: var(--color-primary);
}

.contact-content h4 {
    font-family: var(--font-semibold);
    color: var(--color-text);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.contact-content p {
    font-family: var(--font-semibold);
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.contact-note {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.7;
    font-size: 0.875rem;
}

.support-cta {
    max-width: 600px;
    margin: 0 auto;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: var(--font-semibold);
    font-size: 1rem;
    margin-bottom: 20px;
}

.support-text {
    font-family: var(--font-regular);
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Final CTA */
.demo-final-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    position: relative;
    overflow: hidden;
}

.demo-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}



.demo-final-cta .cta-description {
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.demo-final-cta .cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}


.demo-final-cta .btn-lg {
    padding: 16px 40px;
    font-size: 1.125rem;
}

.demo-final-cta .cta-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.demo-final-cta .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-regular);
    font-size: 0.875rem;
}

.demo-final-cta .feature-item iconify-icon {
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title,
    .form-title {
        font-size: 2rem;
    }

    .demo-visual {
        height: 400px;
        margin-bottom: 40px;
    }

    .collage-main {
        width: 280px;
        height: 240px;
    }

    .collage-notification,
    .collage-access,
    .collage-time {
        width: 160px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .steps-timeline {
        padding-left: 0;
    }
}

@media (max-width: 768px) {

    .contact-grid {
        grid-template-columns: repeat(2, minmax(250px, 1fr));
    }

    .demo-hero {
        padding: 120px 0 60px;
    }

    .demo-form-wrapper {
        padding: 32px 24px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-timeline {
        padding-left: 0;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin: 0 auto;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .video-thumbnail {
        height: 300px;
    }
}


@media (max-width: 620px) {

    .contact-grid {
        grid-template-columns: repeat(1, minmax(250px, 1fr));
    }
}



@media (max-width: 576px) {


    .demo-visual {
        height: fit-content;
    }

    .demo-collage {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: max-content;
    }

    .demo-collage .collage-item {
        position: relative;
        width: 100%;
        margin-bottom: 20px;
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
    }

    .demo-form-wrapper {
        padding: 20px;
    }

}