:root {
    --navy: #0A1628;
    --navy-light: #1E3A5F;
    --blue: #2563EB;
    --blue-dark: #1D4ED8;
    --emerald: #10B981;
    --emerald-dark: #059669;
    --violet: #8B5CF6;
    --violet-dark: #7C3AED;
    --amber: #F59E0B;
    --amber-dark: #D97706;
    --teal: #14B8A6;
    --teal-dark: #0D9488;
    --rose: #F43F5E;
    --rose-dark: #E11D48;
    --orange: #F97316;
    --orange-dark: #EA580C;
    --bg: #F8FAFC;
    --surface: #FFFFFF;
    --text: #0F172A;
    --text-secondary: #475569;
    --text-muted: #64748B;
    --border: #E2E8F0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body[dir="rtl"] {
    font-family: 'Cairo', 'Inter', sans-serif;
}
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}
body[dir="rtl"] header {
    left: 0;
    right: 0;
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body[dir="rtl"] .header-inner {
    flex-direction: row-reverse;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 2px;
}
body[dir="rtl"] .logo-text {
    letter-spacing: 0;
}
nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
body[dir="rtl"] nav {
    flex-direction: row-reverse;
}
nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
nav a:hover {
    color: var(--navy);
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.2s;
}
.header-phone:hover {
    background: rgba(10, 22, 40, 0.04);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    gap: 8px;
}
.btn-primary {
    background: var(--navy);
    color: white;
    box-shadow: 0 4px 14px rgba(10, 22, 40, 0.25);
}
.btn-primary:hover {
    background: var(--navy-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(10, 22, 40, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--navy);
    background: rgba(10, 22, 40, 0.04);
}
.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
    background: #1DA851;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.2s;
    font-family: inherit;
}
.lang-toggle:hover {
    border-color: var(--navy);
    background: rgba(10, 22, 40, 0.04);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}
body[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 24px;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
@keyframes whatsappPulse {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
    }
}
.hero {
    padding: 140px 24px 100px;
    background: linear-gradient(180deg, #FFFFFF 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
}
body[dir="rtl"] .hero {
    direction: rtl;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}
body[dir="rtl"] .hero::before {
    right: auto;
    left: -200px;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(10, 22, 40, 0.05);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 24px;
}
body[dir="rtl"] .hero-badge {
    flex-direction: row-reverse;
}
.hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: pulse 2s infinite;
    flex-shrink: 0;
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--navy);
    max-width: 800px;
    margin: 0 auto 20px;
}
body[dir="rtl"] .hero h1 {
    letter-spacing: 0;
    line-height: 1.3;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--blue) 0%, var(--violet) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
body[dir="rtl"] .hero p {
    line-height: 1.8;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
body[dir="rtl"] .hero-ctas {
    flex-direction: row-reverse;
}
.hero-ctas .btn {
    padding: 14px 32px;
    font-size: 15px;
}
.trust-pill {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 12px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}
body[dir="rtl"] .trust-pill {
    flex-direction: row-reverse;
}
.trust-pill strong {
    color: var(--navy);
}
section {
    padding: 80px 24px;
}
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
body[dir="rtl"] section {
    direction: rtl;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 12px;
}
body[dir="rtl"] .section-label {
    letter-spacing: 0;
}
.section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}
body[dir="rtl"] .section-title {
    letter-spacing: 0;
    line-height: 1.3;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
}
body[dir="rtl"] .section-subtitle {
    line-height: 1.8;
}
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}
body[dir="rtl"] .pricing-toggle {
    flex-direction: row-reverse;
}
.pricing-toggle span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s;
}
.pricing-toggle span.active {
    color: var(--navy);
    font-weight: 600;
}
.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--navy);
    border-radius: 100px;
    position: relative;
    cursor: pointer;
    transition: background 0.2s;
}
.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s;
}
body[dir="rtl"] .toggle-switch::after {
    left: auto;
    right: 3px;
}
.toggle-switch.annual::after {
    transform: translateX(22px);
}
body[dir="rtl"] .toggle-switch.annual::after {
    transform: translateX(-22px);
}
.save-badge {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--emerald-dark);
    font-size: 11px;
    font-weight: 700;
    border-radius: 100px;
    margin-left: 4px;
}
body[dir="rtl"] .save-badge {
    margin-left: 0;
    margin-right: 4px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}
.product-card {
    background: var(--surface);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.product-card.hosting::before {
    background: linear-gradient(90deg, var(--emerald), var(--emerald-dark));
}
.product-card.gbox::before {
    background: linear-gradient(90deg, var(--violet), var(--violet-dark));
}
.product-card.zcare::before {
    background: linear-gradient(90deg, var(--amber), var(--amber-dark));
}
.product-card.einvoice::before {
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
}
.product-card.hero-product::before {
    background: linear-gradient(90deg, var(--teal), var(--teal-dark));
}
.product-card.fondok::before {
    background: linear-gradient(90deg, var(--rose), var(--rose-dark));
}
.product-card.zfleet::before {
    background: linear-gradient(90deg, var(--orange), var(--orange-dark));
}
.product-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}
body[dir="rtl"] .product-icon {
    margin-right: 0;
    margin-left: auto;
}
.hosting .product-icon {
    background: #ECFDF5;
}
.gbox .product-icon {
    background: #F5F3FF;
}
.zcare .product-icon {
    background: #FFFBEB;
}
.einvoice .product-icon {
    background: #EFF6FF;
}
.hero-product .product-icon {
    background: #F0FDFA;
}
.fondok .product-icon {
    background: #FFF1F2;
}
.zfleet .product-icon {
    background: #FFF7ED;
}
.product-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.product-card .tagline {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
body[dir="rtl"] .product-card .tagline {
    letter-spacing: 0;
}
.product-card .description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}
body[dir="rtl"] .product-card .description {
    line-height: 1.8;
}
.features-list {
    list-style: none;
    margin-bottom: 24px;
}
.features-list li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
body[dir="rtl"] .features-list li {
    flex-direction: row-reverse;
    text-align: right;
}
.features-list li::before {
    content: '✓';
    width: 18px;
    height: 18px;
    background: rgba(10, 22, 40, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--navy);
    font-weight: 700;
    flex-shrink: 0;
}
body[dir="rtl"] .features-list li::before {
    margin-right: 0;
    margin-left: 8px;
}
.price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 4px;
}
body[dir="rtl"] .price-row {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.price {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
}
.hosting .price {
    color: var(--emerald);
}
.gbox .price {
    color: var(--violet);
}
.zcare .price {
    color: var(--amber);
}
.einvoice .price {
    color: var(--blue);
}
.hero-product .price {
    color: var(--teal);
}
.fondok .price {
    color: var(--rose);
}
.zfleet .price {
    color: var(--orange);
}
.period {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}
.annual-price {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    min-height: 20px;
}
body[dir="rtl"] .annual-price {
    text-align: right;
}
.annual-price .strike {
    text-decoration: line-through;
    opacity: 0.6;
    margin-right: 4px;
}
body[dir="rtl"] .annual-price .strike {
    margin-right: 0;
    margin-left: 4px;
}
.product-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
}
.hosting .btn {
    background: var(--emerald);
    color: white;
}
.hosting .btn:hover {
    background: var(--emerald-dark);
}
.gbox .btn {
    background: var(--violet);
    color: white;
}
.gbox .btn:hover {
    background: var(--violet-dark);
}
.zcare .btn {
    background: var(--amber);
    color: white;
}
.zcare .btn:hover {
    background: var(--amber-dark);
}
.einvoice .btn {
    background: var(--blue);
    color: white;
}
.einvoice .btn:hover {
    background: var(--blue-dark);
}
.hero-product .btn {
    background: var(--teal);
    color: white;
}
.hero-product .btn:hover {
    background: var(--teal-dark);
}
.fondok .btn {
    background: var(--rose);
    color: white;
}
.fondok .btn:hover {
    background: var(--rose-dark);
}
.zfleet .btn {
    background: var(--orange);
    color: white;
}
.zfleet .btn:hover {
    background: var(--orange-dark);
}
.decision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.decision-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}
.decision-card:hover {
    border-color: var(--blue);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}
.decision-card .q {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
body[dir="rtl"] .decision-card .q {
    letter-spacing: 0;
    text-align: right;
}
.decision-card .a {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
}
body[dir="rtl"] .decision-card .a {
    text-align: right;
}
.decision-card .arrow {
    margin-top: 16px;
    font-size: 20px;
    color: var(--blue);
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.2s;
}
body[dir="rtl"] .decision-card .arrow {
    transform: translateX(8px);
}
.decision-card:hover .arrow {
    opacity: 1;
    transform: translateX(0);
}
.trust-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 24px;
    padding: 60px 40px;
    color: white;
    text-align: center;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.trust-item .num {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 4px;
}
.trust-item .label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}
body[dir="rtl"] .trust-item .label {
    font-size: 15px;
}
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap;
}
body[dir="rtl"] .trust-badges {
    flex-direction: row-reverse;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}
body[dir="rtl"] .trust-badge {
    flex-direction: row-reverse;
}
.payment-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}
body[dir="rtl"] .payment-badges {
    flex-direction: row-reverse;
}
.payment-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}
body[dir="rtl"] .payment-badge {
    flex-direction: row-reverse;
}
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}
body[dir="rtl"] .faq-question {
    text-align: right;
    flex-direction: row-reverse;
}
.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--text-muted);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}
body[dir="rtl"] .faq-answer {
    text-align: right;
}
.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}
body[dir="rtl"] .faq-answer p {
    line-height: 1.9;
}
.cta-section {
    background: linear-gradient(135deg, #EFF6FF 0%, #F5F3FF 50%, #FFFBEB 100%);
    border-radius: 24px;
    text-align: center;
    padding: 80px 40px;
    margin: 0 24px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
body[dir="rtl"] .cta-section {
    direction: rtl;
}
.cta-section h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}
body[dir="rtl"] .cta-section h2 {
    line-height: 1.3;
}
.cta-section p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto 32px;
}
body[dir="rtl"] .cta-section p {
    line-height: 1.8;
}
.contact-channels {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
body[dir="rtl"] .contact-channels {
    flex-direction: row-reverse;
}
.contact-channel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}
.contact-channel:hover {
    border-color: var(--navy);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.contact-channel .icon {
    font-size: 18px;
}
footer {
    background: var(--navy);
    color: white;
    padding: 60px 24px 24px;
    margin-top: 80px;
}
body[dir="rtl"] footer {
    direction: rtl;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand .logo-text {
    color: white;
}
.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 12px;
    line-height: 1.6;
    max-width: 280px;
}
body[dir="rtl"] .footer-brand p {
    line-height: 1.8;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}
body[dir="rtl"] .footer-col h4 {
    letter-spacing: 0;
}
.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    padding: 6px 0;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
body[dir="rtl"] .footer-bottom {
    flex-direction: row-reverse;
}
.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active {
    display: flex;
}
.modal {
    background: white;
    border-radius: 20px;
    max-width: 480px;
    width: 100%;
    padding: 40px;
    position: relative;
    animation: modalIn 0.3s ease;
}
body[dir="rtl"] .modal {
    direction: rtl;
}
@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    background: var(--bg);
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}
body[dir="rtl"] .modal-close {
    right: auto;
    left: 16px;
}
.modal h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
body[dir="rtl"] .modal h3 {
    line-height: 1.3;
}
.modal p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}
body[dir="rtl"] .modal p {
    line-height: 1.7;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
}
body[dir="rtl"] .form-group input,
body[dir="rtl"] .form-group select {
    text-align: right;
}
@media (max-width: 768px) {
    nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .trust-grid {
        gap: 24px;
    }
    .trust-section {
        padding: 40px 24px;
    }
    .cta-section {
        padding: 60px 24px;
    }
    .hero {
        padding: 120px 24px 60px;
    }
    .lang-toggle span {
        display: none;
    }
    .header-phone {
        display: none;
    }
    .whatsapp-float {
        width: 48px;
        height: 48px;
        font-size: 22px;
        bottom: 16px;
        right: 16px;
    }
    body[dir="rtl"] .whatsapp-float {
        left: 16px;
    }
}
@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
}