* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #229ed9;
    --primary-dark: #147bb1;
    --background: #f3f6f9;
    --surface: #ffffff;
    --text: #18212b;
    --muted: #718096;
    --border: #e3e9ef;
}

body {
    font-family: Arial, Tahoma, sans-serif;
    background: var(--background);
    color: var(--text);
    padding-bottom: 85px;
}

button,
input {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.app-container {
    width: 100%;
    max-width: 700px;
    min-height: 100vh;
    margin: auto;
    padding: 20px 16px;
}

.top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.welcome-text {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 4px;
}

.top-header h1 {
    font-size: 26px;
}

.profile-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: 50%;
    font-size: 21px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
}

.search-section {
    margin-bottom: 18px;
}

.search-section input {
    width: 100%;
    padding: 15px 17px;
    border: 1px solid var(--border);
    border-radius: 14px;
    outline: none;
    background: var(--surface);
    font-size: 15px;
}

.search-section input:focus {
    border-color: var(--primary);
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: white;
    background: linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    border-radius: 22px;
    padding: 24px 20px;
    margin-bottom: 28px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 11px;
}

.hero-section h2 {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
}

.hero-icon {
    min-width: 72px;
    font-size: 55px;
    text-align: center;
}

.section {
    margin-bottom: 28px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: 20px;
}

.section-header span {
    color: var(--muted);
    font-size: 13px;
}

.categories {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 3px;
}

.category {
    min-width: 95px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
    color: var(--text);
}

.category span {
    display: block;
    font-size: 22px;
    margin-bottom: 5px;
}

.category.active {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.product-card {
    background: var(--surface);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.06);
}

.product-image {
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 55px;
}

.bot-image {
    background: #eaf7fd;
}

.marketing-image {
    background: #fff3df;
}

.vps-image {
    background: #eeeafe;
}

.product-content {
    padding: 17px;
}

.product-type {
    display: inline-block;
    color: var(--primary);
    background: #eaf7fd;
    border-radius: 15px;
    padding: 5px 9px;
    font-size: 11px;
    margin-bottom: 9px;
}

.product-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.product-content p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 17px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.price strong {
    color: var(--primary);
    font-size: 21px;
}

.price span {
    color: var(--muted);
    font-size: 12px;
}

.order-button {
    border: none;
    border-radius: 11px;
    padding: 11px 15px;
    color: white;
    background: var(--primary);
    font-weight: bold;
}

.order-button:hover {
    background: var(--primary-dark);
}

.bottom-navigation {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 700px;
    height: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--surface);
    border-top: 1px solid var(--border);
    z-index: 100;
}

.nav-item {
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 12px;
}

.nav-item span {
    display: block;
    font-size: 21px;
    margin-bottom: 4px;
}

.nav-item.active {
    color: var(--primary);
}

.hidden {
    display: none;
}

@media (min-width: 650px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card:last-child {
        grid-column: span 2;
    }
}
.details-link {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: bold;
    text-decoration: none;
}

.back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.product-details-card {
    background: var(--surface);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.product-details-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaf7fd, #eeeafe);
    font-size: 90px;
}

.product-details-content {
    padding: 24px;
}

.product-details-content h1 {
    margin: 12px 0;
    font-size: 28px;
}

.product-description {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 22px;
}

.features-box {
    background: #f8fafc;
    padding: 18px;
    border-radius: 15px;
    margin-bottom: 22px;
}

.features-box h3 {
    margin-bottom: 12px;
}

.features-box ul {
    padding-right: 20px;
    color: var(--muted);
    line-height: 2;
}

.details-price-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.details-price-box span,
.details-price-box small {
    display: block;
    color: var(--muted);
}

.details-price-box strong {
    display: inline-block;
    color: var(--primary);
    font-size: 30px;
    margin: 5px 0;
}

.details-order-button {
    padding: 14px 24px;
}
.bottom-navigation {
    grid-template-columns: repeat(5, 1fr);
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.page-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, #18212b, #229ed9);
    color: white;
    padding: 24px;
    border-radius: 22px;
    margin-bottom: 22px;
}

.page-title h1 {
    font-size: 26px;
    margin: 8px 0;
}

.page-title p {
    color: rgba(255, 255, 255, 0.8);
}

.page-badge {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    font-size: 12px;
}

.page-icon {
    font-size: 54px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.checkout-card,
.order-summary {
    background: var(--surface);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.checkout-card {
    margin-bottom: 18px;
}

.checkout-card h2 {
    margin-bottom: 18px;
    font-size: 19px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px;
    outline: none;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.payment-methods {
    display: grid;
    gap: 12px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--border);
    padding: 14px;
    border-radius: 14px;
    cursor: pointer;
}

.payment-option:has(input:checked) {
    border-color: var(--primary);
    background: #eff9fe;
}

.payment-option input {
    display: none;
}

.payment-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf7fd;
    color: var(--primary);
    font-weight: bold;
    font-size: 20px;
}

.payment-option strong,
.payment-option small {
    display: block;
}

.payment-option small {
    color: var(--muted);
    margin-top: 4px;
}

.coupon-row {
    display: flex;
    gap: 10px;
}

.coupon-row input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 13px;
    outline: none;
}

.coupon-row button {
    border: none;
    border-radius: 12px;
    padding: 0 20px;
    color: white;
    background: var(--primary);
    font-weight: bold;
}

.summary-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.summary-icon {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf7fd;
    font-size: 34px;
}

.summary-product span,
.summary-product p {
    color: var(--muted);
    font-size: 13px;
}

.summary-product h3 {
    margin: 5px 0;
}

.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
}

.summary-line span {
    color: var(--muted);
}

.total-line {
    border-top: 1px solid var(--border);
    margin-top: 8px;
    padding-top: 18px;
}

.total-line strong {
    color: var(--primary);
    font-size: 24px;
}

.confirm-order-button {
    width: 100%;
    margin-top: 18px;
    border: none;
    border-radius: 13px;
    padding: 15px;
    color: white;
    background: var(--primary);
    font-size: 16px;
    font-weight: bold;
}

.secure-note {
    margin-top: 13px;
    text-align: center;
    color: var(--muted);
    font-size: 12px;
}

@media (min-width: 800px) {
    .checkout-layout {
        grid-template-columns: 1.4fr 0.8fr;
    }

    .order-summary {
        height: fit-content;
        position: sticky;
        top: 20px;
    }

    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-group.full {
        grid-column: span 2;
    }
}
.orders-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    margin-bottom: 20px;
}

.orders-tab {
    min-width: max-content;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 11px 16px;
    background: var(--surface);
    color: var(--text);
}

.orders-tab.active {
    color: white;
    border-color: var(--primary);
    background: var(--primary);
}

.orders-list {
    display: grid;
    gap: 16px;
}

.order-card {
    background: var(--surface);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.order-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
}

.order-number {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 6px;
}

.order-status {
    padding: 7px 11px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.order-status.pending {
    color: #9a6700;
    background: #fff3cd;
}

.order-status.active {
    color: #137a42;
    background: #e7f8ee;
}

.order-status.expired {
    color: #c53030;
    background: #fff0f0;
}

.order-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.order-meta span,
.order-meta strong {
    display: block;
}

.order-meta span {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 5px;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.order-actions a,
.order-actions button {
    flex: 1;
    text-align: center;
    border: none;
    border-radius: 11px;
    padding: 12px;
    text-decoration: none;
    color: white;
    background: var(--primary);
    font-weight: bold;
}

.order-actions a {
    color: var(--primary);
    border: 1px solid var(--primary);
    background: transparent;
}

.order-card.hidden-order {
    display: none;
}

@media (max-width: 600px) {
    .order-meta {
        grid-template-columns: 1fr;
    }

    .order-actions {
        flex-direction: column;
    }
}
.language-switcher {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 14px;
}

.language-switcher a {
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text);
    background: var(--surface);
    font-size: 13px;
}

.language-switcher a.active {
    color: white;
    border-color: var(--primary);
    background: var(--primary);
}
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] .top-header,
html[dir="ltr"] .hero-section,
html[dir="ltr"] .section-header,
html[dir="ltr"] .product-footer,
html[dir="ltr"] .order-card-header,
html[dir="ltr"] .summary-line,
html[dir="ltr"] .details-price-box {
    flex-direction: row;
}

html[dir="rtl"] .top-header,
html[dir="rtl"] .hero-section,
html[dir="rtl"] .section-header,
html[dir="rtl"] .product-footer,
html[dir="rtl"] .order-card-header,
html[dir="rtl"] .summary-line,
html[dir="rtl"] .details-price-box {
    flex-direction: row;
}

html[dir="ltr"] .features-box ul {
    padding-left: 20px;
    padding-right: 0;
}

html[dir="rtl"] .features-box ul {
    padding-right: 20px;
    padding-left: 0;
}

html[dir="ltr"] input,
html[dir="ltr"] textarea,
html[dir="ltr"] select {
    text-align: left;
}

html[dir="rtl"] input,
html[dir="rtl"] textarea,
html[dir="rtl"] select {
    text-align: right;
}

html[dir="ltr"] .language-switcher {
    justify-content: flex-end;
}

html[dir="rtl"] .language-switcher {
    justify-content: flex-start;
}
.product-details {
    background: var(--surface);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.product-image.large {
    height: 240px;
    margin-bottom: 22px;
    border-radius: 18px;
    font-size: 90px;
}

.product-details h1 {
    font-size: 30px;
    margin: 12px 0;
}

.details-description {
    color: var(--muted);
    line-height: 1.9;
    margin-bottom: 24px;
}

.details-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
}

.details-price strong {
    color: var(--primary);
    font-size: 32px;
}

.details-price span {
    color: var(--muted);
    font-size: 14px;
}

.big-button {
    width: 100%;
    padding: 15px;
    font-size: 17px;
}

.back-link {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}
.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.support-card,
.support-form-card {
    background: var(--surface);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.support-card {
    text-align: center;
}

.support-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf7fd;
    font-size: 30px;
}

.support-card h3 {
    margin-bottom: 8px;
}

.support-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.support-button {
    display: inline-block;
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 13px;
    color: white;
    background: var(--primary);
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.support-form-card h2 {
    margin-bottom: 18px;
}

@media (min-width: 700px) {
    .support-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.profile-card,
.profile-details-card {
    background: var(--surface);
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 18px;
}

.profile-card {
    display: flex;
    align-items: center;
    gap: 16px;
}

.profile-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf7fd;
    font-size: 36px;
}

.profile-info p {
    color: var(--muted);
    margin-top: 5px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 18px;
}

.profile-stat {
    background: var(--surface);
    padding: 18px 12px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.profile-stat span,
.profile-stat strong {
    display: block;
}

.profile-stat span {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 8px;
}

.profile-stat strong {
    color: var(--primary);
    font-size: 24px;
}

.profile-details-card h2 {
    margin-bottom: 16px;
}

.profile-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.profile-detail-row:last-child {
    border-bottom: none;
}

.profile-detail-row span {
    color: var(--muted);
}

.profile-actions {
    display: grid;
    gap: 12px;
}

.profile-action {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    padding: 16px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text);
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
    .profile-stats {
        grid-template-columns: 1fr;
    }
}
.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

.cart-main {
    display: grid;
    gap: 15px;
}

.cart-item-card {
    display: flex;
    gap: 15px;
    background: var(--surface);
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.cart-item-icon {
    width: 72px;
    min-width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: #eaf7fd;
    font-size: 35px;
}

.cart-item-content {
    flex: 1;
}

.cart-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.cart-item-header h3 {
    margin-top: 7px;
}

.cart-remove-button {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: #fff0f0;
    color: #c53030;
    font-size: 22px;
}

.cart-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 18px;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-controls button {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: var(--surface);
    font-size: 18px;
}

.quantity-controls span {
    min-width: 25px;
    text-align: center;
    font-weight: bold;
}

.cart-item-price {
    text-align: end;
}

.cart-item-price strong,
.cart-item-price small {
    display: block;
}

.cart-item-price strong {
    color: var(--primary);
    font-size: 19px;
}

.cart-item-price small {
    color: var(--muted);
    margin-top: 4px;
}

.cart-summary {
    background: var(--surface);
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.cart-summary h2 {
    margin-bottom: 15px;
}

.clear-cart-button {
    width: 100%;
    margin-top: 10px;
    border: 1px solid #c53030;
    border-radius: 12px;
    padding: 13px;
    color: #c53030;
    background: transparent;
    font-weight: bold;
}

.empty-cart-message {
    background: var(--surface);
    padding: 45px 20px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.empty-cart-icon {
    font-size: 60px;
    margin-bottom: 15px;
}

.empty-cart-message p {
    color: var(--muted);
    margin: 10px 0 20px;
}

.empty-cart-button {
    display: inline-block;
    text-decoration: none;
}

@media (min-width: 800px) {
    .cart-layout {
        grid-template-columns: 1.4fr 0.7fr;
    }

    .cart-summary {
        height: fit-content;
        position: sticky;
        top: 20px;
    }
}

@media (max-width: 560px) {
    .cart-item-card {
        align-items: flex-start;
    }

    .cart-item-icon {
        width: 58px;
        min-width: 58px;
        height: 58px;
        font-size: 28px;
    }

    .cart-item-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .cart-item-price {
        text-align: start;
    }
}
.iti {
    width: 100%;
    margin-bottom: 17px; /* نفس المسافة بتاعة باقي الـ inputs */
}

.iti input {
    width: 100%;
    margin-bottom: 17px;
}

.iti + label {
    margin-top: 0;
}
.iti {
    width: 100%;
    margin-bottom: 17px !important;
}

.iti + label {
    display: block;
    margin-top: 17px !important;
}
.website-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #e5eaf0;
    backdrop-filter: blur(12px);
}

.website-header-container {
    width: min(1180px, calc(100% - 32px));
    min-height: 74px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.website-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #12233c;
    text-decoration: none;
    font-size: 23px;
}

.website-logo-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #173a56, #1fa6e1);
}

.website-navigation {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.website-navigation a {
    color: #536174;
    text-decoration: none;
    font-weight: 700;
}

.website-navigation a:hover,
.website-navigation a.active {
    color: #159ed8;
}

.website-header-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.language-button,
.header-login-button,
.header-register-button {
    padding: 10px 15px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 700;
    white-space: nowrap;
}

.language-button {
    color: #36465b;
    background: #f3f6fa;
}

.header-login-button {
    color: #158fc6;
    border: 1px solid #159ed8;
}

.header-register-button {
    color: white;
    background: linear-gradient(135deg, #173a56, #1fa6e1);
}

.mobile-menu-button {
    display: none;
    border: 0;
    background: transparent;
    font-size: 27px;
    cursor: pointer;
}

.public-home-page,
.about-page {
    width: min(1180px, calc(100% - 32px));
    margin: auto;
}

.home-hero-section {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 60px;
    padding: 70px 0;
}

.home-hero-badge,
.home-section-heading > span,
.home-about-content > span,
.about-page-hero > span {
    display: inline-block;
    color: #159ed8;
    font-weight: 800;
    margin-bottom: 14px;
}

.home-hero-content h1 {
    max-width: 680px;
    margin: 0 0 20px;
    color: #12233c;
    font-size: clamp(38px, 5vw, 65px);
    line-height: 1.15;
}

.home-hero-content p {
    max-width: 650px;
    margin: 0;
    color: #66768a;
    font-size: 19px;
    line-height: 1.9;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.home-primary-button,
.home-secondary-button,
.home-cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 13px;
    text-decoration: none;
    font-weight: 800;
}

.home-primary-button,
.home-cta-button {
    color: white;
    background: linear-gradient(135deg, #173a56, #1fa6e1);
}

.home-secondary-button {
    color: #159ed8;
    border: 1px solid #159ed8;
}

.home-hero-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 17px;
    padding: 30px;
    border-radius: 32px;
    background: linear-gradient(145deg, #edf8fd, #f7f9fc);
}

.home-visual-card {
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13px;
    border-radius: 22px;
    background: white;
    box-shadow: 0 15px 35px rgba(24, 56, 85, 0.08);
}

.home-visual-card span {
    font-size: 42px;
}

.home-visual-card.main-card {
    color: white;
    background: linear-gradient(135deg, #173a56, #1fa6e1);
}

.home-services-section,
.home-products-section {
    padding: 85px 0;
}

.home-section-heading {
    max-width: 680px;
    margin: 0 auto 45px;
    text-align: center;
}

.home-section-heading h2,
.home-about-content h2,
.about-page-hero h1 {
    margin: 0;
    color: #12233c;
    font-size: clamp(30px, 4vw, 47px);
}

.home-services-grid,
.about-page-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
}

.home-service-card,
.about-page-content article {
    padding: 29px;
    border: 1px solid #e7edf3;
    border-radius: 22px;
    background: white;
    box-shadow: 0 15px 40px rgba(27, 56, 83, 0.06);
}

.home-service-card > div,
.about-page-content article > div {
    font-size: 37px;
}

.home-service-card h3,
.about-page-content h2 {
    color: #12233c;
}

.home-service-card p,
.about-page-content p,
.home-about-content p {
    color: #68788d;
    line-height: 1.8;
}

.home-about-section {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 65px;
    margin: 50px 0;
    padding: 65px;
    border-radius: 32px;
    background: #f3f8fb;
}

.home-about-visual {
    min-height: 320px;
    display: grid;
    place-items: center;
    border-radius: 25px;
    background: linear-gradient(135deg, #173a56, #1fa6e1);
}

.about-visual-icon {
    font-size: 100px;
}

.home-cta-section {
    margin: 80px 0;
    padding: 50px;
    border-radius: 27px;
    color: white;
    background: linear-gradient(135deg, #173a56, #1fa6e1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.home-cta-section h2 {
    margin: 0 0 8px;
    font-size: 34px;
}

.home-cta-section p {
    margin: 0;
}

.home-cta-button {
    color: #173a56;
    background: white;
}

.about-page-hero {
    max-width: 850px;
    margin: auto;
    padding: 110px 0 80px;
    text-align: center;
}

.about-page-hero p {
    color: #68788d;
    font-size: 19px;
    line-height: 1.9;
}

.about-page-content {
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 100px;
}

.website-footer {
    padding: 35px 20px 100px;
    border-top: 1px solid #e5eaf0;
    text-align: center;
    color: #69778a;
}

.website-footer strong {
    color: #12233c;
    font-size: 21px;
}

@media (max-width: 900px) {
    .website-header-container {
        flex-wrap: wrap;
        padding: 13px 0;
    }

    .mobile-menu-button {
        display: block;
        margin-inline-start: auto;
    }

    .website-navigation {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 12px 0;
    }

    .website-navigation.open {
        display: flex;
    }

    .website-navigation a {
        padding: 11px;
        border-radius: 9px;
        background: #f5f8fb;
    }

    .website-header-actions {
        width: 100%;
        order: 5;
        flex-wrap: wrap;
    }

    .home-hero-section,
    .home-about-section {
        grid-template-columns: 1fr;
    }

    .home-services-grid,
    .about-page-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-cta-section {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .website-header-actions a {
        flex: 1;
        text-align: center;
    }

    .home-hero-section {
        min-height: auto;
        padding: 55px 0;
    }

    .home-hero-content h1 {
        font-size: 39px;
    }

    .home-hero-visual,
    .home-services-grid,
    .about-page-content {
        grid-template-columns: 1fr;
    }

    .home-about-section {
        padding: 28px;
    }

    .home-cta-section {
        padding: 32px 25px;
    }
}
.main-header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.main-header-container {
    width: min(1220px, calc(100% - 40px));
    min-height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-logo {
    color: #24364b;
    text-decoration: none;
    font-size: 23px;
    font-weight: 800;
    white-space: nowrap;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.main-navigation a,
.main-header-actions a {
    color: #34455a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    transition: 0.2s ease;
}

.main-navigation a:hover,
.main-header-actions a:hover {
    color: #159ed8;
}

.main-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-language-link {
    padding-inline: 12px;
    border-inline: 1px solid #dddddd;
}

.header-cart-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-cart-link span {
    color: #e53935;
    font-size: 13px;
}

.header-menu-toggle {
    display: none;
    margin-inline-start: auto;
    border: 0;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

@media (max-width: 980px) {
    .main-header-container {
        flex-wrap: wrap;
        min-height: auto;
        padding: 16px 0;
    }

    .header-menu-toggle {
        display: block;
    }

    .main-navigation {
        display: none;
        order: 3;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .main-navigation.open {
        display: flex;
    }

    .main-navigation a {
        padding: 13px 10px;
        border-bottom: 1px solid #eeeeee;
    }

    .main-header-actions {
        order: 4;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }
}
/* =========================================================
   PROFESSIONAL WEBSITE HOME
========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: #17263c;
}

.website-home {
    overflow: hidden;
}

.website-hero,
.website-about,
.website-services,
.website-products,
.website-partners,
.website-cta {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

/* HERO */

.website-hero {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 70px;
    padding: 70px 0;
}

.website-hero-label,
.section-small-title {
    display: inline-flex;
    align-items: center;
    padding: 7px 14px;
    margin-bottom: 15px;
    border-radius: 100px;
    color: #138ec6;
    background: #eaf7fc;
    font-size: 14px;
    font-weight: 800;
}

.website-hero-content h1 {
    max-width: 700px;
    margin: 0 0 22px;
    color: #17263c;
    font-size: clamp(42px, 5vw, 67px);
    line-height: 1.12;
}

.website-hero-content > p {
    max-width: 650px;
    margin: 0;
    color: #69788c;
    font-size: 19px;
    line-height: 1.9;
}

.website-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 32px;
}

.website-primary-button,
.website-outline-button {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 800;
}

.website-primary-button {
    color: #ffffff;
    background: linear-gradient(135deg, #153b59, #18a4df);
    box-shadow: 0 15px 30px rgba(21, 135, 188, 0.22);
}

.website-outline-button {
    color: #188fc5;
    border: 1px solid #188fc5;
    background: #ffffff;
}

.website-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 27px;
    color: #647389;
    font-size: 14px;
    font-weight: 700;
}

.website-hero-features span::first-letter {
    color: #20a16d;
}

.website-hero-visual {
    position: relative;
    padding: 35px;
    border-radius: 38px;
    background:
        radial-gradient(
            circle at top right,
            rgba(32, 169, 224, 0.24),
            transparent 40%
        ),
        linear-gradient(145deg, #eef8fc, #f8fafc);
}

.hero-dashboard-card {
    overflow: hidden;
    border-radius: 25px;
    background: #ffffff;
    box-shadow: 0 30px 70px rgba(22, 55, 82, 0.15);
}

.hero-dashboard-header {
    height: 47px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 19px;
    background: #f2f5f8;
}

.dashboard-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #bdc7d1;
}

.hero-dashboard-body {
    padding: 28px;
}

.hero-main-service {
    min-height: 145px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 25px;
    border-radius: 20px;
    color: #ffffff;
    background: linear-gradient(135deg, #163a57, #159fd9);
}

.hero-main-service > span {
    font-size: 55px;
}

.hero-main-service div {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.hero-main-service strong {
    font-size: 23px;
}

.hero-main-service small {
    opacity: 0.85;
}

.hero-small-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
    margin-top: 15px;
}

.hero-small-services div {
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border: 1px solid #e8edf2;
    border-radius: 17px;
}

.hero-small-services span {
    font-size: 30px;
}

/* COMMON SECTION HEADING */

.website-section-heading {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.website-section-heading h2,
.website-about-content h2 {
    margin: 0 0 16px;
    color: #17263c;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.25;
}

.website-section-heading p,
.website-about-content p {
    margin: 0;
    color: #6b7b8f;
    font-size: 17px;
    line-height: 1.85;
}

/* ABOUT */

.website-about {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
    padding: 100px 0;
}

.website-about-visual {
    position: relative;
    min-height: 410px;
    display: grid;
    place-items: center;
    border-radius: 35px;
    background: linear-gradient(135deg, #153a58, #1aa5df);
}

.about-large-icon {
    font-size: 120px;
}

.about-floating-card {
    position: absolute;
    min-width: 130px;
    padding: 18px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(19, 50, 76, 0.2);
}

.about-floating-card strong,
.about-floating-card span {
    display: block;
}

.about-floating-card strong {
    color: #168fc7;
    font-size: 24px;
}

.about-floating-card span {
    margin-top: 4px;
    color: #6c798a;
    font-size: 13px;
}

.about-floating-one {
    top: 25px;
    right: -25px;
}

.about-floating-two {
    left: -25px;
    bottom: 30px;
}

.website-about-content p + p {
    margin-top: 15px;
}

.website-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 25px;
    color: #168fc7;
    text-decoration: none;
    font-weight: 800;
}

/* SERVICES */

.website-services {
    padding: 100px 0;
}

.website-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.website-service-card {
    padding: 29px;
    border: 1px solid #e7edf3;
    border-radius: 21px;
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.website-service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 50px rgba(27, 59, 85, 0.1);
}

.service-card-icon {
    width: 63px;
    height: 63px;
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    border-radius: 17px;
    background: #edf8fc;
    font-size: 31px;
}

.website-service-card h3 {
    margin: 0 0 12px;
    color: #17263c;
    font-size: 20px;
}

.website-service-card p {
    min-height: 105px;
    margin: 0 0 18px;
    color: #6c7b8f;
    line-height: 1.75;
}

.website-service-card a {
    color: #168fc7;
    text-decoration: none;
    font-weight: 800;
}

/* PRODUCTS */

.website-products {
    padding: 100px 0;
}

.website-products-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 35px;
}

.website-search-box {
    width: min(450px, 100%);
    min-height: 53px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 17px;
    border: 1px solid #dfe7ee;
    border-radius: 13px;
    background: #ffffff;
}

.website-search-box input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 15px;
}

.website-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.website-categories .category {
    min-height: 43px;
    padding: 0 18px;
    border: 1px solid #dde6ed;
    border-radius: 11px;
    color: #536478;
    background: #ffffff;
    cursor: pointer;
    font-weight: 700;
}

.website-categories .category.active,
.website-categories .category:hover {
    color: #ffffff;
    border-color: #168fc7;
    background: #168fc7;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    overflow: hidden;
    border: 1px solid #e4ebf1;
    border-radius: 22px;
    background: #ffffff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(24, 55, 80, 0.1);
}

.product-card-top {
    position: relative;
    min-height: 180px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #edf8fc, #f7fafc);
}

.product-type {
    position: absolute;
    top: 17px;
    inset-inline-start: 17px;
    padding: 6px 11px;
    border-radius: 100px;
    color: #168fc7;
    background: #ffffff;
    font-size: 12px;
    font-weight: 800;
}

.product-image {
    font-size: 68px;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    margin: 0 0 12px;
    color: #17263c;
    font-size: 21px;
}

.product-content > p {
    min-height: 72px;
    margin: 0 0 20px;
    color: #6b7a8e;
    line-height: 1.7;
}

.product-price-area {
    padding: 16px 0;
    border-top: 1px solid #edf1f4;
    border-bottom: 1px solid #edf1f4;
}

.product-price-area > span {
    display: block;
    margin-bottom: 5px;
    color: #8793a1;
    font-size: 12px;
}

.product-price-area .price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.product-price-area strong {
    color: #168fc7;
    font-size: 26px;
}

.product-price-area small {
    color: #778597;
}

.product-card-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.product-card-actions .details-link,
.product-card-actions .order-button {
    flex: 1;
    min-height: 44px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    font-weight: 800;
}

.product-card-actions .details-link {
    color: #168fc7;
    text-decoration: none;
    border: 1px solid #168fc7;
}

.product-card-actions .order-button {
    border: 0;
    color: #ffffff;
    background: linear-gradient(135deg, #153a58, #18a2dc);
    cursor: pointer;
}

.empty-products {
    grid-column: 1 / -1;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    background: #f5f8fa;
}

.empty-products span {
    font-size: 50px;
}

/* PARTNERS */

.website-partners {
    padding: 100px 0;
}

.website-partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 17px;
}

.partner-card {
    min-height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 9px;
    padding: 18px;
    border: 1px solid #e6edf2;
    border-radius: 17px;
    color: #637387;
    background: #ffffff;
}

.partner-card span {
    font-size: 31px;
}

.partner-card strong {
    text-align: center;
}

/* CTA */

.website-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 80px;
    margin-bottom: 100px;
    padding: 55px;
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, #153a58, #18a3dd);
}

.website-cta span {
    font-weight: 800;
    opacity: 0.8;
}

.website-cta h2 {
    margin: 8px 0;
    font-size: clamp(29px, 4vw, 43px);
}

.website-cta p {
    margin: 0;
    opacity: 0.87;
}

.website-cta-buttons {
    display: flex;
    gap: 11px;
    flex-shrink: 0;
}

.cta-white-button,
.cta-transparent-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 800;
}

.cta-white-button {
    color: #176f9a;
    background: #ffffff;
}

.cta-transparent-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.65);
}

/* FOOTER */

.website-main-footer {
    color: #c5ced8;
    background: #111e2e;
}

.footer-container {
    width: min(1180px, calc(100% - 40px));
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 50px;
    margin: auto;
    padding: 65px 0;
}

.footer-logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 27px;
    font-weight: 900;
}

.footer-company p {
    max-width: 340px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.footer-links h3 {
    margin: 0 0 7px;
    color: #ffffff;
}

.footer-links a {
    color: #c5ced8;
    text-decoration: none;
}

.footer-links a:hover {
    color: #29afe7;
}

.footer-bottom {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
    .website-hero,
    .website-about {
        grid-template-columns: 1fr;
    }

    .website-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .website-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 720px) {
    .website-hero,
    .website-about,
    .website-services,
    .website-products,
    .website-partners,
    .website-cta {
        width: min(100% - 28px, 1180px);
    }

    .website-hero {
        min-height: auto;
        padding: 55px 0;
    }

    .website-hero-content h1 {
        font-size: 40px;
    }

    .website-about {
        gap: 45px;
        padding: 70px 0;
    }

    .about-floating-one {
        right: 10px;
    }

    .about-floating-two {
        left: 10px;
    }

    .website-services-grid,
    .products-grid,
    .website-partners-grid {
        grid-template-columns: 1fr;
    }

    .website-products-tools {
        flex-direction: column;
        align-items: stretch;
    }

    .website-search-box {
        width: auto;
    }

    .website-categories {
        justify-content: center;
    }

    .website-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
    }

    .website-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

