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

@font-face {
  font-family: 'N27';
  src: url('fonts/n27-regular-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Basier Square';
  src: url('fonts/basiersquare-regular-webfont.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Basier Square';
  src: url('fonts/basiersquare-medium-webfont.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
}


/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Basier Square', sans-serif;
    color: #27232A;
    background: #FFFFFF;
    line-height: 1.6;
    min-height: 100vh;
    transition: background-color 1s ease; /* ← редактируешь как хочешь */
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Improved focus styles */
*:focus {
    outline: 2px solid #785D8F;
    outline-offset: 2px;
}

/* Global button styles */
button, 
.btn-primary, 
[class*="-btn-primary"] {
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px 32px;
    border-radius: 32px;
    background-color: #27232A;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 18px;
    line-height: 1.33;
    white-space: nowrap;
    min-width: 200px;
    text-align: center;
}

/*hide mobile btn desktop*/
.mobile-fixed {
    display: none;

}

button:hover, 
.btn-primary:hover, 
[class*="-btn-primary"]:hover {
    transform: translateY(-2px);
    background-color: #4F3959;
}

/* Container styles */
.LP {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}

.sections {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.title-text {
    font-family: 'N27';
}

/* Header styles */
.header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 20px 60px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    top: 0;
    background-color: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    z-index: 100;
    transition: background-color 1s ease;

}

.txt {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fixed-logo {
    max-width: 1180px;
    margin: auto;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
}

.logo-header { 
    width: 40px;
    height: 40px;
    position: fixed;
    top: 16px;
    left: 10px;
    transition: transform 0.1s linear;
    transform: rotate(0deg); /* Start position */
}

.logo-header.mobile {
    display: none;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Title text - responsive */
.title-text {
    font-family: 'N27', sans-serif;
    font-weight: 400;
    font-size: clamp(24px, 5vw, 48px);
    line-height: 1.2;
    text-align: left;
    background: linear-gradient(to right, #27232A, #785D8F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Logo/Brand */
.AIBase {
    font-family: 'Basier Square', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 3vw, 24px);
    line-height: 1.2;
    text-align: center;
    color: #353D4C;
}

/* Navigation */
.menu-and-btn {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 32px;
    align-items: center;
}

.menu-items {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: stretch;
    gap: clamp(16px, 2vw, 32px);
}

.menu-item {
    display: flex;
    align-items: center;
}

.Contact {
    font-family: 'Basier Square', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    color: #27232A;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.Contact:hover {
    color: #785D8F;
    text-decoration: underline;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    min-width: auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #27232A;
    margin: 4px 0;
    transition: 0.3s;
}

/* Section base styles */
section {
    width: 100%;
    scroll-margin-top: 80px;
}

/* Hero section */
.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: clamp(40px, 8vw, 96px) clamp(20px, 4vw, 60px);
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    max-width: 1160px;
    align-items: flex-start;
}

.hero-title-description {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: clamp(24px, 4vw, 40px);
    flex-wrap: wrap;
}

.hero-title {
    flex: 1 1 100%;
    max-width: 760px;
    width: 100%;
}

.hero-description {
    flex: 1 1 100%;
    max-width: 360px;
    width: 100%;
    padding: 8px 0;
}

.hero-description-text {
    font-family: 'Basier Square', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.5;
    text-align: center;
    color: #353D4C;
}

/* Image containers */
.pic {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    padding: 0px 60px;
    margin: 0 auto;
}

.pic img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

.pic img:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(39, 35, 42, 0.15);
}

.pic.mobile {
    display: none;
}

/* Benefits section */
.benefits {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 195px 60px;
}

.benefits-content {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    max-width: 1160px;
    flex-wrap: wrap;
}

.benefits-title-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 1 100%;
    max-width: 560px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1 1 100%;
    max-width: 560px;
}

.benefits-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.benefits-point {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 280px;
    min-width: 0;
}

.benefits-point-title {
    font-family: 'Basier Square', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    color: #27232A;
}

.benefits-point-description {
    font-family: 'Basier Square', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.5;
    text-align: left;
    color: #27232A;
}

/* How it works section */
.how-it-works {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: clamp(60px, 8vw, 96px) clamp(20px, 4vw, 60px);
    gap: 40px;
    flex-wrap: wrap;
}

.how-it-works-content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
    max-width: 1160px;
    flex-wrap: wrap;
}

.how-it-works-title-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    flex: 1 1 100%;
    max-width: 760px;
}

.how-it-works-nums {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    flex: 1 1 300px;
    width: 100%;
}

.how-it-works-num-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.how-it-works-frame-20 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0 18px;
    min-width: 64px;
    flex-shrink: 0;
}

.how-it-works-number {
    font-family: 'N27', sans-serif;
    font-weight: 400;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1;
    text-align: center;
    color: #27232A;
}

.how-it-works-num-description {
    font-family: 'Basier Square', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.4;
    text-align: left;
    color: #27232A;
    flex-grow: 1;
}

/* Use cases section */
.use-cases {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 195px 60px;
    gap: 40px;
}

.use-cases-content {
    display: flex;
    flex-direction: row;
    gap: 32px;
    width: 100%;
    max-width: 1160px;
    flex-wrap: wrap;
}

.use-cases-title-cases {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
    max-width: 760px;
}

.use-cases-cases {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.use-cases-case {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.use-cases-row-1 {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.use-cases-point {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.use-cases-case-title {
    font-family: 'N27', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.5vw, 24px);
    line-height: 1.3;
    text-align: left;
    color: #000000;
    width: 260px;
}

.use-cases-case-description {
    font-family: 'Basier Square', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.5;
    text-align: left;
    color: #000000;
    width: 460px;
}

.use-cases-callout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 4px 0;
    flex: 1 1 300px;
    width: 100%;
}

.use-cases-description {
    width: 100%;
    padding: 8px 0;
}

.use-cases-description-text {
    font-family: 'Basier Square', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.5;
    text-align: center;
    color: #27232A;
}

/* Trust section */
.trust {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 64px;
    padding: clamp(60px, 8vw, 96px) clamp(20px, 4vw, 60px);
    flex-wrap: wrap;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: clamp(48px, 8vw, 96px);
    width: 100%;
    max-width: 760px;
    align-items: center;
    margin-left: auto;
}

.trust-logos-anim {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 80px;
}

.trust-line {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: trust-carousel 20s linear infinite;
    padding-right: 64px;
}

@keyframes trust-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trust-line img {
    max-height: 60px;
    width: auto;
    transition: filter 0.3s ease;
    
}

.trust-line img:hover {
    filter: grayscale(0%);
}

.trust-title-cta {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    align-items: flex-start;
}

.trust-title {
    width: 100%;
    text-align: center;
}

/* Security section */
.security {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 64px;
    padding: clamp(60px, 8vw, 96px) clamp(20px, 4vw, 60px);
}

.security-title-content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    align-items: left;
    width: 100%;
    max-width: 1160px;
    gap: 40px;
}

.security-title-cta {
    display: flex;
    flex-direction: row;
    gap: 48px;
    width: 100%;
    max-width: 760px;
    flex-wrap: wrap;
    justify-content: center;
}

.security-content-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.security-callout {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: auto;
    gap: 32px;
    padding: 4px 0;
    width: 100%;
    max-width: 360px;
}

.security-frame-22 {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
}

.security-point {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.security-cloud-or-private-deployment {
    font-family: 'Basier Square', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.4;
    text-align: left;
    color: #27232A;
}

/* About us section */
.about-us {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: clamp(60px, 8vw, 96px) clamp(20px, 4vw, 60px);
}

.about-us-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(48px, 8vw, 96px);
    width: 100%;
    max-width: 1160px;
}

.about-us-titles-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
}

.about-us-titles-row {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
    flex-wrap: wrap;
}

.about-us-title-row,
.about-us-frame-400 {
    flex: 1 1 300px;
    width: 100%;
    max-width: 560px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 36px;
}

.about-us-find-out-how-this-works {
    font-family: 'Basier Square', sans-serif;
    font-weight: 400;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.4;
    text-align: left;
}

/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.Copyright-and-Terms {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 32px clamp(20px, 4vw, 60px);
    width: 100%;
    max-width: 1280px;
    border-top: 2px solid #FFFFFF;
    margin: 0 auto;
    flex-wrap: wrap;
}

.Copyright, .Cookie-Preferences, .Terms-of-use {
    font-family: 'Basier Square', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.5;
    text-align: center;
    color: #000000;
}

.Frame-399 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Managed Code link styling - remove underlines and make it look like regular text */
.managed-code {
    color: #000000 !important;
}

.managed-code a,
.managed-code a:link,
.managed-code a:visited,
.managed-code a:hover,
.managed-code a:active,
.managed-code a:focus {
    text-decoration: none !important;
    color: inherit !important;
    border: none !important;
    outline: none !important;
    background: none !important;
    border-bottom: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    box-shadow: none !important;
    text-underline-offset: 0 !important;
    text-decoration-thickness: 0 !important;
}

/* Extra specific selector to override any other styles */
.footer .managed-code a,
.footer .managed-code a:link,
.footer .managed-code a:visited,
.footer .managed-code a:hover,
.footer .managed-code a:active {
    text-decoration: none !important;
    color: #000000 !important;
    border-bottom: none !important;
}

/* Override browser default link styles */
div.managed-code a[href],
div.managed-code a[href]:link,
div.managed-code a[href]:visited,
div.managed-code a[href]:hover,
div.managed-code a[href]:active {
    text-decoration: none !important;
    color: #000000 !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #27232A;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(39, 35, 42, 0.3);
    z-index: 1000;
    min-width: auto;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: #785D8F;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 35, 42, 0.4);
}

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

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #27232A;
}

/* Form styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #27232A;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #785D8F;
    box-shadow: 0 0 0 3px rgba(120, 93, 143, 0.1);
}

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

.form-submit-btn {
    background-color: #27232A;
    color: white;
    padding: 18px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.form-submit-btn:hover {
    background-color: #1a1720;
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Loading states */
img {
    transition: opacity 0.3s ease;
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* Mobile specific styles */
@media (max-width: 768px) {
    /* Navigation */
    .mobile-menu-toggle {
        display: block;
    }
    
    .menu-items {
        position: absolute;
        top: 100%;
        right: 0;
        background-color: white;
        flex-direction: column;
        width: 250px;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        margin-top: 10px;
        display: none;
    }
    
    .menu-items.active {
        display: flex;
    }
    
    .menu-item {
        padding: 12px 0;
        border-bottom: 1px solid #eee;
        width: 100%;
    }
    
    .menu-item:last-child {
        border-bottom: none;
    }
    
    /* Hero mobile adjustments */
    .hero-title-description {
        flex-direction: column;
        text-align: center;
        flex-wrap: nowrap;
    }
    
    .title-text {
        text-align: center;
    }
    
    /* Benefits mobile */
    .benefits-content {
        flex-direction: column;
    }
    
    .benefits-title-cta {
        align-items: center;
        text-align: center;
    }
    
    .benefits-row {
        flex-direction: column;
        gap: 24px;
    }
    
    .benefits-point {
        text-align: center;
    }
    
    .benefits-point-title,
    .benefits-point-description {
        text-align: center;
    }
    
    /* How it works mobile */
    .how-it-works {
        flex-direction: column;
    }
    
    .how-it-works-content {
        flex-direction: column;
    }
    
    .how-it-works-title-cta {
        align-items: center;
        text-align: center;
    }
    
    .how-it-works-num-1 {
        flex-direction: column;
        text-align: center;
    }
    
    .how-it-works-num-description {
        text-align: center;
    }
    
    /* Use cases mobile */
    .use-cases-content {
        flex-direction: column;
    }
    
    .use-cases-row-1 {
        flex-direction: column;
        gap: 16px;
    }
    
    .use-cases-point {
        text-align: center;
    }
    
    .use-cases-case-title,
    .use-cases-case-description {
        text-align: center;
    }
    
    /* Trust mobile */
    .trust {
        flex-direction: column;
    }
    
    .trust-line {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 24px;
    }
    
    .trust-line img {
        max-height: 40px;
    }
    
    /* Security mobile */
    .security-title-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .security-cloud-or-private-deployment {
        text-align: center;
    }
    
    /* About us mobile */
    .about-us-titles-row {
        flex-direction: column;
        align-items: center;
    }
    
    .about-us-find-out-how-this-works {
        text-align: center;
    }
    
    /* Footer mobile */
    .Copyright-and-Terms {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    /* Button mobile adjustments */
    button,
    .btn-primary,
    [class*="-btn-primary"] {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    
    /* Modal mobile */
    .modal-content {
        margin: 10% auto;
        padding: 24px;
        width: 95%;
    }
    
    .close {
        font-size: 24px;
        right: 16px;
        top: 16px;
    }
}

/* Tablet styles */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet-specific adjustments */
    .header {
        padding: 16px 40px;
    }
    
    .hero-title-description {
        flex-direction: column;
        text-align: center;
    }
    
    .benefits-content,
    .how-it-works-content,
    .use-cases-content {
        flex-direction: column;
        gap: 48px;
    }
    
    .benefits-title-cta,
    .how-it-works-title-cta {
        align-items: center;
    }
    
    .trust {
        flex-direction: column;
    }
}

/* Large desktop improvements */
@media (min-width: 1440px) {
    .LP {
        max-width: 1440px;
        margin: 0 auto;
    }
    
    .fixed-logo {
        width: 1160px;
    }

    .logo-header {
        left: auto;
        margin-left: -50px;
    }        

    .hero {
        padding: 120px 60px;
    }
    
    .pic {
        max-width: 1280px;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .title-text {
        background: none;
        -webkit-text-fill-color: #27232A;
        color: #27232A;
    }
    
    button:focus,
    .btn-primary:focus,
    [class*="-btn-primary"]:focus {
        outline: 3px solid #785D8F;
        outline-offset: 3px;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu-toggle,
    .scroll-to-top,
    button,
    .btn-primary,
    [class*="-btn-primary"] {
        display: none !important;
    }
    
    body {
        background: #EAEBF0;
        color: black;
    }
    
    .title-text {
        background: none;
        -webkit-text-fill-color: black;
        color: black;
    }
}

/* Mobile CSS */
@media (max-width: 768px) {

    .header {
        padding: 16px;
        position: fixed;
    }

    .logo-header {
        display: block;
        transition: transform 0.1s linear;
        transform: rotate(0deg); /* Start position */
    }

    button, 
    .btn-primary, 
    [class*="-btn-primary"] {
        display: none;
    }

    .hero-btn-primary.fixed{
        display: block;
    }

    .mobile-fixed {
        display: flex;
        align-items: center;
        position: fixed;
        width: 100%;
        bottom: 20px;
        z-index: 400;
    }

    .mobile-fixed a {
        margin: auto;
    }

    a {
        text-decoration: none;
    }

    .txt {
        padding-left: 40px;
        display: flex;
        align-items: center;
    }

    .title-text {
        font-size: 36px;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        max-width: 479px;
    }
    
    .hero-description-text {
        font-size: 18px;
    }

    .pic {
        padding: 0px 16px;
    }

    .benefits {
        padding: 80px 16px;
        max-width: 479px;
    }

    .benefits-content {
        gap: 36px;
    }

    h2.title-text {
        text-align: left;
    }

    .benefits-point {
        flex: 1 1 0px;
    }
    .benefits-point-title{
        text-align: left;
    }

    .benefits-point-description{
        text-align: left;
    }

    .benefits-list {
        gap: 16px;
    }

    .benefits-row {
        gap: 16px;
    }

    .use-cases {
        padding: 80px 16px;
        max-width: 479px;
    }

    .use-cases-case-description {
        width: auto;
    }

    .use-cases-case-title {
        text-align: left;
        font-size: 24px;
    }

    .use-cases-case-description {
        text-align: left;
    }

    .use-cases-content {
        gap: 160px;
    }

    .use-cases-description-text {
        font-size: 24px;
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .Probably {
        font-size: 36px;
        line-height: 1.1;
        font-family: "N27";
    }

    .pic.dp-only {
        display: none;
    }

    .pic.mobile {
        display: block;
    }

    .how-it-works {
        padding: 80px 16px;
        max-width: 479px;
    }

    .how-it-works .title-text {
        text-align: center;
    }

    .how-it-works-num-1 {
        flex-direction: row;
    }

    .how-it-works-num-description {
        text-align: left;
        font-size: 20px;
    }

    .trust {
        padding: 80px 16px;
        max-width: 479px;
    }

    .dp-only {
        display: none;
    }

    .trust-logos-anim {
        height: auto;
    }

    .trust-line {
        padding: 0;
        gap: 32px;
    }

    .trust-content {
        flex-direction: column-reverse;
    }

    .trust-line img {
        max-height: 64px;
    }

    .security {
        padding: 80px 16px;
        max-width: 479px;
    }

    .security-cloud-or-private-deployment {
        text-align: left;
    }

    .about-us {
        padding: 80px 16px;
        max-width: 479px;
    }

    h3.title-text {
        text-align: left;
    }

    .about-us-titles-column {
        gap: 32px;
    }

    .about-us-content {
        gap: 160px;
    }

    .about-us-title-row, .about-us-frame-400 {
        flex: 0px;
    }

    .about-us-title-row .title-text {
        text-align: center;
    }

    .Copyright-and-Terms {
        gap: 8px;
        padding-bottom: 100px;
    }
}