:root {
    --blue: #1B4FD8;
    --orange: #F05A28;
    --dark: #111827;
    --text: #374151;
    --light-bg: #F9FAFB;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Cairo', sans-serif;
    color: var(--dark);
    background: #fff;
    overflow-x: hidden;
}
[dir="rtl"] body { direction: rtl; }
[dir="ltr"] body { direction: ltr; }

.navbar {
    padding: 10px 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo-img {
    height: 38px;
    width: auto;
    display: block;
}

.ab-badge-logo-img {
    height: 32px;
    width: auto;
    display: block;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.brand-icon {
    width: 38px;
    height: 38px;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -1px;
    line-height: 1;
}

.brand-sub {
    font-size: .55rem;
    color: #888;
    display: block;
    letter-spacing: .5px;
    line-height: 1.2;
}

.nav-link {
    font-size: .92rem;
    font-weight: 600;
    color: #2d2d2d !important;
    padding: 6px 14px !important;
    transition: color .2s;
}

.nav-link:hover {
    color: var(--blue) !important;
}

.btn-cta-nav {
    background: var(--orange);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: .88rem;
    padding: 9px 22px;
    border: none;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.btn-cta-nav:hover {
    background: #d94e1f;
    transform: translateX(-2px);
}

.btn-cta-nav .arrow {
    font-size: 1rem;
}

.hero {
    padding: 80px 0 50px;
    background: #fff;
}

.hero-eyebrow {
    font-size: .82rem;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-heading {
    font-size: 2.6rem;
    font-weight: 600;
    line-height: 1.4;
    color: #000;
    margin-bottom: 22px;
}

.hero-sub {
    font-size: 1rem;
    font-weight: 500;
    color: #2F2F2F;
    line-height: 1.9;
    margin-bottom: 38px;
    max-width: 600px;
}

.btn-primary-hero {
    background: #FF705C;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 36px;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-hero:hover {
    background: #e5634f;
    color: #fff;
    transform: translateY(-1px);
}

.btn-secondary-hero {
    background: var(--blue);
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 36px;
    border: none;
    /* border-radius: 5px; */
    cursor: pointer;
    transition: background .2s, transform .15s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-hero:hover {
    background: #1540b8;
    color: #fff;
    transform: translateY(-1px);
}

.hero-row {
    justify-content: flex-end;
}

.hero-text-col {
    text-align: right;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-image-wrap {
    margin-top: 60px;
    overflow: hidden;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, .08);
    position: relative;
}

.hero-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .18) 0%, transparent 30%);
    z-index: 1;
    pointer-events: none;
}

.hero-image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.img-placeholder {
    width: 100%;
    height: 480px;
    background: linear-gradient(135deg, #e8eef8 0%, #dde5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.img-placeholder svg {
    opacity: .18;
}

.dots {
    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, #1B4FD8 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    opacity: .12;
}

.dots-tl {
    top: -20px;
    right: -20px;
}

.dots-br {
    bottom: 60px;
    left: 30px;
}

.stats-strip {
    background: var(--dark);
    padding: 36px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-number span {
    color: var(--orange);
}

.stat-label {
    font-size: .82rem;
    color: #9CA3AF;
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, .12);
    height: 50px;
    margin: auto;
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 16px;
    }

    .hero {
        padding: 50px 0 30px;
    }

    .hero-heading {
        font-size: 1.7rem;
    }

    .hero-image-wrap img,
    .img-placeholder {
        height: 280px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

.fade-up {
    animation: fadeUp .65s ease both;
}

.delay-1 {
    animation-delay: .1s;
}

.delay-2 {
    animation-delay: .22s;
}

.delay-3 {
    animation-delay: .36s;
}

.delay-4 {
    animation-delay: .5s;
}

.delay-5 {
    animation-delay: .65s;
}

@media (max-width: 991px) {
    .navbar {
        padding: 10px 16px;
    }

    .navbar-nav.d-md-flex {
        display: none !important;
    }

    .btn-cta-nav {
        font-size: .8rem;
        padding: 8px 14px;
    }

    .brand-text {
        font-size: 1.2rem;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .hero-heading {
        font-size: 1.6rem;
    }

    .hero-sub {
        font-size: .92rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .hero-image-wrap {
        margin: 30px 10px 0;
    }

    .hero-image-wrap .img-placeholder,
    .hero-image-wrap img {
        height: 220px;
    }

    .prob-section-title {
        font-size: 1.3rem;
        margin-bottom: 28px;
    }

    .prob-cards-row {
        flex-direction: column;
        gap: 16px;
    }

    .prob-photo-ph {
        height: 180px;
    }

    .ab-banner {
        padding: 28px 20px;
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .ab-banner-logo-text {
        font-size: 4rem;
    }

    .ab-banner-divider {
        height: 50px;
    }

    .ab-banner-tagline .ab-ar {
        font-size: .9rem;
    }

    .ab-body {
        flex-direction: column;
    }

    .ab-photo-col {
        flex: none;
        min-height: 260px;
        height: 260px;
    }

    .ab-text-col {
        padding: 30px 20px;
        gap: 14px;
    }

    .ab-text-col p {
        font-size: .92rem;
    }

    .srv-section-title {
        font-size: 1.25rem;
    }

    .srv-section-sub {
        font-size: .8rem;
    }

    .srv-card {
        flex-direction: column-reverse;
    }

    .srv-photo-col {
        width: 100%;
        height: 160px;
    }

    .srv-ph {
        min-height: 160px;
        height: 160px;
    }

    .srv-photo-title {
        font-size: .9rem;
    }

    .srv-items li {
        font-size: .83rem;
        padding: 9px 12px;
    }

    .srv-cta h3 {
        font-size: 1.1rem;
    }

    .srv-cta p {
        font-size: .82rem;
    }

    .strat-title {
        font-size: 1.4rem;
    }

    .strat-row-bottom {
        flex-direction: column;
    }

    .why-title {
        font-size: 1.3rem;
    }

    .why-grid {
        flex-direction: column;
    }

    .why-grid-2 {
        max-width: 100%;
    }

    .why-card-text {
        font-size: .83rem;
        padding: 20px 14px;
    }

    .why-ph {
        aspect-ratio: 16/9;
    }

    .why-cta h3 {
        font-size: 1.1rem;
    }

    .why-cta p,
    .why-cta ul li {
        font-size: .82rem;
    }

    .cform-box {
        flex-direction: column-reverse;
    }

    .cform-divider-v {
        display: none;
    }

    .cform-info {
        flex: none;
        width: 100%;
    }

    .cform-form-col {
        flex: none;
        width: 100%;
    }

    .cform-main-title {
        font-size: 1.7rem;
    }

    .cform-illus {
        aspect-ratio: 16/7;
    }
}

@media (max-width: 576px) {
    .navbar {
        padding: 10px 12px;
    }

    .btn-cta-nav span.arrow {
        display: none;
    }

    .btn-cta-nav {
        font-size: .78rem;
        padding: 7px 12px;
    }

    .brand-text {
        font-size: 1.1rem;
    }

    .brand-sub {
        display: none;
    }

    .hero {
        padding: 32px 0 24px;
    }

    .hero-heading {
        font-size: 1.35rem;
        line-height: 1.4;
    }

    .hero-eyebrow {
        font-size: .72rem;
    }

    .hero-sub {
        font-size: .85rem;
        line-height: 1.8;
    }

    .hero-image-wrap {
        margin: 24px 6px 0;
        border-radius: 0;
    }

    .hero-image-wrap .img-placeholder,
    .hero-image-wrap img {
        height: 180px;
    }

    .problem-section {
        padding: 44px 0 36px;
    }

    .prob-section-title {
        font-size: 1.1rem;
        margin-bottom: 22px;
        padding: 0 10px;
    }

    .prob-cards-row {
        flex-direction: column;
        gap: 14px;
    }

    .prob-col-title {
        font-size: .88rem;
    }

    .prob-blue-label {
        font-size: .8rem;
        padding: 8px 12px;
    }

    .prob-item {
        font-size: .82rem;
        padding: 8px 10px;
    }

    .prob-bottom-line {
        font-size: .95rem;
    }

    .ab-banner {
        padding: 22px 16px;
        gap: 10px;
    }

    .ab-banner-logo-text {
        font-size: 3rem;
        letter-spacing: -3px;
    }

    .ab-banner-divider {
        height: 40px;
    }

    .ab-banner-tagline .ab-ar {
        font-size: .82rem;
        line-height: 1.6;
    }

    .ab-banner-tagline .ab-en {
        font-size: .68rem;
    }

    .ab-photo-col {
        min-height: 220px;
        height: 220px;
    }

    .ab-text-col {
        padding: 24px 16px;
        gap: 12px;
    }

    .ab-text-col p {
        font-size: .88rem;
        line-height: 1.85;
    }

    .ab-box {
        padding: 11px 14px;
        font-size: .84rem;
    }

    .ab-photo-badge {
        padding: 5px 10px;
    }

    .ab-photo-badge .badge-name {
        font-size: .95rem;
    }

    .ab-photo-badge .badge-sub {
        font-size: .46rem;
    }

    .srv-section {
        padding: 44px 0 0;
    }

    .srv-section-title {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .srv-section-sub {
        font-size: .78rem;
        padding: 0 10px;
    }

    .srv-card {
        margin-bottom: 14px;
    }

    .srv-photo-col {
        height: 140px;
    }

    .srv-ph {
        min-height: 140px;
        height: 140px;
    }

    .srv-photo-title {
        font-size: .85rem;
        padding: 20px 10px 8px;
    }

    .srv-items li {
        font-size: .8rem;
        gap: 8px;
        padding: 8px 10px;
    }

    .srv-icon {
        width: 26px;
        height: 26px;
    }

    .srv-result-bar {
        font-size: .76rem;
        padding: 7px 12px;
    }

    .srv-cta {
        padding: 28px 16px;
    }

    .srv-cta h3 {
        font-size: 1rem;
    }

    .srv-cta p {
        font-size: .8rem;
    }

    .srv-cta-btn {
        font-size: .85rem;
        padding: 10px 24px;
    }

    .strat-section {
        padding: 44px 0 0;
    }

    .strat-title {
        font-size: 1.2rem;
    }

    .strat-sub {
        font-size: .78rem;
    }

    .strat-block-header {
        font-size: 1rem;
        padding: 18px 10px;
    }

    .strat-cell {
        font-size: .8rem;
        padding: 8px 12px;
    }

    .strat-full-blue {
        font-size: .78rem;
        padding: 8px 12px;
    }

    .why-section {
        padding: 44px 0 0;
    }

    .why-title {
        font-size: 1.2rem;
    }

    .why-sub {
        font-size: .78rem;
    }

    .why-card-text {
        font-size: .8rem;
        padding: 16px 12px;
    }

    .why-cta {
        padding: 28px 16px;
        margin-top: 28px;
    }

    .why-cta h3 {
        font-size: 1rem;
    }

    .why-cta ul li {
        font-size: .8rem;
    }

    .why-cta-btn {
        font-size: .85rem;
        padding: 10px 24px;
    }

    .cform-section {
        padding: 44px 0 56px;
    }

    .cform-main-title {
        font-size: 1.5rem;
    }

    .cform-main-sub {
        font-size: .78rem;
        margin-bottom: 30px;
    }

    .cform-info-heading {
        font-size: .88rem;
    }

    .cform-info-subheading {
        font-size: 1.05rem;
        margin-bottom: 14px;
    }

    .cform-contacts li {
        font-size: .8rem;
    }

    .cform-label {
        font-size: .76rem;
    }

    .cform-input,
    .cform-select,
    .cform-textarea {
        font-size: .84rem;
        padding: 9px 12px;
    }

    .cform-submit {
        font-size: .92rem;
        padding: 12px;
    }

    .cform-illus {
        aspect-ratio: 16/8;
        border-radius: 0;
    }

    .mobile-menu-btn {
        display: flex !important;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        flex-direction: column;
        gap: 5px;
    }

    .mobile-menu-btn span {
        display: block;
        width: 22px;
        height: 2px;
        background: #111827;
        border-radius: 0;
        transition: .3s;
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        gap: 0;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
        z-index: 999;
        padding: 8px 0;
    }

    .mobile-nav.open {
        display: flex !important;
    }

    .mobile-nav .nav-link {
        padding: 12px 20px !important;
        border-bottom: 1px solid #f3f4f6;
        font-size: .9rem !important;
    }
}

.mobile-menu-btn {
    display: none;
}

.mobile-nav {
    display: none;
}

.problem-section {
    background-color: #eef0f5;
    /* background-image: radial-gradient(circle, #bcc8dc 1px, transparent 1px); */
    background-size: 20px 20px;
    padding: 70px 0 60px;
}

.prob-section-title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
}

.prob-cards-row {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.prob-col-card {
    background: #fff;
    outline: 1px solid #E1E1E1;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.prob-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.prob-col-body {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.prob-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    text-align: right;
    margin: 0;
    padding: 4px 0;
}

.prob-items-area {
    background: #E1E1E1;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.prob-blue-label {
    background: #102CF7;
    color: #fff;
    font-size: .88rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 3px;
    text-align: right;
    line-height: 1.5;
}

.prob-item {
    font-size: .88rem;
    font-weight: 500;
    color: #000;
    text-align: right;
    padding: 9px 14px;
    background: #fff;
    border-radius: 3px;
    line-height: 1.5;
}

.prob-bottom-line {
    text-align: center;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    background: #fff;
    outline: 1px solid #E1E1E1;
    padding: 14px 30px;
}

.about-section {
    background-color: #eef0f5;
    /* background-image: radial-gradient(circle, #bcc8dc 1px, transparent 1px); */
    background-size: 20px 20px;
    padding: 60px 0;
}

.ab-banner {
    background: radial-gradient(circle at center, #000000 0%, #102CF7 100%);
    padding: 38px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 26px;

}

.ab-banner-logo-text {
    font-family: 'Cairo', sans-serif;
    font-size: 7rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -5px;
    line-height: 1;
    direction: ltr;
}

.ab-banner-divider {
    width: 2px;
    height: 90px;
    background: rgba(255, 255, 255, .35);
    flex-shrink: 0;
}

.ab-banner-tagline {
    text-align: right;
}

.ab-banner-tagline .ab-ar {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.8;
    display: block;
    letter-spacing: .5px;
}

.ab-banner-tagline .ab-en {
    font-size: .78rem;
    font-weight: 400;
    color: rgba(255, 255, 255, .7);
    display: block;
    margin-top: 4px;
    letter-spacing: .3px;
}

.ab-body {
    background: #fff;
    display: flex;
    min-height: 440px;
}

.ab-photo-col {
    flex: 0 0 46%;
    position: relative;
    overflow: hidden;
}

.ab-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ab-photo-badge {
    position: absolute;
    bottom: 22px;
    left: 22px;
    background: rgba(255, 255, 255, .93);
    border-radius: 0;
    padding: 7px 16px 7px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .15);
}

.ab-photo-badge .badge-icon {
    width: 28px;
    height: 28px;
    background: #1B4FD8;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ab-photo-badge .badge-icon svg {
    position: static;
    width: 18px;
    height: 18px;
}

.ab-photo-badge .badge-name {
    font-size: 1.1rem;
    font-weight: 900;
    color: #1B4FD8;
    font-family: 'Cairo', sans-serif;
    letter-spacing: -0.5px;
    line-height: 1;
}

.ab-photo-badge .badge-sub {
    font-size: .52rem;
    color: #777;
    font-family: 'Cairo', sans-serif;
    display: block;
    line-height: 1.3;
}

.ab-text-col {
    flex: 1;
    padding: 50px 52px 40px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;

    background: #fff;
}

.ab-text-col p {
    font-size: 1.05rem;
    font-weight: 500;
    color: #2d2d2d;
    line-height: 2.1;
    margin: 0;
    text-align: right;
}

.ab-text-col .ab-lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111827;
    line-height: 2;
}

.ab-boxes {
    border: 1.5px solid #d1dce8;
    border-radius: 0;
    overflow: hidden;
    margin-top: 6px;
}

.ab-box {
    padding: 15px 20px;
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    text-align: right;
    line-height: 1.75;
    border-bottom: 1.5px solid #d1dce8;
    background: #1B4FD8;
}

.ab-box.ab-box-plain {
    background: #1B4FD8;
    color: #fff;
    font-weight: 500;
    font-size: .9rem;
    line-height: 1.85;
}

.ab-box:last-child {
    border-bottom: none;
}

@media(max-width:768px) {
    .ab-banner {
        padding: 28px 20px;
        gap: 16px;
    }

    .ab-banner-logo-text {
        font-size: 3.5rem;
    }

    .ab-body {
        flex-direction: column;
    }

    .ab-photo-col {
        flex: none;
        height: 260px;
    }

    .ab-text-col {
        padding: 28px 20px;
    }
}

.srv-section {
    background-color: #eef0f5;
    /* background-image: radial-gradient(circle, #bcc8dc 1px, transparent 1px); */
    background-size: 20px 20px;
    padding: 60px 0 0;

}

.srv-section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: #111827;
    text-align: center;
    margin-bottom: 6px;
}

.srv-section-sub {
    font-size: .85rem;
    color: #6B7280;
    text-align: center;
    margin-bottom: 36px;
    font-weight: 400;
    line-height: 1.8;
}

.srv-card-wrap {
    margin-bottom: 30px;
}
.srv-card {
    background: #DCDCDC;
    border: 1px solid #000;
    overflow: visible;
    display: flex;
    flex-direction: row;
    min-height: 200px;
    position: relative;
}

.srv-list-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none;
    gap: 5px;
    padding: 5px;
}

.srv-items {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.srv-items li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: .9rem;
    font-weight: 500;
    color: #000;
    background: #fff;
    border: 1px solid #000;
    border-radius: 5px;

    text-align: right;
    min-height: 60px;
}

.srv-icon {
    width: 40px;
    height: 40px;
    border-radius: 3px;
    background: #F1F1F1;
    border: 1px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.srv-icon svg {
    width: 20px;
    height: 20px;
}

.srv-item-text {
    flex: 1;
}

.srv-result-bar {
    background: #102CF7;
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    padding: 16px 18px;
    text-align: center;

    border-radius: 5px;
    border: 1px solid #343434;
    margin-top: 5px;
}

.srv-result-bar span {
    font-weight: 700;
}

.srv-photo-col {
    width: 50%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.srv-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
}

.srv-photo-title {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(0, 0, 0, 0.45); */
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;

    line-height: 1.4;
    z-index: 1;
}

.srv-cta {
    margin-top: 100px;
    position: relative;
}

.srv-cta-banner {
    padding: 30px 40px 25px;
    text-align: center;
    position: relative;
    overflow: visible;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #000 0%, #102CF7 100%);
    border: 1px solid #343434;
}

.srv-cta-vec {
    position: absolute;
    height: 100%;
    top: 0;
    z-index: 0;
    pointer-events: none;
}

.srv-cta-vec-right {
    right: 0;
    height: 100%;
}

.srv-cta-vec-left {
    left: 0;
    height: 100%;
}

.srv-cta-img {
    height: 220px;
    object-fit: contain;
    object-position: bottom;
    position: absolute;
    bottom: 0;
    right: 20px;
    z-index: 1;
}

.srv-cta-content {
    position: relative;
    z-index: 2;
    margin-right: 250px;
}

.srv-cta h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.srv-cta p {
    font-size: 1rem;
    color: #D9D9D9;
    font-weight: 500;
    margin: 0;
    max-width: 550px;
    line-height: 1.8;
}

.srv-cta-btn-bar {
    background: #FF705C;
    border-radius: 5px;
    padding: 14px 20px;
    text-align: center;
    margin-top: 5px;
}

.srv-cta-btn {
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    display: inline-block;
}

.srv-cta-btn:hover {
    color: #fff;
}

@media(max-width:768px) {
    .srv-cta-banner {
        padding: 28px 20px;
        min-height: auto;
    }

    .srv-cta-content {
        margin-right: 0 !important;
        margin-left: 0 !important;
        text-align: center;
    }

    .srv-cta h3 {
        font-size: 1.2rem;
        text-align: center;
    }

    .srv-cta p {
        font-size: .8rem;
        text-align: center;
        max-width: 100%;
    }

    .srv-cta-btn-bar {
        padding: 12px 16px;
    }

    .srv-cta-btn {
        font-size: .85rem;
    }

    .srv-cta-img {
        display: none;
    }
}

@media(max-width:640px) {
    .srv-card {
        flex-direction: column;
    }

    .srv-photo-col {
        width: 100%;
        height: 180px;
    }

    .srv-photo-img {
        position: static;
        height: 100%;
    }
}

.strat-section {
    background-color: #fff;
    padding: 60px 0 0;

}

.strat-title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 4px;
    line-height: 1.35;
}

.strat-sub {
    font-size: 1rem;
    color: #2F2F2F;
    font-weight: 500;
    text-align: center;
    margin-bottom: 28px;
}

.strat-layout {
    margin-bottom: 50px;
}

.strat-row-bottom {
    display: flex;
    gap: 10px;
}

.strat-block {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.strat-block-full {
    width: 100%;
}

.strat-block-third {
    flex: 1;
}

.strat-block-header {
    background-color: #F4F4F4;
    /* background-image:
        linear-gradient(#E3E3E3 1px, transparent 1px),
        linear-gradient(90deg, #E3E3E3 1px, transparent 1px); */
    background-size: 53px 53px;
    border: 1px solid #E3E3E3;
    padding: 28px 10px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
}

.strat-block-cells {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 5px;
}

.strat-block-cells-row {
    flex-direction: row;
}

.strat-block-cells-row .strat-cell {
    flex: 1;
}

.strat-cell {
    padding: 16px 18px;
    font-size: .88rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    background: #102CF7;
}

.strat-full-blue {
    background: #102CF7;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    text-align: center;
    padding: 14px 16px;
    margin: 10px 0;
}

.why-section {
    background-color: #fff;
    padding: 52px 0 0;

}

.why-title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 4px;
}

.why-sub {
    font-size: 1rem;
    color: #2F2F2F;
    font-weight: 500;
    text-align: center;
    margin-bottom: 32px;
}

.why-grid {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.why-grid-3 .why-card {
    flex: 1;
}

.why-grid-2 {
    max-width: 66.66%;
    margin-left: auto;
    margin-right: auto;
}

.why-grid-2 .why-card {
    flex: 1;
}

.why-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-card-text {
    background-color: #F4F4F4;
    /* background-image:
    linear-gradient(#E3E3E3 1px, transparent 1px),
    linear-gradient(90deg, #E3E3E3 1px, transparent 1px); */
    background-size: 53px 53px;
    outline: 1px solid #E3E3E3;
    padding: 30px 20px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
    text-align: right;
    line-height: 1.65;

}

.why-card-text strong {
    font-weight: 700;
    color: #000;
}

.why-ph {
    width: 100%;
    aspect-ratio: 1;
    background: #000;
    outline: 1px solid #E3E3E3;
    overflow: hidden;
}

.why-ph-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-cta-wrap {
    margin-top: 40px;
}

.why-cta {
    background: linear-gradient(90deg, #000 0%, #102CF7 100%);
    border: 1px solid #343434;
    padding: 45px 40px 35px;

    text-align: center;
    position: relative;
    overflow: hidden;
}

.why-cta-vec {
    position: absolute;
    height: 100%;
    top: 0;
    pointer-events: none;
    opacity: .5;
}

.why-cta-vec-right {
    right: 0;
}

.why-cta-vec-left {
    left: 0;
}

.why-cta-content {
    position: relative;
    z-index: 2;
}

.why-cta h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.why-cta-desc {
    font-size: 1rem;
    color: #D9D9D9;
    font-weight: 500;
    line-height: 1.9;
    margin: 0 auto 0;
    max-width: 550px;
}

.why-cta-btn-bar {
    background: #FF705C;
    border-radius: 8px;
    padding: 14px 20px;
    text-align: center;
    margin-top: 5px;
}

.why-cta-btn {
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.why-cta-btn:hover {
    color: #fff;
}

@media(max-width:576px) {
    .strat-row-bottom {
        flex-direction: column;
    }
}

@media(max-width:768px) {
    .why-cta-vec-left,
    .why-cta-vec-right,
    .srv-cta-vec-left,
    .srv-cta-vec-right { display: none; }
    .why-cta { padding: 28px 16px 20px; text-align: center; }
    .why-cta h3 { font-size: 1.2rem; text-align: center; }
    .why-cta-desc { font-size: .85rem; max-width: 100%; text-align: center; margin: 0 auto; }
    .why-cta-content { text-align: center; }
    .srv-cta-img { height: 140px; }
    .srv-cta-content { margin-right: 0; text-align: center; }
    .srv-cta-banner { text-align: center; padding: 28px 16px 20px; }
}

.cform-section {
    background-color: #fff;
    padding: 64px 0 80px;

    font-family: 'Cairo', sans-serif;
}

.cform-main-title {
    font-size: 2.6rem;
    font-weight: 600;
    color: #000;
    text-align: center;
    margin-bottom: 4px;
}

.cform-main-sub {
    font-size: 1rem;
    color: #2F2F2F;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}

.cform-box {
    background: #fff;
    outline: 1px solid #E3E3E3;
    display: flex;

    position: relative;
    overflow: hidden;
}

.cform-divider-v {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #E3E3E3;
    z-index: 1;
}

.cform-info {
    flex: 0 0 50%;
    width: 50%;
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0;
}

.cform-info-heading {
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;
    text-align: right;
    margin-bottom: 16px;
    line-height: 1.6;
}

.cform-info-divider {
    width: 100%;
    height: 1px;
    background: #E3E3E3;
    margin: 10px 0;
}

.cform-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cform-contacts li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 1rem;
    font-weight: 400;
    color: #000;

}

.cform-contacts li .cc-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cform-contacts li .cc-icon svg {
    width: 20px;
    height: 20px;
}

.cform-socials {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 16px;
}

.cform-social-btn {
    width: 43px;
    height: 43px;
    border-radius: 3px;
    background: #F1F1F1;
    border: 1px solid #E3E3E3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s;
    text-decoration: none;
}

.cform-social-btn:hover {
    background: #1B4FD8;
}

.cform-social-btn:hover svg path,
.cform-social-btn:hover svg rect,
.cform-social-btn:hover svg circle,
.cform-social-btn:hover svg line {
    stroke: #fff;
    fill: #fff;
}

.cform-social-btn svg {
    width: 20px;
    height: 20px;
}

.cform-illus {
    width: 100%;
    flex: 1;
    min-height: 280px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, #000 0%, #102CF7 100%);
}

.cform-illus-img {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
    z-index: 2;
}

.cform-illus-vec {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.cform-illus-vec-left {
    bottom: 0;
    left: 0;
    height: 60%;
    opacity: .6;
}

.cform-form-col {
    flex: 0 0 50%;
    width: 50%;
    min-width: 0;
    padding: 20px;
}

.cform-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cform-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cform-label {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-align: right;

}

.cform-input,
.cform-select,
.cform-textarea {
    width: 100%;
    border: 1px solid #E3E3E3;
    border-radius: 2px;
    padding: 16px 14px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    color: #111827;
    background: #F1F1F1;
    outline: none;

    text-align: right;
    transition: border-color .2s, box-shadow .2s;
    box-sizing: border-box;
}

.cform-input::placeholder,
.cform-textarea::placeholder {
    color: #D9DBDC;
    font-size: 1rem;
    font-weight: 500;
}

.cform-input:focus,
.cform-select:focus,
.cform-textarea:focus {
    border-color: #102CF7;
    box-shadow: 0 0 0 3px rgba(16, 44, 247, .08);
}

.cform-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-left: 36px;
    cursor: pointer;
    color: #D9DBDC;
}

.cform-select.selected {
    color: #111827;
}

.cform-textarea {
    resize: vertical;
    min-height: 120px;
}

.cform-submit {
    width: 100%;
    background: #FF705C;
    color: #fff;
    font-family: 'Cairo', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .2s, transform .15s;
    margin-top: 4px;
}

.cform-submit:hover {
    background: #e5634f;
    transform: translateY(-1px);
}
.cform-submit:disabled {
    opacity: .6;
    cursor: not-allowed;
}
.cform-msg {
    padding: 12px 16px;
    border-radius: 5px;
    font-size: .9rem;
    font-weight: 600;
    text-align: center;
}
.cform-msg-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}
.cform-msg-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media(max-width:768px) {
    .cform-box {
        flex-direction: column-reverse;
    }

    .cform-divider-v {
        display: none;
    }

    .cform-info {
        flex: none;
        width: 100%;
    }

    .cform-form-col {
        flex: none;
        width: 100%;
    }
}

/* ===== Small mobile (360px) ===== */
@media(max-width:400px) {
    .container { padding-left: 10px; padding-right: 10px; }

    /* Hero */
    .hero { padding: 24px 0 20px; }
    .hero-heading { font-size: 1.2rem; }
    .hero-sub { font-size: .78rem; max-width: 100%; }
    .hero-btns { gap: 8px; }
    .btn-primary-hero,
    .btn-secondary-hero { font-size: .85rem; padding: 11px 16px; }
    .hero-image-wrap { margin: 16px 0 0; }
    .hero-image-wrap .img-placeholder,
    .hero-image-wrap img { height: 150px; }

    /* Problem */
    .prob-section-title { font-size: 1rem; padding: 0; }
    .prob-photo { height: 140px; }
    .prob-col-title { font-size: .82rem; }
    .prob-item { font-size: .75rem; padding: 6px 8px; }
    .prob-bottom-line { font-size: .82rem; padding: 10px 14px; }

    /* About */
    .ab-banner { padding: 16px 12px; }
    .ab-banner-logo-img { width: 200px !important; }
    .ab-text-col { padding: 18px 12px; }
    .ab-text-col p { font-size: .82rem; }
    .ab-box { font-size: .78rem; padding: 9px 10px; }

    /* Services */
    .srv-section-title { font-size: .95rem; }
    .srv-section-sub { font-size: .72rem; }
    .srv-photo-col { height: 120px; }
    .srv-photo-title { font-size: .78rem; }
    .srv-items li { font-size: .75rem; padding: 7px 8px; min-height: 44px; }
    .srv-icon { width: 28px; height: 28px; }
    .srv-result-bar { font-size: .7rem; padding: 6px 10px; }
    .srv-cta { margin-top: 40px; }
    .srv-cta h3 { font-size: .95rem; }
    .srv-cta p { font-size: .75rem; }

    /* Strategy */
    .strat-title { font-size: 1rem; }
    .strat-sub { font-size: .72rem; }
    .strat-block-header { font-size: .85rem; padding: 14px 8px; }
    .strat-cell { font-size: .72rem; padding: 6px 8px; }
    .strat-block-cells-row { flex-direction: column; }
    .strat-full-blue { font-size: .72rem; padding: 6px 8px; }

    /* Why Us */
    .why-title { font-size: 1rem; }
    .why-sub { font-size: .72rem; }
    .why-card-text { font-size: .75rem; padding: 14px 10px; }
    .why-ph { aspect-ratio: 4/3; }
    .why-cta { padding: 20px 12px 16px; }
    .why-cta h3 { font-size: .95rem; }
    .why-cta-desc { font-size: .75rem; line-height: 1.7; }
    .why-cta-btn-bar { padding: 10px 14px; border-radius: 5px; }
    .why-cta-btn { font-size: .85rem; }

    /* Contact */
    .cform-main-title { font-size: 1.2rem; }
    .cform-main-sub { font-size: .72rem; margin-bottom: 20px; }
    .cform-info { padding: 14px 10px 0; }
    .cform-info-heading { font-size: .9rem; }
    .cform-contacts li { font-size: .78rem; }
    .cform-social-btn { width: 36px; height: 36px; }
    .cform-form-col { padding: 14px 10px; }
    .cform-label { font-size: .78rem; }
    .cform-input,
    .cform-select,
    .cform-textarea { font-size: .8rem; padding: 10px; }
    .cform-submit { font-size: .85rem; padding: 11px; }
    .cform-illus { min-height: 180px; }
}
