@font-face {
    font-family: 'JF-Flat';
    src: url('../fonts/JF-Flat-regular.eot');
    src: url('../fonts/JF-Flat-regular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/JF-Flat-regular.woff') format('woff'),
         url('../fonts/JF-Flat-regular.ttf') format('truetype'),
         url('../fonts/JF-Flat-regular.svg#JF-Flat') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'JF-Flat', 'Segoe UI', Tahoma, sans-serif;
    color: var(--ink);
    background: var(--white);
    direction: rtl;
    text-align: right;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

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

button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

button:focus,
input:focus,
textarea:focus {
    outline: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 auto;
}

/* Buttons */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 999px;
    color: var(--white) !important;
    background: var(--main2);
    font-weight: 700;
    border: 0;
    box-shadow: 0 12px 28px rgba(16, 43, 77, 0.22);
}

.btn-main:hover {
    background: var(--hover);
    transform: translateY(-2px);
    color: var(--white) !important;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    border: 1px solid rgba(16, 43, 77, 0.18);
    color: var(--main);
    background: rgba(255, 255, 255, 0.65);
    font-weight: 700;
}

.btn-ghost:hover {
    border-color: var(--main);
    background: var(--white);
}

.btn-block-cta {
    width: 100%;
}

.btn-header-cta {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 14px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 8px 30px rgba(11, 26, 46, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 76px;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.the-logo {
    height: 42px;
    width: auto;
}

.brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--main);
    letter-spacing: -0.02em;
}

.nav_bar {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.nav_bar a {
    display: block;
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav_bar a:hover,
.nav_bar a.active {
    color: var(--main);
    background: rgba(16, 43, 77, 0.06);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.lang-toggle {
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--main);
    font-weight: 700;
    background: var(--white);
}

.lang-toggle::after {
    margin-right: 6px;
    margin-left: 0;
}

.dropdown-menu {
    right: 0;
    left: auto;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 8px;
    min-width: 140px;
}

.dropdown-item {
    border-radius: 8px;
    padding: 8px 12px;
    color: var(--ink);
}

.dropdown-item:hover {
    background: var(--surface);
    color: var(--main);
}

.close-open-nav {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: var(--white);
}

.close-open-nav span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--main);
    border-radius: 2px;
    transition: .25s ease;
}

.close-open-nav.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.close-open-nav.active span:nth-child(2) {
    opacity: 0;
}

.close-open-nav.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Body offset for fixed header */
.body-content {
    padding-top: 76px;
}

/* Shared section styles */
.sec-block {
    padding: 88px 0;
}

.surface {
    background: var(--surface);
}

.section-head {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-head-sm {
    margin-bottom: 28px;
}

.section-head h2,
.section-head h3 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.35;
}

.section-head p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(16, 43, 77, 0.08);
    color: var(--main);
    font-size: 0.85rem;
    font-weight: 700;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
    transition-delay: var(--delay, 0s);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* Hero */
.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 50% at 8% 18%, rgba(46, 160, 120, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 45% at 92% 12%, rgba(16, 43, 77, 0.22), transparent 50%),
        radial-gradient(ellipse 40% 35% at 70% 88%, rgba(46, 160, 120, 0.1), transparent 60%),
        linear-gradient(165deg, #f7fafc 0%, #eef3f8 42%, #e6edf5 100%);
    padding: 28px 0 72px;
}

.hero-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.hero-grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16, 43, 77, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 43, 77, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
    opacity: 0.9;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    animation: heroFloat 10s ease-in-out infinite;
}

.hero-blob-a {
    width: 280px;
    height: 280px;
    top: -60px;
    inset-inline-end: -40px;
    background: radial-gradient(circle, rgba(46, 160, 120, 0.35), transparent 70%);
}

.hero-blob-b {
    width: 360px;
    height: 360px;
    bottom: -120px;
    inset-inline-start: -100px;
    background: radial-gradient(circle, rgba(16, 43, 77, 0.28), transparent 70%);
    animation-delay: -3s;
}

.hero-blob-c {
    width: 180px;
    height: 180px;
    top: 42%;
    inset-inline-start: 38%;
    background: radial-gradient(circle, rgba(46, 160, 120, 0.18), transparent 70%);
    animation-delay: -6s;
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(16, 43, 77, 0.14);
    animation: heroSpin 28s linear infinite;
}

.hero-ring-a {
    width: 420px;
    height: 420px;
    top: 8%;
    inset-inline-end: 4%;
}

.hero-ring-b {
    width: 260px;
    height: 260px;
    top: 18%;
    inset-inline-end: 12%;
    border-style: solid;
    border-color: rgba(46, 160, 120, 0.18);
    animation-direction: reverse;
    animation-duration: 18s;
}

.hero-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--main);
    opacity: 0.35;
    animation: heroPulse 3.5s ease-in-out infinite;
}

.hero-dot-1 { top: 22%; inset-inline-start: 12%; }
.hero-dot-2 { top: 68%; inset-inline-start: 28%; background: #2ea078; animation-delay: 1s; }
.hero-dot-3 { top: 30%; inset-inline-end: 42%; width: 7px; height: 7px; animation-delay: 1.8s; }

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.04); }
}

@keyframes heroSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes heroPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.35); opacity: 0.7; }
}

@keyframes heroBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-section .owl-index {
    position: relative;
    z-index: 1;
}

.hero-carousel-wrap {
    position: relative;
    z-index: 1;
}

/* Owl must not collapse hero content; LTR stage fixes RTL off-canvas bug */
.owl-index.owl-carousel {
    direction: ltr;
}

.owl-index .owl-stage-outer {
    overflow: hidden;
    direction: ltr;
}

.owl-index.owl-carousel,
.owl-index .owl-stage-outer,
.owl-index .owl-stage,
.owl-index .owl-item,
.owl-index .hero-slide {
    min-height: 560px;
}

.owl-index .owl-item {
    float: left;
    display: flex;
}

.owl-index .hero-slide {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px 0 8px;
    direction: rtl;
    text-align: right;
}

.owl-index .owl-item img.hero-slide-img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    display: block;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    width: 100%;
    min-height: 520px;
    padding: 24px 0 8px;
}

.hero-grid-solo {
    grid-template-columns: 1fr;
    max-width: 720px;
}

.hero-copy {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(16, 43, 77, 0.1);
    box-shadow: 0 8px 24px rgba(11, 26, 46, 0.06);
    color: var(--main);
    font-size: 0.88rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ea078;
    box-shadow: 0 0 0 4px rgba(46, 160, 120, 0.18);
    animation: heroPulse 2.4s ease-in-out infinite;
}

.hero-brand {
    margin: 0 0 10px;
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--main);
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-shadow: 0 10px 40px rgba(16, 43, 77, 0.08);
}

.hero-title {
    margin: 0 0 16px;
    font-size: clamp(1.35rem, 2.4vw, 1.95rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.4;
    max-width: 18ch;
}

.hero-desc {
    margin: 0 0 28px;
    max-width: 34rem;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.btn-hero {
    min-height: 52px;
    padding: 14px 30px;
    font-size: 1rem;
}

.btn-hero i {
    font-size: 0.85rem;
    transition: transform .25s ease;
}

.btn-hero:hover i {
    transform: translateX(-4px);
}

.btn-hero-ghost {
    min-height: 52px;
    backdrop-filter: blur(6px);
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(16, 43, 77, 0.08);
    box-shadow: 0 12px 30px rgba(11, 26, 46, 0.06);
    backdrop-filter: blur(10px);
}

.hero-stat {
    display: grid;
    gap: 2px;
}

.hero-stat strong {
    color: var(--ink);
    font-size: 0.98rem;
    font-weight: 800;
}

.hero-stat span {
    color: var(--muted);
    font-size: 0.8rem;
}

.hero-stat-divider {
    width: 1px;
    height: 34px;
    background: rgba(16, 43, 77, 0.12);
}

.hero-media {
    position: relative;
}

.hero-media-stage {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 520px;
    margin-inline-start: auto;
}

.hero-glow {
    position: absolute;
    inset: 12% 8%;
    border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
    background: radial-gradient(circle at 40% 40%, rgba(46, 160, 120, 0.35), rgba(16, 43, 77, 0.2) 55%, transparent 70%);
    filter: blur(18px);
    z-index: 0;
    animation: heroFloat 8s ease-in-out infinite;
}

.hero-orbit {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    border: 1px solid rgba(16, 43, 77, 0.12);
    z-index: 0;
}

.hero-orbit-1 {
    animation: heroSpin 22s linear infinite;
}

.hero-orbit-2 {
    inset: -4%;
    border-style: dashed;
    border-color: rgba(46, 160, 120, 0.22);
    animation: heroSpin 32s linear infinite reverse;
}

.hero-media-frame {
    position: absolute;
    inset: 10%;
    z-index: 2;
    border-radius: 32px;
    overflow: hidden;
    background: var(--white);
    box-shadow:
        0 30px 60px rgba(11, 26, 46, 0.16),
        0 0 0 8px rgba(255, 255, 255, 0.65),
        0 0 0 1px rgba(16, 43, 77, 0.06);
    transform: rotate(-2.5deg);
    transition: transform .4s ease;
}

.hero-media-stage:hover .hero-media-frame {
    transform: rotate(0deg) scale(1.02);
}

.hero-media-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.28), transparent 40%);
    z-index: 2;
    pointer-events: none;
}

.hero-media-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(16, 43, 77, 0.28));
    z-index: 1;
    pointer-events: none;
}

.hero-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(16, 43, 77, 0.08);
    box-shadow: 0 16px 40px rgba(11, 26, 46, 0.14);
    backdrop-filter: blur(12px);
    animation: heroBob 4.5s ease-in-out infinite;
    max-width: 200px;
}

.hero-float i {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(16, 43, 77, 0.08);
    color: var(--main);
}

.hero-float-bottom i {
    background: rgba(46, 160, 120, 0.14);
    color: #1f8a5f;
}

.hero-float strong {
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.3;
}

.hero-float span {
    display: block;
    font-size: 0.72rem;
    color: var(--muted);
}

.hero-float-top {
    top: 8%;
    inset-inline-start: -8%;
}

.hero-float-bottom {
    bottom: 10%;
    inset-inline-end: -6%;
    animation-delay: -1.5s;
}

.hero-shape {
    position: absolute;
    z-index: 1;
}

.hero-shape-square {
    width: 54px;
    height: 54px;
    bottom: 18%;
    inset-inline-start: 2%;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(46, 160, 120, 0.9), rgba(16, 43, 77, 0.85));
    transform: rotate(18deg);
    box-shadow: 0 12px 28px rgba(16, 43, 77, 0.22);
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-shape-circle {
    width: 22px;
    height: 22px;
    top: 16%;
    inset-inline-end: 8%;
    border-radius: 50%;
    background: #2ea078;
    box-shadow: 0 0 0 8px rgba(46, 160, 120, 0.15);
    animation: heroPulse 3s ease-in-out infinite;
}

.owl-index .owl-nav,
.owl-index .owl-dots {
    text-align: center;
    margin-top: 28px;
}

.owl-index .owl-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(16, 43, 77, 0.08);
    box-shadow: 0 8px 24px rgba(11, 26, 46, 0.06);
}

.owl-index .owl-dot span {
    width: 10px;
    height: 10px;
    background: rgba(16, 43, 77, 0.18);
    border-radius: 999px;
    display: block;
    margin: 4px;
    transition: .3s ease;
}

.owl-index .owl-dot.active span {
    width: 28px;
    background: var(--main);
}

.owl-index .owl-nav {
    display: inline-flex;
    gap: 8px;
    margin-inline-start: 12px;
    vertical-align: middle;
}

.owl-index .owl-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92) !important;
    color: var(--main) !important;
    border: 1px solid rgba(16, 43, 77, 0.08) !important;
    box-shadow: 0 10px 24px rgba(11, 26, 46, 0.1);
    margin: 0;
    transition: .25s ease;
}

.owl-index .owl-nav button:hover {
    background: var(--main) !important;
    color: #fff !important;
}

/* Partners */
.partners-section {
    padding: 40px 0 28px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.partner-logo {
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--surface);
    margin: 0 6px;
}

.partner-logo img {
    max-height: 48px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.75;
    transition: .3s ease;
}

.partner-logo:hover img {
    filter: none;
    opacity: 1;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-copy h2 {
    margin: 0 0 16px;
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.35;
}

.about-copy > p {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 1.05rem;
}

.about-bullets {
    display: grid;
    gap: 12px;
}

.about-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--ink);
}

.about-bullets i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(46, 160, 120, 0.12);
    color: #1f8a5f;
    font-size: 12px;
}

.about-media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.about-devices {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: 460px;
    margin: 0 auto;
}

.about-devices-glow {
    position: absolute;
    inset: 8% 6%;
    border-radius: 46% 54% 48% 52% / 42% 48% 52% 58%;
    background: radial-gradient(
        circle at 45% 40%,
        rgba(46, 160, 120, 0.28),
        rgba(16, 43, 77, 0.16) 52%,
        transparent 72%
    );
    filter: blur(16px);
    z-index: 0;
    animation: heroFloat 9s ease-in-out infinite;
}

.about-devices-ring {
    position: absolute;
    inset: 6%;
    border-radius: 50%;
    border: 1px dashed rgba(16, 43, 77, 0.12);
    z-index: 0;
}

.about-devices-floor {
    position: absolute;
    left: 18%;
    right: 18%;
    bottom: 6%;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(11, 26, 46, 0.18), transparent 70%);
    filter: blur(6px);
    z-index: 1;
}

.about-device {
    position: absolute;
    margin: 0;
    z-index: 2;
    filter: drop-shadow(0 28px 40px rgba(11, 26, 46, 0.22));
    transition: transform .45s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
}

.about-device img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.about-device-primary {
    --about-rot: -7deg;
    width: 56%;
    top: 4%;
    inset-inline-end: 4%;
    z-index: 2;
    animation: aboutDeviceBob 5.5s ease-in-out infinite;
}

.about-device-secondary {
    --about-rot: 8deg;
    width: 44%;
    bottom: 8%;
    inset-inline-start: 2%;
    z-index: 3;
    animation: aboutDeviceBob 5.5s ease-in-out infinite 0.9s;
}

.about-devices:hover .about-device {
    animation-play-state: paused;
    filter: drop-shadow(0 34px 48px rgba(11, 26, 46, 0.28));
}

.about-devices:hover .about-device-primary {
    transform: rotate(-3deg) translateY(-6px) scale(1.02);
}

.about-devices:hover .about-device-secondary {
    transform: rotate(4deg) translateY(-10px) scale(1.03);
}

@keyframes aboutDeviceBob {
    0%, 100% { transform: rotate(var(--about-rot)) translateY(0); }
    50% { transform: rotate(var(--about-rot)) translateY(-10px); }
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(16, 43, 77, 0.18);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 43, 77, 0.08);
    color: var(--main);
    font-weight: 800;
    margin-bottom: 18px;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.4;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.98rem;
}

/* How work */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.how-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px 18px 24px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease;
}

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

.how-step {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--main);
    opacity: 0.7;
}

.how-thumb {
    width: 88px;
    height: 88px;
    margin: 12px auto 16px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--surface);
}

.how-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.45;
}

/* FAQ */
.faq-tabs {
    gap: 8px;
    margin-bottom: 28px !important;
    flex-wrap: wrap;
}

.faq-tabs .nav-link {
    border-radius: 999px !important;
    padding: 10px 18px;
    color: var(--muted);
    background: var(--white);
    border: 1px solid var(--line);
    font-weight: 700;
}

.faq-tabs .nav-link.active {
    background: var(--main) !important;
    border-color: var(--main);
    color: var(--white) !important;
}

.faq-accordion {
    max-width: 860px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    text-align: inherit;
    font-weight: 800;
    color: var(--ink);
    font-size: 1.02rem;
}

.faq-q i {
    color: var(--main);
    transition: transform .25s ease;
}

.faq-q:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-a {
    padding: 0 20px 18px;
    color: var(--muted);
}

/* Contact */
.contact-shell {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 28px;
    background:
        radial-gradient(circle at top right, rgba(46, 160, 120, 0.12), transparent 40%),
        linear-gradient(145deg, #102B4D 0%, #0C2240 100%);
    border-radius: 28px;
    padding: 36px;
    color: var(--white);
    box-shadow: var(--shadow);
}

.contact-intro .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: #d7efe4;
}

.contact-intro h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 2.2vw, 2rem);
    font-weight: 800;
}

.contact-intro > p {
    margin: 0 0 24px;
    color: rgba(255, 255, 255, 0.78);
}

.contact-meta {
    display: grid;
    gap: 12px;
}

.contact-meta li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-meta a:hover {
    color: #fff;
}

.form-content {
    background: var(--white);
    border-radius: 22px;
    padding: 28px 24px;
}

.form-content .form-control {
    min-height: 50px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: none;
    padding: 12px 16px;
    color: var(--ink);
}

.form-content textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.form-content .form-control:focus {
    border-color: rgba(16, 43, 77, 0.35);
    background: var(--white);
}

.form-group {
    margin-bottom: 14px;
}

.error_meassages {
    margin-top: 6px;
}

/* Footer */
.site-footer {
    background: #0a1728;
    color: rgba(255, 255, 255, 0.78);
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
}

.logo_footer {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-about {
    margin: 0 0 18px;
    max-width: 28rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}

.Tfooter {
    margin: 0 0 16px;
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
}

.link-footer {
    display: grid;
    gap: 10px;
}

.link-footer a:hover {
    color: #fff;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact i {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.55);
}

.social-m {
    display: flex;
    gap: 10px;
}

.social-m a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.social-m a:hover {
    background: var(--main);
}

.under_footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    font-size: 0.92rem;
}

.under-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.under_footer a {
    color: #fff;
    font-weight: 700;
}

/* Loader */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}

.loader img {
    width: 88px;
    height: auto;
}

/* Responsive */
@media (max-width: 991.98px) {
    .btn-header-cta {
        display: none;
    }

    .close-open-nav {
        display: inline-flex;
    }

    .nav_bar {
        position: fixed;
        top: 76px;
        right: 0;
        width: min(300px, 86vw);
        height: calc(100vh - 76px);
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 20px 16px;
        gap: 4px;
        box-shadow: var(--shadow);
        transform: translateX(110%);
        transition: transform .3s ease;
        z-index: 999;
    }

    .nav_bar.active {
        transform: translateX(0);
    }

    .nav_bar a {
        padding: 12px 14px;
    }

    .hero-grid,
    .about-grid,
    .contact-shell,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .owl-index.owl-carousel,
    .owl-index .owl-stage-outer,
    .owl-index .owl-stage,
    .owl-index .owl-item,
    .owl-index .hero-slide {
        min-height: 0;
    }

    .hero-grid {
        min-height: auto;
        gap: 36px;
        padding: 16px 0 10px;
    }

    .hero-media-stage {
        margin: 0 auto;
        width: 100%;
        max-width: 420px;
        height: 420px;
    }

    .hero-float-top {
        inset-inline-start: -2%;
    }

    .hero-float-bottom {
        inset-inline-end: -2%;
    }

    .hero-ring-a,
    .hero-ring-b {
        opacity: 0.45;
    }

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

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

    .about-media {
        min-height: 380px;
        order: -1;
    }

    .about-devices {
        max-width: 380px;
        height: 380px;
    }

    .contact-shell {
        padding: 24px;
    }
}

@media (max-width: 575.98px) {
    .sec-block {
        padding: 64px 0;
    }

    .brand-name {
        display: none;
    }

    .services-grid,
    .how-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-between;
    }

    .hero-float {
        max-width: 150px;
        padding: 10px 12px;
    }

    .hero-float strong {
        font-size: 0.76rem;
    }

    .hero-float span {
        display: none;
    }

    .hero-title {
        max-width: none;
    }

    .hero-media-frame {
        transform: rotate(-1deg);
    }

    .about-devices {
        max-width: 300px;
        height: 320px;
    }

    .about-device-primary {
        width: 58%;
    }

    .about-device-secondary {
        width: 46%;
        bottom: 4%;
    }
}
