/*!
Theme Name: Clevir
Theme URI: https://clevir.com/
Author: Blue Code Solutions
Author URI: https://wearebluecode.com/
Description: A modern WordPress theme for Clevir, featuring a sleek design with gradient borders and responsive layout.
Version: 1.0.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: clevir
Domain Path: /languages
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, business, corporate

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Clevir theme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Red Hat Display', sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.home-container {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* Header Styles */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 104.625px;
    background-color: #000000;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1440px;
    margin: 0 auto;
    padding: 20px 0px;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    width: 57.031px;
    height: 64.626px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    height: 18.624px;
    width: 106.8px;
    position: relative;
    /*overflow: hidden;*/
}

.logo-text img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 31.992px;
    margin-left: 20px;
}

.navigation > ul {
    display: flex;
    align-items: center;
    gap: 31.992px;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.3125px;
    transition: color 0.3s ease;
}

.nav-link.active {
    font-weight: 600;
    color: #e76de5;
    position: relative;
}

/*
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #5A3FFF 0%, #FF4D9A 100%);
    border-radius: 1px;
}
*/

.nav-link:hover {
    color: #e76de5;
}

.cta-button {
    background: linear-gradient(90deg, #80acf3 0%, #e76de5 100%);
    border: none;
    border-radius: 16px;
    padding: 10px 20px;
    color: white;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    line-height: 20px;
    letter-spacing: -0.1504px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 240px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-button-header {
    background: linear-gradient(90deg, #80acf3 0%, #e76de5 100%);
    border: none;
    border-radius: 16px;
    padding: 10px 20px;
    color: white;
    font-family: 'Red Hat Display', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    line-height: 20px;
    letter-spacing: -0.1504px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 240px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}
.cta-button img {
    width: 20px;
    height: 20px;
    display: block;
    flex-shrink: 0;
}

.cta-button:hover {
    transform: translateY(-2px);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Dropdown */
.language-dropdown {
    position: relative;
}

.language-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 1px solid;
    border-radius: 5px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
    padding: 6px 10px;
    width: 119.84px;
    height: 32px;
    transition: opacity 0.3s ease;
}

.language-dropdown-toggle:hover {
    opacity: 0.8;
}

.language-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.language-text {
    flex: 1;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 4px;
}

.language-text img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
    vertical-align: middle;
}

.dropdown-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.language-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333333;
    border-radius: 8px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 12px 16px;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 20px;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: #2a2a2a;
}

.language-option:first-child {
    border-radius: 8px 8px 0 0;
}

.language-option:last-child {
    border-radius: 0 0 8px 8px;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: #050505;
    overflow: hidden;
    height: 666px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-rectangle {
    position: absolute;
    left: 0;
    width: 100%;
    height: 621px;
    overflow: hidden;
    pointer-events: none;
}

.hero-rectangle img {
    position: absolute;
    height: 229.56%;
    width: 176.46%;
    left: 7.99%;
    top: -67.04%;
    max-width: none;
    object-fit: contain;
}


.hero-content {
	position: relative;
    z-index: 2;
    display: flex;
    align-items: top;
    justify-content: center;
    height: 100%;
    padding: 0 20px;
    padding-top: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content-child {
    width: 1440px;
    padding: 0 20px 0 20px;
    margin: 0 auto;
    display: flex;
}

.hero-text {
    flex: 1.6;
}

.hero-title {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 60px;
    font-weight: 700;
    line-height: 65px;
    color: #ffffff;
    margin-bottom: 32px;
}

.hero-title .highlight-fu {
    color: #e76de5;
}

.hero-title .highlight-bl {
    color: #80acf3;
}

.hero-description {
    font-family: 'Red Hat Display', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    color: #ffffff;
    margin-bottom: 45px;
    max-width: 668px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
}

.hero-cta-secondary {
    border-radius: 16px;
    padding: 18px 33px;
    color: #ffffff;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 246px;
    height: 55px;
}

.hero-cta-secondary:hover {
    transform: translateY(-2px);
}

.hero-cta-primary {
    border-radius: 16px;
    padding: 18px 32px;
    color: #ffffff;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 275px;
    /*height: 55px;*/
    z-index: 1;
    text-decoration: none;
    text-align: center;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-cta {
    background: linear-gradient(90deg, #80acf3 0%, #e76de5 100%);
    border: none;
    border-radius: 16px;
    padding: 18px 36px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: -0.1504px;
    cursor: pointer;
    transition: transform 0.3s ease;
    width: 300px;
    height: 55px;
}

.hero-cta:hover {
    transform: translateY(-2px);
}

.hero-visual {
    flex: 2;
    height: 385px;
    position: relative;
    overflow: visible;
}

.hero-device {
    position: relative;
    width: 100%;
    height: 100%;
}

.device-shadow {
    position: absolute;
    top: 84.95%;
    left: 0;
    right: 0;
    bottom: -0.1%;
    mix-blend-mode: multiply;
    overflow: hidden;
    pointer-events: none;
}

.device-shadow img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.device-laptop {
    position: absolute;
    top: 0;
    bottom: 0.63%;
    left: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none;
}

.device-laptop img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    /*transform: scale(0.9);*/
    /*transform-origin: center center;*/
}

.device-logo {
    position: absolute;
    top: 83.66%;
    bottom: 13.68%;
    left: 31.54%;
    right: 36%;
    overflow: hidden;
    pointer-events: none;
}

.device-logo img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.device-mockup {
    position: absolute;
    top: 2.09%;
    bottom: 18.92%;
    left: -11.87%;
    right: 34.51%;
    overflow: hidden;
    pointer-events: none;
}

.device-mockup img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
}

.app-windows {
    position: relative;
    width: 100%;
    height: 100%;
}

.app-window {
    position: absolute;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
    width: 340px;
    height: 259px;
}

.main-window {
    top: 0;
    left: 0;
}

.secondary-window {
    top: 68px;
    left: 195px;
}

.small-window {
    top: 0;
    left: 427px;
    width: 130px;
    height: 261px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.window-header {
    height: 20px;
    background-color: #f5f5f5;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    padding: 0 12.592px;
}

.window-controls {
    display: flex;
    gap: 4.194px;
}

.control-dot {
    width: 8.398px;
    height: 8.398px;
    border-radius: 50%;
}

.control-dot.red {
    background-color: #ff6467;
}

.control-dot.yellow {
    background-color: #fdc700;
}

.control-dot.green {
    background-color: #05df72;
}

.window-content {
    padding: 16.796px;
    height: calc(100% - 20px);
}

.app-header {
    display: flex;
    gap: 12.592px;
    align-items: center;
    margin-bottom: 12.592px;
}

.app-icon {
    width: 50.388px;
    height: 50.388px;
    border-radius: 10px;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-icon img {
    width: 33.592px;
    height: 33.592px;
}

.app-info {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.app-title-bar {
    height: 12.592px;
    background-color: #e5e5e5;
    border-radius: 4px;
    margin-bottom: 8.398px;
    width: 100%;
    max-width: 182.796px;
	display: block;
}

.app-subtitle-bar {
    height: 8.398px;
    background-color: #f5f5f5;
    border-radius: 4px;
    width: 100%;
    max-width: 121.868px;
    display: block;
}

.app-content {
    display: flex;
    flex-direction: column;
    /*gap: 8.398px;*/
}

.content-line {
    height: 33.592px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.content-line.short {
    width: 75%;
    height: 25.194px;
}

.window-tab {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 63px;
    height: 12px;
    background-color: #000000;
    border-radius: 0 0 8px 8px;
}

/* Features Section */
.features-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 120px;
}

.features {
    position: relative;
    height: 500px;
    width: 1280px;
    border-radius: 0 24px 24px 0;
    overflow: hidden;
}

.features-container {
    position: relative;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: stretch;
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
}

.background-pattern {
    width: 100%;
    height: 100%;
    background: url('assets/fcb4a962-012a-4caa-821c-9446f3a833a6.svg') no-repeat center;
    background-size: cover;
}

.features-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.features-text {
    flex: 0 0 50%;
    padding: 29px 0 29px 29px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.features-image {
    flex: 0 0 50%;
    position: relative;
    overflow: hidden;
    border-radius: 0 24px 24px 0;
    padding: 29px 29px 29px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-image-img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.features-logo {
    position: relative;
    width: 168px;
    height: 190px;
    overflow: hidden;
    border-radius: 8px;
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-description {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #f3f3f3;
    margin: 0;
}

.feature-tags {
    display: flex;
    gap: 24px;
    flex-wrap: nowrap;
}

.tag {
    background: linear-gradient(90deg, #4b194a 0%, #4b194a 100%);
    border: 1px solid #e76de5;
    border-radius: 100px;
    padding: 10px 24px;
    color: #f3f3f3;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4492px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tilt {
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.tilt:hover {
    transform: translateY(-2px);
}

/* Why Clevir Section */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: 0.3516px;
}

.section-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #ffffff;
    max-width: 600px;
    letter-spacing: -0.4492px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: linear-gradient(180deg, #292929 0%, #000000 100%);
    border-radius: 16px;
    padding: 40px;
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 14.22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 48.755px;
    height: 48.755px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 28px;
    color: #ffffff;
    letter-spacing: -0.4492px;
}

.feature-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #b9b9b9;
    letter-spacing: -0.3125px;
}

/* Our Apps Section */
.app-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 50px;
}

.app-feature {
    background: linear-gradient(180deg, #292929 0%, #000000 100%);
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    height: 231.994px;
}

.app-feature-icon {
    width: 63.994px;
    height: 63.994px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.app-feature-icon img {
    width: 48px;
    height: 48px;
}

.app-feature-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 24px;
    color: #ffffff;
}

.app-feature-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
    letter-spacing: -0.1504px;
}

.app-showcase {
    background: linear-gradient(180deg, #435c85 0%, #000000 100%);
    border: 1px solid #80acf3;
    border-radius: 16px;
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    position: relative;
}

.app-content-row {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
	width: 100%;
}

.app-demo {
    flex: 2;
    display: flex;
    align-items: center;
}

.demo-windows {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #80ACF3;
    height: 500px;
    flex: 1 0 0;
}

.demo-window {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1), 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
    width: 340px;
    height: 259px;
    position: absolute;
}

.demo-window:first-child {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.demo-window:last-child {
    top: 50%;
    left: 50%;
    transform: translate(-30%, -30%);
    z-index: 2;
}

.app-info-card {
    flex: 1;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16.796px;
    margin-top: 100px;
}

.info-icon {
    width: 58.775px;
    height: 58.775px;
    background-color: #80acf3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon.bg-purple { background: #893BB0; }
.info-icon.bg-green { background: #6E9A80; }

.info-icon img {
    width: 33.592px;
    height: 33.592px;
}

.info-badge {
    border-radius: 100px;
    padding: 10px 25px;
    color: #6081B6;
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
    background-color: #fff;
}

.info-badge.bg-blue { background: #F2F7FE; color: #6081B6; }
.info-badge.bg-purple { background: #F1DCFB; color: #893BB0; }
.info-badge.bg-green { background: #E9F5EE; color: #6E9A80; }

.info-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    color: #ffffff;
    letter-spacing: -0.4492px;
}

.info-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.75px;
    color: #ffffff;
    letter-spacing: -0.1504px;
}

.info-button {
    background-color: #80acf3;
    border: none;
    border-radius: 16px;
    padding: 12px 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    width: 300px;
    height: 44px;
}

.demo-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    align-self: stretch;
}

.demo-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #ffffff;
}

.dot.active {
    background-color: #80acf3;
}

.demo-arrows {
    display: flex;
    gap: 16px;
}

.arrow-button {
    width: 44px;
    height: 44px;
    background: #efefef;
    border: 1px solid #80acf3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.arrow-button img {
    width: 31.992px;
    height: 31.992px;
}

/* CTA Section */
.cta-section {
    margin: 200px auto;
    width: 1440px;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 0.3516px;
}

.cta-content {
    display: flex;
    gap: 80px;
    align-items: flex-end;
}

.cta-text {
    flex: 1;
    max-width: 545px;
}

.cta-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 32.5px;
    color: #ffffff;
    letter-spacing: -0.4492px;
}

.cta-note {
    background: rgba(246, 246, 246, 0.2);
    border-radius: 16px;
    padding: 10px;
}

.cta-note p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.1504px;
}

.cta-buttons {
    display: flex;
    gap: 15.996px;
    height: 60px;
    flex: 1;
}

.cta-button-secondary {
    background-color: #ffffff;
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    color: #0a0a0a;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4395px;
    flex: 1;
    height: 100%;
    text-decoration: none;
    text-align: center;
}

.cta-button-primary {
    background: linear-gradient(90deg, #80acf3 0%, #e76de5 100%);
    border: none;
    border-radius: 16px;
    padding: 16px 32px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.4395px;
    cursor: pointer;
    flex: 1;
    height: 100%;
    text-decoration: none;
    text-align: center;
}

/* Remove underline on hover for button links */
.cta-button-header:hover,
.cta-button-secondary:hover,
.cta-button-primary:hover {
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    margin: 200px auto;
    width: 1440px;
}

.faq-content {
	display: flex;
    gap: 50px;
    align-items: flex-end;
}

.faq-list {
    flex: 1;
    max-width: 50%;
}

.faq-item {
    border-radius: 16px;
    background: linear-gradient(180deg, #292929 0%, #000000 100%);
    overflow: hidden;
}

.faq-list > .faq-item:not(:last-child) {
    margin-bottom: 1.5rem;
}

.faq-item.expanded {
    height: 145.215px;
}

.faq-question {
    width: 100%;
    padding: 16px 24px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.3125px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-question img {
    width: 20px;
    height: 20px;
}

.faq-answer {
    padding: 0 24px 16px;
    color: #b9b9b9;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.3125px;
}

.faq-cta {
    background: linear-gradient(90deg, #80acf3 0%, #e76de5 100%);
    border-radius: 16px;
    padding: 24px;
    flex: 1;
    height: 95.977px;
}

.faq-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.faq-cta-text h4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 4px;
}

.faq-cta-text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffff;
    letter-spacing: -0.1504px;
}

.faq-cta-button {
    width: 39.98px;
    height: 35.996px;
    background: none;
	border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.faq-cta-button img {
    width: 31.992px;
    height: 31.992px;
}

/* Testimonials Section */
.testimonials {
    margin: 200px auto;
    width: 1440px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 0.3691px;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.company-logo {
    background: linear-gradient(180deg, #292929 0%, #000000 100%);
    border-radius: 16px;
    padding: 40px;
    height: 123px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
}

.company-logo img {
    /*width: 136px;*/
    /*height: 60px;*/
}

.company-logo span {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
    color: #ffffff;
    letter-spacing: -0.4395px;
}

.testimonials-content {
    display: flex;
    gap: 32px;
}

.testimonial {
    flex: 1;
    background: linear-gradient(180deg, #292929 0%, #000000 100%);
    border-radius: 16px;
    padding: 40px;
	text-align: center;
}

.testimonial blockquote {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    line-height: 25px;
    color: #ffffff;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 5px;
}

.author-avatar img {
	width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    line-height: 18.501px;
    color: #ffffff;
    margin-bottom: 5px;
}

.author-title {
    font-size: 12px;
    font-weight: 400;
    line-height: 15.858px;
    color: #b9b9b9;
}

.author-company {
    font-size: 12px;
    font-weight: 500;
    line-height: 15.858px;
    color: #ffffff;
}

/* Final CTA Section */
.final-cta {
    margin: 200px auto;
    width: 1440px;
    background: linear-gradient(180deg, #292929 0%, #000000 100%);
    border-radius: 16px;
    height: 500px;
    overflow: hidden;
}

.final-cta-content {
    display: flex;
    align-items: center;
    gap: 80px;
    height: 480px;
    padding: 0 80px;
    position: relative;
    overflow: visible;
}

.final-cta-text {
    flex: 1;
    max-width: 451px;
}

.final-cta-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 60px;
    color: #ffffff;
    margin-bottom: 24px;
}

.final-cta-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    color: #f3f3f3;
    margin-bottom: 24px;
}

.final-cta-button {
    background: linear-gradient(90deg, #80acf3 0%, #e76de5 100%);
    border: none;
    border-radius: 16px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    width: 270px;
    height: 55px;
}

.final-cta-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-cta-visual img {
    width: 617.463px;
    height: 617.463px;
    transform: rotate(270deg);
}

/* Footer */
.footer {
    padding: 48.623px 80px;
    height: 258px;
    background-color: #000000;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 1440px;
    margin: 0 auto;
    padding: 20px 0px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 23.994px;
    width: 217.607px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.footer-logo .logo-icon {
    width: 57.031px;
    height: 64.626px;
}

.footer-logo .logo-text {
    height: 18.624px;
    width: 106.8px;
}

.social-links {
    display: flex;
    gap: 11.992px;
}

.social-link {
    width: 20px;
    height: 20px;
}

.social-link img {
    width: 100%;
    height: 100%;
}

.footer-links {
    display: flex;
    gap: 50px;
}

.footer-column {
    width: 150px;
}

.footer-column h4 {
    font-size: 16px;
	font-weight: 700;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 15.996px;
    letter-spacing: -0.3125px;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7.998px;
}

.footer-column a {
    color: #b9b9b9;
	text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.3125px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

/* Generic gradient border utility */
.gradient-border {
    border: 1px solid transparent;
    border-radius: 16px;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image:
      var(--inner-bg, linear-gradient(180deg, #292929 0%, #000000 100%)),
      var(--border-gradient, linear-gradient(180deg, #ffffff 0%, #000000 100%));

    position: relative;
    overflow: hidden;
}

.gradient-border-transparent {   
    border-radius: 17.072px;
    background: linear-gradient(180deg, rgba(43, 34, 34, 0.80) 6.04%, rgba(0, 0, 0, 0.80) 100%);   
    box-shadow: 0 14.1px 17.625px -3.525px rgba(0, 0, 0, 0.10), 0 5.64px 7.05px -4.23px rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(6px);
    position: relative;
}

.gradient-border-transparent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 17.072px;
    padding: 1px;
    background: linear-gradient(180deg, #ffffff, #000000);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.gradient-border-bl {
    border: 1px solid transparent;
    border-radius: 16px;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image:
      var(--inner-bg, linear-gradient(180deg, #435c85 0%, #000000 100%)),
      var(--border-gradient, linear-gradient(180deg, #80acf3 0%, #000000 100%));
}

.gradient-border-fu {
    border: 1px solid transparent;
    border-radius: 16px;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    background-image:
      var(--inner-bg, linear-gradient(180deg, #380f37 0%, #000000 100%)),
      var(--border-gradient, linear-gradient(180deg, #e76de5 0%, #000000 100%));
}

.section {
    /*margin: 0 auto 0 auto;*/
    width: 1440px;
}

.mb-200 {
    margin-bottom: 200px
}

.pt-120 {
    padding-top: 120px
}

.pb-200 {
    padding-bottom: 200px
}

.text-black {
    color: #000000;
}

.text-blue {
    color: #80ACF3;
}

.text-fuchsia {
    color: #e76de5;
}

.mt-0 {
    margin-top: 0;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

body.mobile-menu-active {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .header-container {
        width: 100%;
        max-width: 100%;
        padding: 20px;
    }
    
    .hero-content {
        padding-right: 20px;
        padding-left: 20px;
    }
    
    .section {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .section-fullwidth .section {
        padding: 0 20px;
    }
    
    .cta-section,
    .faq-section,
    .testimonials,
    .final-cta {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .footer {
        padding: 48.623px 20px;
    }
    
    .footer-container {
        width: 100%;
        max-width: 100%;
    }
    
    .features {
        width: 100%;
        max-width: 100%;
    }
    
    .features-wrapper {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 15px 20px;
    }
    
    .hero {
        height: auto;
        min-height: 500px;
        padding-bottom: 40px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        /*text-align: center;*/
        padding-top: 140px;
        width: 100%;
    }
    
    .hero-content-child {
        width: 100%;
    }

    .hero-text {
        flex: 1;
        width: 100%;
    }
    
    .hero-visual {
        flex: 1;
        width: 100%;
        height: 300px;
        display: none;
    }
    
    .hero-title {
        font-size: 42px;
        line-height: 48px;
    }
    
    .hero-description {
        font-size: 18px;
        /*margin: 0 auto 30px;*/
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero-cta,
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .features {
        width: 100%;
        height: auto;
        min-height: 400px;
        border-radius: 24px;
    }
    
    .features-container {
        flex-direction: column;
    }
    
    .features-content {
        flex-direction: column;
    }
    
    .features-text {
        flex: 1;
        padding: 29px;
    }
    
    .features-image {
        flex: 1;
        padding: 29px;
        border-radius: 24px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .app-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .app-content-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .demo-windows {
        height: 400px;
    }
    
    .app-info-card {
        margin-top: 0;
        width: 100%;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .faq-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .faq-list {
        max-width: 100%;
    }
    
    .testimonials-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .final-cta {
        height: auto;
        min-height: 400px;
    }
    
    .final-cta-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
        height: auto;
    }
    
    .final-cta-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Styles */
    .header {
        height: auto;
        min-height: 80px;
    }
    
    .header-container {
        flex-wrap: wrap;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }
    
    .navigation {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #000000;
        z-index: 1000;
        overflow-y: auto;
        padding: 40px 20px;
    }
    
    /* Adjust for WordPress admin bar on mobile */
    body.admin-bar .navigation {
        top: calc(80px + 46px);
    }
    
    .navigation.mobile-menu-open {
        display: block;
    }
    
    .navigation > ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 12px 0;
        width: 100%;
        display: block;
    }
    
    .header-actions {
        order: 2;
        flex: 1;
        justify-content: flex-end;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        padding: 10px 16px;
        /* font-size: 20px; */
        white-space: nowrap;
    }
    
    .cta-button-header {
        /* width: 100%; */
        padding: 10px 16px;
        /* font-size: 20px; */
        white-space: nowrap;
        margin-top: 20px;
    }

    .language-dropdown-toggle {
        width: auto;
        min-width: 100px;
        padding: 6px 8px;
    }
    
    /* Hero Mobile */
    .hero {
        height: auto;
        min-height: 400px;
        padding-bottom: 40px;
    }
    
    .hero-content {
        /*padding-top: 120px;*/
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .hero-cta,
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
        padding: 14px 24px;
        height: 48px;
    }
    
    .hero-visual {
        height: 250px;
    }
    
    /* Features Mobile */
    .features-wrapper {
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .features {
        height: auto;
        min-height: 300px;
        border-radius: 16px;
    }
    
    .features-container {
        flex-direction: column;
    }
    
    .features-content {
        flex-direction: column;
    }
    
    .features-text {
        flex: 1;
        padding: 24px;
        gap: 24px;
    }
    
    .features-image {
        flex: 1;
        padding: 24px;
        border-radius: 24px;
    }
    
    .features-logo {
        width: 120px;
        height: 135px;
    }
    
    .features-description {
        font-size: 16px;
    }
    
    .feature-tags {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .tag {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        height: auto;
        min-height: 250px;
        padding: 30px;
    }
    
    /* Section Headers Mobile */
    .section-title {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 20px;
    }
    
    .section-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* App Features Mobile */
    .app-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .app-feature {
        height: auto;
        min-height: 200px;
        padding: 30px;
    }
    
    .app-showcase {
        flex-direction: column;
        height: auto;
        min-height: 400px;
        padding: 24px;
    }
    
    .demo-windows {
        height: 300px;
        width: 100%;
    }
    
    .app-info-card {
        width: 100%;
        margin-top: 0;
    }
    
    .info-button {
        width: 100%;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        margin: 100px auto;
        padding: 0 20px;
    }
    
    .cta-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 30px;
    }
    
    .cta-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .cta-text {
        max-width: 100%;
    }
    
    .cta-buttons {
        width: 100%;
        flex-direction: column;
        height: auto;
        gap: 12px;
    }
    
    .cta-button-primary,
    .cta-button-secondary {
        width: 100%;
        height: 48px;
        font-size: 16px;
    }
    
    /* FAQ Mobile */
    .faq-section {
        margin: 100px auto;
        padding: 0 20px;
    }
    
    .faq-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .faq-list {
        max-width: 100%;
    }
    
    .faq-item {
        height: auto;
    }
    
    .faq-item.expanded {
        height: auto;
    }
    
    .faq-cta {
        height: auto;
        min-height: 120px;
        padding: 20px;
    }
    
    .faq-cta-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* Testimonials Mobile */
    .testimonials {
        margin: 100px auto;
        padding: 0 20px;
    }
    
    .testimonials-title {
        font-size: 28px;
        line-height: 32px;
        margin-bottom: 30px;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 30px;
    }
    
    .company-logo {
        padding: 24px;
        height: auto;
        min-height: 100px;
    }
    
    .testimonials-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial {
        padding: 30px;
    }
    
    .section-fullwidth .section {
        padding: 0 20px;
    }
    
    /* Final CTA Mobile */
    .final-cta {
        margin: 100px auto;
        height: auto;
        min-height: 350px;
        border-radius: 16px;
    }
    
    .final-cta-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px 20px;
        height: auto;
    }
    
    .final-cta-text {
        max-width: 100%;
    }
    
    .final-cta-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .final-cta-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .final-cta-button {
        width: 100%;
        max-width: 100%;
    }
    
    .final-cta-visual {
        display: none;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 20px;
        height: auto;
        min-height: auto;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .footer-brand {
        width: 100%;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, auto);
        gap: 24px 30px;
        width: 100%;
    }
    
    .footer-column {
        width: auto;
        min-width: 0;
    }
    
    /* Group columns: Company and Solutions in first row, Resources and Legal in second row */
    .footer-column:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .footer-column:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .footer-column:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }
    
    .footer-column:nth-child(4) {
        grid-column: 2;
        grid-row: 2;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 16px;
    }
    
    .logo-icon {
        width: 45px;
        height: 51px;
    }
    
    .logo-text {
        height: 15px;
        width: 86.05px;
    }
       
    .cta-button {
        font-size: 20px;
        padding: 8px 12px;
    }
    
    .language-dropdown-toggle {
        font-size: 12px;
        padding: 6px 8px;
        min-width: 80px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .cta-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .final-cta-title {
        font-size: 28px;
        line-height: 34px;
    }
    
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-column {
        width: 100%;
    }
    
    .feature-tags {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tag {
        width: 100%;
        text-align: center;
    }
}