:root {
    --primary-color: #1e88e5;
    --secondary-color: #64b5f6;
    --light-color: #e3f2fd;
    --dark-color: #0d47a1;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color:#ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-color);
    padding: 1rem;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
	display: flex;
    justify-content: space-between;
    align-items: center;
	box-sizing: border-box;
}

.header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
}


.logo-wrapper {
    display: flex;
    align-items: center;
    margin-right: 2rem;
	gap:0.8rem;
}

.logo-icon {
	width:3.0rem;
	height:3.0rem;
}
.logo-icon img {
	width:100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    background: linear-gradient(90deg, #5F69F2, #3F7FF5);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

.menu-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav li {
    margin-left: 1.5rem;
}

.nav a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: normal;
    transition: all 0.3s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
	font-size:17px;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
    background-color: rgba(30, 136, 229, 0.1);
}

.language-dropdown {
    position: relative;
}

.language-current {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    padding: 0 1.5rem;
    border-radius:3rem;
    cursor: pointer;
    transition: all 0.3s ease;
	height:45px;
}

.language-current:hover {
    border-color: var(--primary-color);
}

.language-current .lang-flag {
    font-size: 1.2rem;
}

.language-current .lang-name {
    font-size: 16px;
    color: var(--text-color);
}

.language-current .lang-arrow {
    font-size: 0.7rem;
    color: var(--light-text);
    transition: transform 0.3s ease;
}

.language-dropdown.active .lang-arrow {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    max-height: 300px;
    overflow-y: auto;
}

.language-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.language-option:hover {
    background-color: var(--light-color);
}

.language-option .lang-flag {
    font-size: 1.2rem;
}

.language-option .lang-name {
    font-size: 0.9rem;
    color: var(--text-color);
}

.btn-download {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0 1.7rem;
    font-size:16px;
    font-weight: normal;
    border-radius:3rem;
    cursor: pointer;
    transition: all 0.3s ease;
	height:43px;
}

.btn-download:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

.hero {
    background:url(../images/banner_bg.jpg) no-repeat center;
	background-size: cover;
    color: var(--white);
    padding:12rem 0 6rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
	background: linear-gradient(0deg, #5F69F2, #3F7FF5);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
	color: #5F69F2;
}

.hero-features {
    margin-bottom: 2rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
	color:rgba(0,0,0,.75);
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(95, 105, 242, 0.2);
    border-radius: 50%;
    margin-right: 0.75rem;
    font-size: 0.9rem;
	color:#fff;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 560px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
	padding:1rem 3rem 2rem 3rem;
}

.image-placeholder img {
	width:100%;
}

.image-placeholder:hover {
    background-color: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.section-header h2 span {
	background: linear-gradient(90deg, #66F9EA, #417EF5, #7A51FF);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-text);
}

.advantages {
    padding: 5rem 0;
    background:linear-gradient(90deg, rgba(232,247,251,.8) 0%, rgba(227,228,253,.3) 75%, rgba(232,247,251,.5) 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius:1.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    width: 5.6rem;
	height:5.6rem;
	margin: 0 auto 1.5rem auto;
}
.advantage-icon img {
	width:100%;
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.advantage-card p {
    color: var(--light-text);
    line-height: 1.7;
}

.features {
    padding: 5rem 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1.2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    margin-bottom: 1.5rem;
}

.feature-icon-wrapper img {
	width:100%;
}

.feature-icon {
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-card p {
    color: var(--light-text);
    line-height: 1.7;
}

.data-extraction {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(232,247,251,.2) 0%, rgba(233,245,233,.6) 50%, rgba(196,207,251,.2) 100%);
}

.extraction-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7rem;
    margin: 0 auto;
}

.extraction-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    transition: all 0.3s ease;
}

.extraction-card.reverse {
    flex-direction: row-reverse;
}

.extraction-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.extraction-image img {
	width:100%;
	border-radius: 1rem;
	box-shadow: 0 0 10px rgba(0,0,0,.1);
}

.image-placeholder-box {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.image-placeholder-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.image-placeholder-box .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder-box span {
    font-size: 1.2rem;
    font-weight: 500;
}

.extraction-content {
    flex: 1;
}

.extraction-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-align: left;
}

.extraction-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.7;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-color);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.file-movement {
    padding: 5rem 0;
    background:url(../images/bg.jpg) no-repeat;
	background-size:cover;
}

.movement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 0 auto;
}

.movement-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius:1.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.movement-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.movement-image {
    margin-bottom: 1.5rem;
}

.image-placeholder-small {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-placeholder-small img {
	width:100%;
}

.movement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.movement-card h3 .arrow {
    width: 13px;  
    height: 13px;  
    border-style: solid;  
    border-width: 2px 2px 0 0;  
    border-color: #5F69F2;  
    -webkit-transform-origin: 75% 25%;  
    -webkit-transform: rotateZ(45deg);  
    -webkit-transition: 100ms ease-in .1s;  
    transition: 100ms ease-in .1s;
    transition: transform 0.3s ease;
	margin-top: 10px;
}


.movement-card p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1.0rem;
}

.file-creation {
    padding: 5rem 0;
    background-color: var(--white);
}

.creation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7rem;
    margin: 0 auto;
}

.creation-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    transition: all 0.3s ease;
}

.creation-card.reverse {
    flex-direction: row-reverse;
}

.creation-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
.creation-image img {
	width:100%;
	border-radius: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
}

.image-placeholder-creation {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.image-placeholder-creation:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.image-placeholder-creation .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.image-placeholder-creation span {
    font-size: 1.2rem;
    font-weight: 500;
}

.creation-content {
    flex: 1;
}

.creation-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-align: left;
}

.creation-card p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.7;
    font-size: 1.05rem;
}

.process {
    padding: 5rem 0;
    background-color: #f5f9ff;
}

.process .section-header h2 {
    font-size: 2.2rem;
    color: var(--text-color);
}

.process .section-header h2 .highlight {
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background-color: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius:1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    min-width: 200px;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
}

.step-icon-wrapper img {
	width:100%;
}

.step-icon {
    font-size: 2rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
    font-weight: 600;
}

.step-card p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 1.0rem;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
	width:5.6rem;
}

.step-arrow img {
    width:100%;
}

.use-cases {
    padding: 5rem 0;
    background-color: var(--white);
}

.use-cases .section-header h2 .highlight {
    color: var(--primary-color);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.use-case-card {
    padding: 2.5rem 1.5rem;
    border-radius:1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.use-case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 12px rgba(0,0,0,.1);
}

.use-case-icon {
    width: 5.6rem;
	height:5.6rem;
    margin:0 auto 1.5rem auto;
	border-radius: 1rem;
	box-shadow: 0 0 5px rgba(60,60,60,.15);
	display: flex;
	justify-content: center;
	align-items: center;
}
.use-case-icon img {
	width:70%;
}

.use-case-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 600;
}

.use-case-card p {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 1.0rem;
}

.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.download-item .system-icon {
    width: 5rem;
	height:5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.download-item .system-icon img {
	width:100%;
}

.download-item .system-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
}

.download-item .system-version {
    font-size: 0.85rem;
    color: var(--light-text);
}

.btn-download-action {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.btn-download-action:hover {
    background: linear-gradient(90deg, #5F69F2, #3F7FF5);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--white);
    color:#417EF5;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius:3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--light-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color:#5F69F2;
    border: 2px solid #5F69F2;
    padding: 1rem 2rem;
    font-size: 1.4rem;
    font-weight: 600;
    border-radius:3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--white);
    color: #407EF5;
	border: 2px solid #407EF5;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background:linear-gradient(90deg, #5F69F2, #3F7FF5);;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 5rem;
    margin-bottom: 3rem;
}
.footer-section {
	display:flex;
	gap:1rem;
	justify-content: center;
	align-items: center;
}
.footer-section span {
	display:block;
	width:4rem;
	height:4rem;
}
.footer-section span img {
	width:100%;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-tion h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-tion ul {
    list-style: none;
}

.footer-tion li {
    margin-bottom: 0.5rem;
}

.footer-tion a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-tion a:hover {
    color: var(--white);
}

.footer-languages {
    padding: 2rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 2rem;
}

.footer-languages h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
}

.languages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.language-link {
    color: #b0b0b0;
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.language-link:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #444;
}

.show-all-languages {
    display: none;
    margin: 1rem auto 0;
    padding: 0.5rem 1.5rem;
    background-color: transparent;
    color: #b0b0b0;
    border: 1px solid #444;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.show-all-languages:hover {
    color: var(--white);
    border-color: #666;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #b0b0b0;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
}
.back-to-top img {
	width:70%;
}

.back-to-top:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    display: flex;
}

@media (max-width: 768px) {
	.advantages-grid {
		display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
	}
	.advantage-icon {
		width:4.8rem;
		height:4.8rem;
		margin:0 auto 1rem auto;
	}
	.advantage-card {
		padding:1rem;
	}
	.advantage-card p {
		font-size:1rem;
	}
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        gap: 1.5rem;
    }
    
    .header-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
	.nav {
		width:100%;
	}
	
	.nav ul {
		display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
	}
    
    .nav li {
        margin: 0;
        width: 100%;
    }
    
    .nav a {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .language-dropdown {
        width: 100%;
    }
    
    .language-current {
        justify-content: center;
    }
    
    .language-menu {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .btn-download {
        width: 100%;
    }
	.hero {
		padding:7rem 0 4rem 0;
	}
	.container {
		padding:0 1rem;
	}
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .image-placeholder {
        height: auto;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .movement-grid {
        grid-template-columns: 1fr;
    }
    
    .extraction-card,.creation-card {
        flex-direction: column;
        text-align: center;
		border-bottom: 1px solid #bfe1f1;
		padding-bottom: 3rem;
    }
	.extraction-card:last-child, .creation-card:last-child {
		border-bottom:none;
	}
	.extraction-grid, .creation-grid {
		gap:4rem;
	}
	.data-extraction, .file-creation {
		padding:4rem 0 1rem 0;
	}
	
	.process .section-header h2 {
		font-size:1.8rem;
	}
    
    .extraction-card.reverse {
        flex-direction: column;
    }
    
    .extraction-card h3,
    .extraction-card p,
    .feature-list {
        text-align: center;
    }
    
    .image-placeholder-box {
        height: 250px;
    }
    
    .creation-card {
        flex-direction: column;
        text-align: center;
    }
    
    .creation-card.reverse {
        flex-direction: column;
    }
    
    .creation-card h3,
    .creation-card p,
    .creation-card .feature-list {
        text-align: center;
    }
    
    .image-placeholder-creation {
        height: 250px;
    }
	
	.feature-list li {
		display:flex;
		justify-content: center;
		align-items: center;
		gap:1rem;
	}
    
	.feature-list li::before {
		position: inherit;
	}
    
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        padding: 0.5rem 0;
		width:4.8rem;
    }
    
    .step-card {
        max-width: 300px;
        width: 100%;
		padding:2rem 1rem;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
	.hero-features  {
		display:flex;
		justify-content:center;
		align-items: center;
		flex-direction: column;
	}
	.download-buttons {
		padding:0 1rem;
	}
	.download-item {
		width:100%;
		padding:1rem;
		justify-content: space-between;
	}
	.download-item .system-icon {
		width:4rem;
		height:4rem;
	}
	.btn-download-action {
		width:3rem;
		height:3rem;
		padding: 0;
		text-indent: -999rem;
		background: url(../images/down_red.png) no-repeat center #6698FF;
		background-size:70%; 
		margin-left: 0;
	}
	.btn-download-action:hover {
		background: url(../images/down_red.png) no-repeat center #5F69F2;
		background-size:70%; 
	}
	.footer-tion {
		display:none;
	}
	.footer-languages {
		padding: 1.5rem 0;
	}
	.languages-grid {
		max-height: 4.5rem;
		overflow: hidden;
		transition: max-height 0.3s ease;
		gap:0rem;
	}
	.languages-grid.expanded {
		max-height: none;
	}
	.show-all-languages {
		display: block;
	}
	.back-to-top {
		opacity: 0.6;
	}
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .btn-primary,
    .btn-outline {
        padding: 0.8rem 1.5rem;
    }
    
    .feature-card,
    .movement-card {
        padding: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}