@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto';
    src: url('fonts/Roboto-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: break-word;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --primary-gradient: linear-gradient(45deg, #2563eb, #7c3aed);
    --hover-gradient: linear-gradient(45deg, #3b82f6, #8b5cf6);
    --gold-gradient: radial-gradient(ellipse at center, #FFE83B 19%, #BB8C38 88%, #B07C38 100%);
    --white-gradient: linear-gradient(45deg, #F5F5F5, #E0E0E0);
    --background-dark: #111827;
    --background-light: #f3f4f6;
    --card-bg-dark: rgba(31, 41, 55, 0.8);
    --card-bg-light: rgba(255, 255, 255, 0.95);
    --text-color-dark: #e2e8f0;
    --text-color-light: #1f2937;
    --font-family: 'Roboto', sans-serif;
    --shadow-dark: 0 10px 20px rgba(0, 0, 0, 0.4);
    --shadow-light: 0 10px 20px rgba(0, 0, 0, 0.15);
    --sidebar-width: 220px;
    --green-checkmark: #22c55e;
    --black-checkmark: #000000;
    --yellow-checkmark: #FFD700;
}

body {
    font-family: var(--font-family) !important;
    font-size: 16px !important;
    color: var(--text-color-dark);
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--background-dark);
}

body[data-theme="light"] {
    background: var(--background-light);
    color: var(--text-color-light);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--card-bg-dark);
    backdrop-filter: blur(10px);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: var(--shadow-dark);
    z-index: 1000;
}

body[data-theme="light"] .navbar {
    background: var(--card-bg-light);
    box-shadow: var(--shadow-light);
}

.navbar-logo {
    height: 40px;
    cursor: pointer;
}

.navbar-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.theme-toggle, .language-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle svg, .language-toggle svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-color-dark);
}

body[data-theme="light"] .theme-toggle svg, 
body[data-theme="light"] .language-toggle svg {
    stroke: var(--text-color-light);
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    background: var(--card-bg-dark);
    border-radius: 8px;
    box-shadow: var(--shadow-dark);
    padding: 8px 0;
    z-index: 1000;
}

body[data-theme="light"] .language-dropdown {
    background: var(--card-bg-light);
    box-shadow: var(--shadow-light);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color-dark);
}

body[data-theme="light"] .language-option {
    color: var(--text-color-light);
}

.language-option:hover {
    background: var(--primary-gradient);
    color: white;
}

.sidebar {
    position: fixed;
    top: 60px;
    left: calc(-1 * var(--sidebar-width));
    width: var(--sidebar-width);
    background: var(--card-bg-dark);
    backdrop-filter: blur(10px);
    height: calc(100vh - 60px);
    padding: 20px;
    box-shadow: var(--shadow-dark);
    z-index: 999;
    transition: left 0.3s ease-in-out, right 0.3s ease-in-out;
}

.sidebar:hover, .sidebar.open {
    left: 0;
}

html[dir="rtl"] .sidebar {
    left: auto;
    right: calc(-1 * var(--sidebar-width));
}

html[dir="rtl"] .sidebar:hover, html[dir="rtl"] .sidebar.open {
    right: 0;
}

body[data-theme="light"] .sidebar {
    background: var(--card-bg-light);
    box-shadow: var(--shadow-light);
}

.sidebar button {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 10px 16px;
    font-size: 16px;
    color: var(--text-color-dark);
    cursor: pointer;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: background 0.3s, color 0.3s;
}

body[data-theme="light"] .sidebar button {
    color: var(--text-color-light);
}

.sidebar button:hover, .sidebar button.active {
    background: var(--primary-gradient);
    color: white !important;
}

.sidebar .submenu {
    padding-left: 20px;
    display: block;
}

html[dir="rtl"] .sidebar button {
    text-align: right;
}

html[dir="rtl"] .sidebar .submenu {
    padding-left: 0;
    padding-right: 20px;
}

.content {
    padding: 80px 20px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    transition: margin 0.3s ease-in-out;
}

html[dir="ltr"].sidebar-open .content {
    margin-left: calc(var(--sidebar-width) + 20px);
}

html[dir="rtl"].sidebar-open .content {
    margin-right: calc(var(--sidebar-width) + 20px);
}

@media (max-width: 768px) {
    html[dir="ltr"].sidebar-open .content {
        margin-left: 0;
    }
    html[dir="rtl"].sidebar-open .content {
        margin-right: 0;
    }
}

.help-container {
    background: var(--card-bg-dark);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-dark);
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

body[data-theme="light"] .help-container {
    background: var(--card-bg-light);
    box-shadow: var(--shadow-light);
}

.section {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.section.active {
    display: block;
    opacity: 1;
}

#landing {
    width: 100%;
    background: var(--primary-gradient);
    border-radius: 16px;
    padding-bottom: 24px;
    margin-bottom: 20px;
}

#landing .landing-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    flex-wrap: wrap;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
    padding: 0 2rem;
}

#landing .landing-left {
    flex: 1;
    text-align: left;
    padding: 5%;
    color: white;
}

html[dir="rtl"] #landing .landing-left {
    text-align: right;
}

#landing .header-glass {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--gold-gradient);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.5);
}

#landing .logo-container, #landing .title-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#landing .landing-logo {
    max-width: 90px;
    height: auto;
}

#landing .section-title {
    font-size: 2em !important;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
    margin-bottom: 0 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 
                 -1px -1px 2px rgba(255, 255, 255, 0.3);
    transform: translateZ(0);
}

#landing p {
    font-size: 22px !important;
    line-height: 32px;
    margin-bottom: 24px;
    color: white;
}

#landing .ai-powered {
    font-size: 20px !important;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
    text-decoration: none;
}

#landing .youtube-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--white-gradient);
    color: #1a1a1a;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    overflow: visible;
    text-decoration: none;
}

#landing .youtube-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

#landing .youtube-button .youtube-text {
    display: inline-block;
    text-decoration: none;
}

#landing .youtube-button .youtube-icon {
    width: 40px;
    height: 32px;
    flex-shrink: 0;
}

#landing .landing-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#landing .big-logo {
    max-width: 100%;
    height: auto;
    animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

html[dir="rtl"] #landing .big-logo {
    animation: slideInRTL 1s ease-out forwards;
}

@keyframes slideInRTL {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

h1 {
    font-size: 24px !important;
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

h2 {
    font-size: 20px !important;
    font-weight: 500;
    margin-bottom: 16px;
}

p {
    font-size: 16px !important;
    line-height: 24px;
    margin-bottom: 16px;
}

.default-footer p,
.landing-footer p {
    margin-bottom: 0;
}

ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 16px;
}

html[dir="rtl"] ul {
    padding-left: 0;
    padding-right: 20px;
    list-style-position: outside;
}

li {
    font-size: 16px !important;
    margin-bottom: 8px;
}

.default-footer {
    text-align: center;
    font-size: 14px !important;
    color: #9ca3af;
    margin-top: 20px;
}

.landing-footer {
    text-align: center;
    font-size: 14px !important;
    color: white;
    margin-top: 20px;
    background: var(--primary-gradient);
    border-radius: 16px;
    padding: 10px;
    display: none;
}

.landing-active .default-footer {
    display: none;
}

.landing-active .landing-footer {
    display: block;
}

.business-info {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
}

body[data-theme="light"] .business-info {
    background: rgba(0, 0, 0, 0.05);
}

.business-info p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

html[dir="rtl"] .business-info p {
    flex-direction: row-reverse;
}

.business-info .icon {
    font-size: 20px;
}

.bug-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin-top: 20px;
    box-sizing: border-box;
}

body[data-theme="light"] .bug-form {
    background: rgba(0, 0, 0, 0.05);
}

.bug-form label {
    display: block;
    font-size: 16px;
    margin-bottom: 8px;
}

.bug-form select, .bug-form input, .bug-form textarea {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #9ca3af;
    border-radius: 4px;
    background: var(--card-bg-dark);
    color: var(--text-color-dark);
    font-family: var(--font-family);
    font-size: 16px;
    box-sizing: border-box;
}

body[data-theme="light"] .bug-form select,
body[data-theme="light"] .bug-form input,
body[data-theme="light"] .bug-form textarea {
    background: var(--card-bg-light);
    color: var(--text-color-light);
}

.bug-form textarea {
    resize: vertical;
    min-height: 100px;
}

.bug-form .send-button {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.bug-form .send-button:hover {
    opacity: 0.9;
}

.pricing-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.9));
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    margin: 20px auto 0;
}

body[data-theme="light"] .pricing-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.95));
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.pricing-title {
    font-size: 32px !important;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 
                 -1px -1px 2px rgba(255, 255, 255, 0.3);
    transform: translateZ(0);
}

.pricing-subtitle {
    font-size: 18px !important;
    font-weight: 500;
    text-align: center;
    margin-bottom: 40px;
    color: #1f2937;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), 
                 -1px -1px 1px rgba(255, 255, 255, 0.2);
    transform: translateZ(0);
}

body[data-theme="light"] .pricing-subtitle {
    color: #1f2937;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    width: 100%;
}

.card {
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.startup, .card.large {
    background: linear-gradient(45deg, #2563eb, #7c3aed);
}

.card.medium {
    background: radial-gradient(ellipse at center, #FFE83B 19%, #BB8C38 88%, #B07C38 100%);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-dark);
}

body[data-theme="light"] .card:hover {
    box-shadow: var(--shadow-light);
}

.card.popular {
    border: 2px solid #2563eb;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-gradient);
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 6px 12px;
    border-bottom-left-radius: 8px;
}

.card h2 {
    font-size: 24px !important;
    font-weight: 500;
    margin: 16px 0;
    color: #ffffff;
}

.card.medium h2 {
    color: #1a1a1a;
}

.card .price {
    font-size: 22px !important;
    font-weight: 700;
    color: #FFD700;
    margin: 16px 0;
    line-height: 32px;
}

.card.medium .price {
    color: #001dff;
}

.card .description {
    font-size: 16px !important;
    color: #e2e8f0;
    margin: 16px 0;
}

.card.medium .description {
    color: #1a1a1a;
}

body[data-theme="light"] .card .description {
    color: #e2e8f0;
}

body[data-theme="light"] .card.medium .description {
    color: #1a1a1a;
}

.card ul {
    list-style: none;
    padding: 0 16px;
    margin: 16px 0;
    text-align: left;
}

.card ul li {
    position: relative;
    padding-left: 24px;
    font-size: 16px !important;
    margin: 12px 0;
    color: #ffffff;
}

.card.medium ul li {
    color: #1a1a1a;
}

body[data-theme="light"] .card ul li {
    color: #ffffff;
}

body[data-theme="light"] .card.medium ul li {
    color: #1a1a1a;
}

.card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 16px;
    font-weight: bold;
}

.card.startup ul li.yellow-checkmark::before,
.card.large ul li.yellow-checkmark::before {
    color: var(--yellow-checkmark);
}

.card.medium ul li.black-checkmark::before {
    color: var(--black-checkmark);
}

html[dir="rtl"] .card ul {
    text-align: right;
    padding-right: 16px;
    padding-left: 0;
}

html[dir="rtl"] .card ul li {
    padding-right: 24px;
    padding-left: 0;
}

html[dir="rtl"] .card ul li::before {
    left: auto;
    right: 0;
}

html[dir="rtl"] .card.startup ul li.yellow-checkmark::before,
html[dir="rtl"] .card.large ul li.yellow-checkmark::before {
    color: var(--yellow-checkmark);
}

html[dir="rtl"] .card.medium ul li.black-checkmark::before {
    color: var(--black-checkmark);
}

.card .btn {
    background: var(--primary-gradient);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.2s ease;
    display: inline-block;
    text-decoration: none;
    margin: 16px 0;
}

.card.startup .btn, .card.large .btn {
    background: linear-gradient(45deg, #F5F5F5, #E0E0E0);
    color: #1a1a1a;
}

.card .btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.pricing-details {
    margin-top: 40px;
    text-align: center;
    font-size: 14px !important;
    color: #000000;
}

body[data-theme="light"] .pricing-details {
    color: #000000;
}

.pricing-details p {
    margin: 16px 0;
}

.pricing-details a {
    color: #2563eb;
    text-decoration: none;
}

.pricing-details a:hover {
    text-decoration: underline;
}
/* GDPR Modal Styles - Add to help.css */
.gdpr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.gdpr-modal.active {
    opacity: 1;
    visibility: visible;
}

.gdpr-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.gdpr-modal-container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    width: 90%;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gdpr-modal.active .gdpr-modal-container {
    transform: scale(1) translateY(0);
}

.gdpr-modal-content {
    background: var(--card-bg-dark);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

body[data-theme="light"] .gdpr-modal-content {
    background: var(--card-bg-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.gdpr-modal-header {
    padding: 32px 32px 0;
    text-align: center;
}

.gdpr-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    animation: gdpr-pulse 2s infinite;
}

@keyframes gdpr-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4); }
}

.gdpr-modal-header h2 {
    font-size: 24px !important;
    font-weight: 600;
    margin: 0;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gdpr-modal-body {
    padding: 20px 32px;
    text-align: center;
}

.gdpr-modal-body p {
    font-size: 15px !important;
    line-height: 1.6;
    color: var(--text-color-dark);
    margin: 0;
    opacity: 0.9;
}

body[data-theme="light"] .gdpr-modal-body p {
    color: var(--text-color-light);
}

.gdpr-privacy-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.gdpr-privacy-link:hover {
    color: #60a5fa;
}

.gdpr-privacy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s;
}

.gdpr-privacy-link:hover::after {
    width: 100%;
}

.gdpr-modal-footer {
    padding: 0 32px 32px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.gdpr-btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

.gdpr-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.gdpr-btn:hover::before {
    left: 100%;
}

.gdpr-btn-accept {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.gdpr-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.gdpr-btn-decline {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body[data-theme="light"] .gdpr-btn-decline {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-color-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.gdpr-btn-decline:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

body[data-theme="light"] .gdpr-btn-decline:hover {
    background: rgba(0, 0, 0, 0.1);
}

@media (max-width: 640px) {
    .gdpr-modal-container {
        width: 95%;
        margin: 20px;
    }
    
    .gdpr-modal-header,
    .gdpr-modal-body,
    .gdpr-modal-footer {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .gdpr-modal-footer {
        flex-direction: column-reverse;
        gap: 10px;
    }
    
    .gdpr-btn {
        width: 100%;
    }
}
@media (max-width: 768px) {
    #landing .landing-container {
        flex-direction: column;
        text-align: center;
    }

    #landing .landing-left {
        text-align: center;
        padding: 5% 2%;
    }

    html[dir="rtl"] #landing .landing-left {
        text-align: center;
    }

    #landing .landing-right {
        max-width: 80%;
    }

    #landing .header-glass {
        flex-direction: column;
        text-align: center;
    }

    #landing .section-title {
        font-size: 1.5em !important;
    }

    #landing p {
        font-size: 18px !important;
        line-height: 28px;
    }

    #landing .ai-powered {
        font-size: 18px !important;
    }

    .sidebar {
        width: 100%;
        left: -100%;
    }

    .sidebar:hover, .sidebar.open {
        left: 0;
    }

    html[dir="rtl"] .sidebar {
        right: -100%;
    }

    html[dir="rtl"] .sidebar:hover, html[dir="rtl"] .sidebar.open {
        right: 0;
    }

    .pricing-title {
        font-size: 28px !important;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .card {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 24px !important;
    }

    .pricing-container {
        padding: 16px;
    }

    .card .price {
        font-size: 18px !important;
    }

    .card h2 {
        font-size: 20px !important;
    }
}
