/* ==========================================================================
   DESIGN SYSTEM - MINIMAL LUXURY (HOSTINGER COUPONS 2026)
   ========================================================================== */

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

:root {
    /* Color Palette */
    --bg-dark: #09090b;
    --bg-card: #131316;
    --bg-card-hover: #18181c;
    --border-color: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(103, 61, 230, 0.3);

    --brand-primary: #673de6;
    --brand-secondary: #5833c7;
    --brand-glow: rgba(103, 61, 230, 0.45);
    --brand-light: #855eff;

    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;

    --accent-green: #10b981;
    --accent-green-bg: rgba(16, 185, 129, 0.1);
    --accent-gold: #f59e0b;
    --accent-gold-bg: rgba(245, 158, 11, 0.1);

    /* Typography */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-arabic: 'Cairo', sans-serif;

    /* Animation Transitions */
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s ease-out;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* RTL Support - Arabic Font Override */
body[dir="rtl"],
[dir="rtl"] body {
    font-family: var(--font-arabic);
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .font-heading {
    font-family: var(--font-arabic) !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
section[id],
footer {
    scroll-margin-top: 100px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Typography Classes */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: linear-gradient(135deg, #ffffff 30%, #855eff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary-color {
    color: var(--brand-primary);
}

.text-green {
    color: var(--accent-green) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.text-secondary-muted {
    color: var(--text-secondary);
}

.fw-bold {
    font-weight: 700;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

[dir="rtl"] .breadcrumb-list li:not(:last-child)::after {
    content: '‹';
    margin-left: 0;
    margin-right: 0.5rem;
}

.breadcrumb-list a:hover {
    color: var(--brand-light);
}

.breadcrumb-list li:last-child {
    color: var(--text-secondary);
    font-weight: 500;
}

/* Guide Steps Section */
.guide-section {
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    counter-reset: step-counter;
}

.guide-step {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
}

.guide-step:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(103, 61, 230, 0.15);
    border: 1px solid rgba(103, 61, 230, 0.3);
    border-radius: 50%;
    color: var(--brand-light);
    font-weight: 800;
    font-size: 1rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Related Pages Section */
.related-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.related-card-icon {
    font-size: 1.75rem;
    line-height: 1;
}

.related-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.related-card-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.related-card-arrow {
    color: var(--brand-light);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: auto;
}

/* Trust Signals Bar */
.trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 3rem 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-item-icon {
    color: var(--accent-green);
    font-size: 1.125rem;
}

/* Header & Banner Styles */
.promo-banner {
    background: linear-gradient(90deg, #180f30 0%, #0d061a 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    z-index: 100;
}

.promo-banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.countdown-wrapper {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    font-family: monospace;
    font-weight: bold;
    color: var(--accent-gold);
}

.header-main {
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-wrapper img {
    height: 35px !important;
    width: auto !important;
    max-height: 35px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-tag {
    background: var(--brand-primary);
    color: white;
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-link:hover {
    color: var(--brand-light);
}

.lang-switch {
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switch:hover {
    background: var(--border-color);
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0 3.5rem;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, var(--brand-glow) 0%, rgba(9, 9, 11, 0) 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(103, 61, 230, 0.1);
    border: 1px solid rgba(103, 61, 230, 0.2);
    color: var(--brand-light);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    white-space: nowrap;
}

.badge-verified svg {
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(2.25rem, 6vw, 3.75rem);
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Tabs Navigation */
.plan-tabs-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 3rem;
}

.plan-tabs {
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 0.5rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.plan-tabs::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.tab-btn {
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn.active {
    background: var(--brand-primary);
    color: white;
    box-shadow: 0 4px 20px var(--brand-glow);
}

/* Coupon & Offer Grid */
.plan-pane {
    display: none;
}

.plan-pane.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    animation: fadeIn 0.4s ease-out;
}

/* Coupon Card Styling (Minimal Luxury) */
.coupon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.coupon-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(103, 61, 230, 0.15);
}

.coupon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-light));
    opacity: 0.8;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    white-space: nowrap;
}

.tag-popular {
    background: var(--accent-gold-bg);
    color: var(--accent-gold);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.tag-featured {
    background: rgba(103, 61, 230, 0.1);
    color: var(--brand-light);
    border: 1px solid rgba(103, 61, 230, 0.2);
}

.tag-regular {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--accent-green);
    font-weight: 600;
    white-space: nowrap;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-desc {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
    min-height: 48px;
}

/* Plan Specs List */
.plan-specs {
    list-style: none;
    margin-bottom: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.plan-specs li {
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.plan-specs li svg {
    color: var(--accent-green);
    flex-shrink: 0;
}

.price-details {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-regular {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.price-now {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.price-discount {
    background: var(--accent-green-bg);
    color: var(--accent-green);
    font-size: 0.8rem;
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

/* Coupon Action system */
.coupon-action-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-primary-luxury {
    background: var(--brand-primary);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 15px rgba(103, 61, 230, 0.3);
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.btn-primary-luxury:hover {
    background: var(--brand-light);
    box-shadow: 0 6px 20px rgba(133, 94, 255, 0.45);
    transform: translateY(-1px);
}

.code-reveal-box {
    border: 1px dashed var(--border-color);
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: monospace;
    font-weight: bold;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.code-text {
    color: var(--brand-light);
    letter-spacing: 0.05em;
    font-size: 1.125rem;
}

.btn-copy {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-copy:hover {
    background: var(--brand-primary);
    color: white;
    border-color: var(--brand-primary);
}

/* Feature & Comparison Section */
.comparison-section {
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
}

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

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9375rem;
}

body[dir="rtl"] .comparison-table {
    text-align: right;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.02);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.01);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* AEO / FAQ Section */
.faq-section {
    padding: 6rem 0;
    border-top: 1px solid var(--border-color);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
}

.faq-answer {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    display: none;
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Toast/Notification System */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

body[dir="rtl"] .toast-container {
    right: auto;
    left: 2rem;
}

.toast {
    background: rgba(19, 19, 22, 0.95);
    border: 1px solid var(--accent-green);
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Footer styling */
.footer-main {
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    background: #060608;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-size: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a:hover {
    color: var(--brand-light);
}

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

.disclaimer-box {
    margin-top: 2rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--text-muted);
}

/* Micro-animations & Transitions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateY(100%) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.shake-animation {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20%,
    60% {
        transform: translateX(-4px);
    }

    40%,
    80% {
        transform: translateX(4px);
    }
}

/* Adaptive Layout / Responsiveness */
@media (max-width: 768px) {
    .promo-banner-content {
        gap: 0.5rem;
        flex-direction: column;
    }

    .header-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
        padding: 0;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--text-primary);
        transition: var(--transition-smooth);
        border-radius: 2px;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: rgba(19, 19, 22, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--border-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 1.5rem;
        z-index: 1000;
        transform: translateX(100%);
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        margin: 0;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    /* RTL Support for Sidebar */
    [dir="rtl"] .nav-menu {
        right: auto;
        left: 0;
        transform: translateX(-100%);
        border-left: none;
        border-right: 1px solid var(--border-color);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    [dir="rtl"] .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
        text-align: left;
    }

    [dir="rtl"] .nav-menu li {
        text-align: right;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        width: 100%;
    }

    .nav-menu .lang-switch {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
        padding: 0.6rem;
    }

    html.menu-open,
    body.menu-open {
        overflow: hidden;
        height: 100vh;
    }

    .hero-section {
        padding: 3.5rem 0 2rem;
    }

    .plan-tabs-container {
        margin-bottom: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .guide-steps {
        grid-template-columns: 1fr;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-bar {
        gap: 1.5rem;
    }

    .breadcrumb-nav {
        display: none;
    }
}

/* Inline SVG Icon Styles */
.icon-inline {
    display: inline-block;
    width: 1.1em;
    height: 1.1em;
    stroke-width: 2.25px;
    vertical-align: -0.18em;
    margin-right: 0.35rem;
    color: inherit;
}

[dir="rtl"] .icon-inline {
    margin-right: 0;
    margin-left: 0.35rem;
}

.related-card-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2px;
    color: var(--brand-light);
    display: inline-block;
}