@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-orange: #ffa41e;
    --primary-purple: #8b5cf6;
    --primary-purple-hover: #7c3aed;
    --text-dark: #111827;
    --text-gray: #374151;
    --text-light-gray: #6b7280;
    --bg-light: #f3f4f6;
    --border-color: #f3f4f6;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.5;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #f3f4f6;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    font-size: 1.25rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: var(--transition);
}

.menu-toggle:hover {
    opacity: 0.7;
}

.logo img {
    height: 28px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    transition: var(--transition);
    border: 1px solid transparent;
}

.lang-selector:hover {
    background-color: #f3f4f6;
    border-color: #e5e7eb;
}

.lang-selector img {
    width: 20px;
    height: 14px;
    border-radius: 2px;
}

.cart-icon {
    font-size: 1.25rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
}

.cart-icon:hover {
    color: var(--primary-orange);
}

.user-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
}

.user-icon:hover {
    background-color: #e5e7eb;
}

/* Hero Section */
.hero {
    background: #ffc233 url('hero-bg-yellow-2.svg') no-repeat center top;
    background-size: cover;
    padding: 5rem 1rem 7rem;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.hero p {
    font-size: 1.25rem;
    color: #374151;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 360px;
    margin: 0 auto;
}

.btn-primary, .btn-outline {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-purple);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-purple-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-outline:hover {
    background-color: rgba(17, 24, 39, 0.05);
}

/* Features Section */
.features {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 4rem;
    align-items: center;
}

.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.features-content {
    flex: 1;
}

.features-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.features-content h2 span {
    color: var(--primary-purple);
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-light-gray);
    line-height: 1.6;
}

/* Support Widget */
.support-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 40;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.support-tooltip {
    background: var(--white);
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    max-width: 250px;
    font-size: 0.875rem;
    color: var(--text-gray);
}

.support-tooltip strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.support-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-purple);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(139, 92, 246, 0.5);
    font-size: 0.75rem;
    font-weight: 600;
}

.support-btn i {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

/* Modal Overlay & Card (from previous code) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 3000;
}

.modal-overlay.active {
    display: flex;
}

.modal-card {
    background: var(--white);
    width: 100%;
    max-width: 440px;
    border-radius: 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalAppear 0.3s ease-out;
}

@keyframes modalAppear {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: #9ca3af;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

.close-btn:hover {
    color: var(--text-dark);
}

.modal-content {
    padding: 2.5rem 2rem;
    text-align: center;
}

.modal-logo {
    margin-bottom: 2rem;
}

.modal-logo img {
    height: 48px;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-purple);
    color: var(--white);
    padding: 0.875rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--primary-purple-hover);
    transform: translateY(-1px);
}

.passkey-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition);
}

.passkey-link:hover {
    color: var(--text-dark);
}

.passkey-link i {
    font-size: 1.125rem;
}

.modal-footer {
    background-color: #f6f2ff;
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #e9e4ff;
}

.modal-footer p {
    font-size: 0.9375rem;
    color: var(--text-gray);
}

.modal-footer a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.25rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    transition: var(--transition);
    outline: none;
    background-color: var(--white);
}

.input-wrapper input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 164, 30, 0.1);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9ca3af;
    font-size: 1.125rem;
}

.form-links {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-gray);
}

.form-links a {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 500;
}

.form-links a:hover {
    text-decoration: underline;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* Full Login Page Layout */
.login-page-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
    padding: 2rem 1rem;
}

.login-card {
    background: var(--white);
    width: 100%;
    max-width: 460px;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Language Modal Specifics */
.lang-modal-card {
    max-width: 600px;
}

.lang-modal-content {
    padding: 2.5rem;
    text-align: center;
}

.lang-modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.lang-modal-subtitle {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.lang-columns {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    text-align: left;
    margin-bottom: 3rem;
}

.lang-col h4 {
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-left: 0.5rem;
}

.lang-list {
    list-style: none;
}

.lang-item {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition);
}

.lang-item:hover {
    background-color: #f8fafc;
}

.lang-item.active {
    background-color: #f0ebff;
    color: var(--text-dark);
}

.lang-item:active {
    background-color: #e2e8f0;
}

.lang-item img {
    width: 20px;
    border-radius: 2px;
}

.lang-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.btn-cancel {
    background-color: #e5e7eb;
    color: #4b5563;
    padding: 1rem;
    border-radius: 0.25rem;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.btn-change {
    background-color: #111827;
    color: var(--white);
    padding: 1rem;
    border-radius: 0.25rem;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 600px) {
    .lang-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Button Styles */
/* Solutions Section */
.solutions {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.solutions-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: var(--text-dark);
}

.solutions-content h2 span {
    color: var(--primary-purple);
}

.solutions-intro {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 500px;
}

.solutions-image img {
    width: 100%;
    height: auto;
}

/* Customer Values Section */
.customer-values {
    padding: 6rem 1rem;
    text-align: center;
    background-color: #f6f2ff;
}

.customer-values h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.customer-values-image {
    max-width: 320px;
    margin: 0 auto 4rem;
}

.customer-values-image img {
    width: 100%;
    border-radius: 50%;
}

.section-support {
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.support-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.support-header h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.support-header h2 span {
    color: var(--primary-purple);
}

.support-header p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1.125rem;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    text-align: left;
}

.support-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-item-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 0.5rem;
}

.support-item-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.support-item-text p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}

.sidebar-menu.active {
    left: 0;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1900;
    display: none;
    backdrop-filter: blur(2px);
}

.menu-overlay.active {
    display: block;
}

.sidebar-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f3f4f6;
    gap: 1.5rem;
}

.close-sidebar {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

.sidebar-content {
    padding: 1.5rem 0;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    border-bottom: 1px solid #f3f4f6;
}

.sidebar-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition);
}

.sidebar-links a i {
    font-size: 0.875rem;
    color: #cbd5e1;
}

.sidebar-links a:hover {
    background: #f8fafc;
}

.sidebar-secondary {
    padding: 2rem 1.5rem;
}

.sidebar-secondary .lang-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-decoration: none;
}

.sidebar-secondary .lang-link img {
    width: 20px;
    border-radius: 2px;
}

.sidebar-footer-links {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.sidebar-footer-links a {
    text-decoration: none;
    color: var(--text-light-gray);
    font-size: 1rem;
    transition: var(--transition);
}

.sidebar-footer-links a:hover {
    color: var(--primary-orange);
}

/* FAQs Section */
.faqs {
    background-color: var(--white);
    padding: 6rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #f3f4f6;
}

.faqs-header {
    margin-bottom: 4rem;
}

.faqs-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.faqs-header p {
    color: var(--text-gray);
    max-width: 800px;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-list {
    max-width: 100%;
}

.faq-item {
    background-color: var(--white);
    border: none;
    border-bottom: 1px solid #f3f4f6;
    border-radius: 0;
    margin-bottom: 0;
}

.faq-item summary {
    padding: 1.5rem 0;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
}

.faq-item summary i {
    color: #9ca3af;
    font-size: 0.875rem;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item[open] summary i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Support CTA Section */
.support-cta {
    padding: 6rem 2rem;
    text-align: center;
}

.support-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.support-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.support-cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.support-cta-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #f8f9fa;
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-col h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    height: 30px;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-light-gray);
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--primary-orange);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social img {
    width: 24px;
    height: 24px;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-social a:hover img {
    opacity: 1;
}

/* Support Widget */
.support-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 3000;
}

.support-btn {
    background: #4b26ff;
    color: var(--white);
    padding: 0.875rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(75, 38, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

.support-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(75, 38, 255, 0.5);
}

.support-box {
    position: absolute;
    bottom: calc(100% + 1rem);
    right: 0;
    width: 380px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideInSupport 0.3s ease;
}

.support-box.active {
    display: flex;
}

@keyframes slideInSupport {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.support-box-header {
    background-color: #793fff;
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-box-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.support-box-header i {
    cursor: pointer;
    font-size: 1.25rem;
    opacity: 0.8;
    transition: var(--transition);
}

.support-box-header i:hover {
    opacity: 1;
}

.support-box-body {
    padding: 1rem;
    max-height: 500px;
    overflow-y: auto;
    background-color: #f8f9fa;
}

.support-contact-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.contact-icon-circle {
    width: 36px;
    height: 36px;
    background-color: #000;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.support-contact-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-now-link {
    color: #793fff;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.support-search {
    margin-bottom: 1rem;
}

.search-input-wrapper {
    position: relative;
    background: #f0f2f5;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.search-input-wrapper input {
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    outline: none;
}

.search-input-wrapper i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
}

.support-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.support-faq-list li {
    padding: 1rem;
    border-bottom: 1px solid #f0f2f5;
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.support-faq-list li:last-child {
    border-bottom: none;
}

.support-faq-list li:hover {
    background-color: #f8f9fa;
    color: #793fff;
}

.support-faq-list li i {
    font-size: 0.75rem;
    color: #cbd5e0;
}

.support-box-footer {
    display: flex;
    border-top: 1px solid #f0f2f5;
    padding: 0.5rem;
    background: white;
}

.support-footer-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: var(--transition);
}

.support-footer-item i {
    font-size: 1.1rem;
}

.support-footer-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

.support-footer-item.active {
    color: #793fff;
}

.support-footer-item:hover {
    color: #793fff;
}

/* Responsive */
@media (max-width: 992px) {
    .features, .solutions, .support-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }

    .solutions-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .sidebar-menu {
        width: 280px;
    }
    
    .sidebar-links a {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
    .hero {
        padding: 4rem 1rem 6rem;
    }
    .features {
        padding: 2rem 1rem;
    }
    .features-content h2 {
        font-size: 2rem;
    }
    .solutions {
        flex-direction: column-reverse;
        padding: 4rem 1rem;
        gap: 2rem;
    }
    .solutions-content h2 {
        font-size: 2rem;
    }
    .faqs {
        padding: 4rem 1rem;
    }
    .faqs-header h2 {
        font-size: 2.5rem;
    }
    .support-cta {
        padding: 4rem 1rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
    }
    .modal-card {
        max-width: 100%;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        animation: slideUp 0.3s ease-out;
    }
    @keyframes slideUp {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
}
